65,901 questions
0
votes
1
answer
31
views
Latest version of Compose Maps dependency throws "IllegalArgumentException: source must not be null"
When using com.google.maps.android:maps-compose in version 6.12.2 I get the following error building the project:
org.jetbrains.kotlin.util.FileAnalysisException: While analysing <redacted>/...
1
vote
1
answer
53
views
Flutter Google Maps: setMapStyle deprecated, how to style the map in newer versions?
I'm using the latest version of google_maps_flutter, and I noticed that this code is now showing a deprecation warning:
if (_mapStyle != null) {
mapController.setMapStyle(_mapStyle);
}
I used this ...
0
votes
0
answers
59
views
Google Play warning about 16-KB page size — libgmm-jni.so not supported. How to fix?
Google Play is warning that my app does not support 16-KB page size. My app currently supports only 4-KB pages.
When I checked my AAB using the APK Analyzer, I found that the file libgmm-jni.so does ...
0
votes
2
answers
19
views
NativeScript Android app closes when trying to add a marker in Google Maps
I'm having a problem with my code. I'm just trying to add a simple marker. Here's my implementation
<script setup lang="ts">
import { AbsoluteLayout, Page } from '@nativescript/core';
...
0
votes
0
answers
42
views
How to prevent traffic prompts to overlap with travel estimates on Android Auto?
In my Android Auto app, I show a travel estimates using the NavigationTemplate.
The navigation is performed using Google Navigation SDK. This SDK can display an alert with a traffic prompt. This ...
1
vote
0
answers
71
views
Kotlin Multiplatform + Google Maps on iOS: Why do I still need .def file with SPM? Interop not working without cinterop
I am integrating Google Maps SDK for iOS into my Kotlin Multiplatform (KMP) project. Earlier I was using CocoaPods and everything was working. Now I migrated to Swift Package Manager (SPM) and removed ...
1
vote
0
answers
242
views
Map markers cut off when applying ignoresSafeArea() with Google Map
I'm using the iOS Google Maps SDK to show maps in my app.
On my maps, I also show some map markers.
This has been working great, however I want the map to ignore the safe areas of the device so that ...
0
votes
1
answer
173
views
iOS26 UINavigationController swipe from middle on Google Maps causing issue
I have a UINavigation controller which on the second viewController has a Google Map view. In iOS 18 you would navigate normally around the map, and swipe your finger from the left side of the screen ...
1
vote
0
answers
216
views
Google Navigation SDK Android (7.0.0) — guidance arrow freezes on North after 5-15 minutes in navigati
Problem:
I’m integrating the Google Navigation SDK for Android into a Flutter app using Kotlin module. Navigation starts fine, but after 5-15 minutes in navigation, the blue arrow stops rotating with ...
3
votes
0
answers
217
views
React Native Maps Callout not showing content after upgrading Expo 54 / react-native 0.81
I upgraded my Expo app from SDK 51 to SDK 54 (React Native 0.81, react-native-maps 1.20.1).
After the upgrade, my <Callout> inside <Marker> stopped showing data.
Before upgrade it worked ...
0
votes
0
answers
45
views
Google Places SDK: How to prevent iOS text search from sorting results by distance?
I'm using the Google Places SDK for iOS and Android, along with the new Places API (New), to implement text-based place search (e.g., "pizza" near the current location).
I'm passing the same ...
0
votes
0
answers
118
views
React Native Maps Marker not Render on Android but work As expected on IOS
I’m using react-native-maps with clustering on the map. When zooming in, markers are displayed with images based on genres. The issue is that the markers are not rendering on Android, although they ...
0
votes
1
answer
43
views
can we get poi details from onload funtion?
For andriod googlePlaceUikit . afre all function configureFromSearchByTextRequest, we really get the place list , but still has a question: can we get details from onLoad function, since the function ...
0
votes
1
answer
148
views
Using Google Map in Compose starts to crash with 6.7.2
My app starts crashing if I update the module "com.google.maps.android:maps-compose" to version 6.7.2 with
java.lang.NullPointerException: CameraUpdateFactory is not initialized
With ...
2
votes
2
answers
61
views
mapDblclick not firing on AdvancedMarkerElement in @angular/google-maps
I'm using @angular/google-maps and AdvancedMarkerElement to display custom markers on my Google Map. I can handle single clicks just fine with (mapClick), but (mapDblclick) never fires—even for a ...
4
votes
2
answers
159
views
Why does @mapbox/polyline decode differently than Google’s Routes API polyline decoder?
I have an encoded polyline string:
ivgfAw_}bNaAfMwBjZk@IUrCGlC?jBFjCDbAV~B^xBVdAJFbB~EpApClAzBfC~DfAbBvDxGFZvDxGtAzBpDbHp@hAbDdG|EhH@d@bEbGlDnFl\fi@lIfN~OlWvFbJ|BpDg@~x@bDdFtHfMvZ~f@hDvF|EzHhDxFxTj^...
0
votes
1
answer
106
views
Adding KmlLayer to google maps breaks InfoWindowAdapter
I have a maps which has marker. I want to add a KML layer on it to show a KML from google thanks to a KMZ file. But, when I add the new layer, the custom marker is no longer appearing.
I'm using this ...
2
votes
1
answer
312
views
Google Navigation SDK (Android): setDestinations(..., CustomRoutesOptions(routeToken)) still takes fastest route instead of my chosen route
I’m using the Google Navigation SDK for Android together with the Routes API - directions/v2:computeRoutes.
From computeRoutes I get two routes: the default one and an alternate. I want to navigate ...
2
votes
2
answers
142
views
How to make Google Maps JavaScript API zoom in/out process smoother?
I’m using the Google Maps JavaScript API with a lot of SVG markers clustered using MarkerClusterer. When I zoom in and out, the map feels laggy and the zoom animation isn’t smooth — it stutters or ...
0
votes
0
answers
63
views
How to structure google map so that it can be used in whole app android?
I am working on map project in android kotlin. i have one activity main and that implements the OnMapReadyCall back
MainActivity.kt
class MainActivity : BaseActivity(), OnMapReadyCallback, ...
1
vote
2
answers
149
views
Google maps place id refresh
I have a relatively simple question, I can't find an answer for. I'm using the google places api and store the ids. However the documentation states, that refreshing placeId is free of charge. It's ...
0
votes
0
answers
94
views
EdgeToEdge padding for SupportNavigationFragment Google NavigationSDK from Google Maps Platform
im using the Google Navigation SDK in an Kotlin Android App and I am currently working on implementing EdgeToEdge since this is required for Android SDK 35+
For good borderless design I'm currently ...
1
vote
1
answer
70
views
Google Maps Custom Style Not Applying in WordPress (Elementor)
I’m working on a WordPress website using the Elementor Pro page builder, and I’m trying to integrate a custom-styled Google Map on the "Contact Us" page.
What I’ve done so far:
Created a ...
0
votes
1
answer
65
views
how to avoid re-rendering for markers in google map component?
the issue is when I fetch the devices latest info it triggers a re-render event for the hole map in order to see it new locaiton on the map .
is there a way to just update the marker new position ...
-1
votes
1
answer
81
views
google-api for geolocation not the same as about google maps
While using the Geocoding API, I noticed that there are differences in determining the country, which do not exist in the Google Maps web interface.
Example:
Input address: city code 300000 + CN
...