| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
This open-source library contains utilities that are useful for a wide range of applications using the Google Maps SDK for Android.
As of version 5.0.0, the library has been rewritten in Kotlin and split into focused submodules so you can depend only on what you need. If you are upgrading from 4.x, see the migration guide.
You can also find Kotlin extensions for this library in Maps Android KTX.
dependencies {
// Utilities for Maps SDK for Android (requires Google Play Services)
// You do not need to add a separate dependency for the Maps SDK for Android
// since this library builds in the compatible version of the Maps SDK.
// The aggregator artifact transitively pulls in all submodules below.
implementation("com.google.maps.android:android-maps-utils:5.1.1") // x-release-please-version
}Alternatively, depend only on the submodules your app needs:
dependencies {
// Base utilities: PolyUtil, SphericalUtil, collection managers, Street View metadata
implementation("com.google.maps.android:android-maps-utils-core:5.1.1") // x-release-please-version
// Marker clustering
implementation("com.google.maps.android:android-maps-utils-clustering:5.1.1") // x-release-please-version
// KML and GeoJSON import
implementation("com.google.maps.android:android-maps-utils-data:5.1.1") // x-release-please-version
// Heatmaps
implementation("com.google.maps.android:android-maps-utils-heatmaps:5.1.1") // x-release-please-version
// Marker icons and animation
implementation("com.google.maps.android:android-maps-utils-ui:5.1.1") // x-release-please-version
}If your project integrates the Google Navigation SDK for Android, you must exclude the transitive play-services-maps dependency to prevent duplicate class conflicts:
configurations.all {
if (name.contains("navigation", ignoreCase = true)) {
exclude(group = "com.google.android.gms", module = "play-services-maps")
}
}This repository includes a sample app that illustrates the use of this library.
To run the demo app, ensure you've met the requirements above then:
Clone the repository
Add a file secrets.properties in the root project (this file should NOT be under version control to protect your API key)
Add the following keys to secrets.properties:
For example:
MAPS_API_KEY=YOUR_MAPS_API_KEY
PLACES_API_KEY=YOUR_PLACES_API_KEY
MAP_ID=YOUR_MAP_IDBuild and run the debug variant for the Maps SDK for Android version
Some of the features in the demo app, such as Advanced Markers, require a Map ID. You can learn more about map IDs in the official documentation. You can set the Map ID in one of the following ways:
secrets.properties: Add a line to your secrets.properties file with your Map ID:
MAP_ID=YOUR_MAP_IDstrings.xml: Alternatively, you can set the Map ID in the demo/src/main/res/values/strings.xml file:
<string name="map_id">YOUR_MAP_ID</string>XML Layout Files: You can also hardcode the Map ID directly in the XML layout files where a map is defined, by setting the map:mapId attribute:
<androidx.fragment.app.FragmentContainerView
map:mapId="YOUR_MAP_ID"
/>See the documentation for a full list of classes and their methods.
Full guides for using the utilities are published in Google Maps Platform documentation.
Marker utilitiesThe StreetViewUtil class provides functionality to check whether a location is supported in StreetView. You can avoid errors when adding a Street View panorama to an Android app by calling this metadata utility and only adding a Street View panorama if the response is OK.
StreetViewUtils.fetchStreetViewData(LatLng(8.1425918, 11.5386121), BuildConfig.MAPS_API_KEY,Source.DEFAULT)fetchStreetViewData will return NOT_FOUND, OK, ZERO_RESULTS or REQUEST_DENIED, depending on the response.
By default, the Source is set to Source.DEFAULT, but you can also specify Source.OUTDOOR to request outdoor Street View panoramas.
This library calls the addInternalUsageAttributionId method, which helps Google understand which libraries and samples are helpful to developers and is optional. Instructions for opting out of the identifier are provided below.
If you wish to disable this, you can do so by removing the initializer in your AndroidManifest.xml using the tools:node="remove" attribute:
<provider
android:name="androidx.startup.InitializationProvider"
android:authorities="${applicationId}.androidx-startup"
android:exported="false"
tools:node="merge">
<meta-data
android:name="com.google.maps.android.utils.attribution.AttributionIdInitializer"
tools:node="remove" />
</provider>Contributions are welcome and encouraged! If you'd like to contribute, send us a pull request and refer to our code of conduct and contributing guide.
This repository provides an official Gemini Skill and an llm-integration-prompt.md to help AI agents navigate the codebase and provide assistance. Refer to the contributing guide for more details on AI usage.
This library uses Google Maps Platform services. Use of Google Maps Platform services through this library is subject to the Google Maps Platform Terms of Service.
If your billing address is in the European Economic Area, effective on 8 July 2025, the Google Maps Platform EEA Terms of Service will apply to your use of the Services. Functionality varies by region. Learn more.
This library is not a Google Maps Platform Core Service. Therefore, the Google Maps Platform Terms of Service (e.g. Technical Support Services, Service Level Agreements, and Deprecation Policy) do not apply to the code in this library.
This library is offered via an open source license. It is not governed by the Google Maps Platform Support Technical Support Services Guidelines, the SLA, or the Deprecation Policy. However, any Google Maps Platform services used by the library remain subject to the Google Maps Platform Terms of Service.
This library adheres to semantic versioning to indicate when backwards-incompatible changes are introduced. Accordingly, while the library is in version 0.x, backwards-incompatible changes may be introduced at any time.
If you find a bug, or have a feature request, please file an issue on GitHub. If you would like to get answers to technical questions from other Google Maps Platform developers, ask through one of our developer community channels. If you'd like to contribute, please check the contributing guide.
You can also discuss this library on our Discord server.
| Back | FazBrowse Home | New Git URL |