All Questions
Tagged with google-maps java
3,861 questions
0
votes
0
answers
33
views
Android Java Plot Marker on Google Map with Geometry Point
How will I plot a marker on Google Map with my geometry points? Here is the sample geometry points POINT Z (642823.3317 937067.5592999998 0).
I added a JTS dependencies which is org.locationtech.jts. ...
0
votes
0
answers
22
views
How to put labels under Polygon?
I'm working on an Android app that uses the Google Map. I have large Polygon that hides the map. But the labels are above of this but I want them under my Polygon. I do not want to turn off labels.
...
2
votes
1
answer
169
views
JavaFX 21.0.6 WebView problem loading Google Maps v3.58+ on Windows 11
Included below is a minimal application that attempts to load Google Maps using a JavaFX 21.0.6 application (compiled using the 21.0.5 JDK).
On a Windows 10 machine the code works as expected, but it ...
0
votes
0
answers
75
views
Google maps not working when changed the renderer to LATEST from LEGACY
I am facing difficulty while changing the google maps renderer from legacy to LATEST, I have changed the initialization of the google map, and printed the initialization while rendering it is working ...
0
votes
1
answer
68
views
How to detect when a user enters or exits an expressway using Google Maps API in Android?
I'm building an Android app where I need to detect when a user enters or exits an expressway.
I’m using the Google Maps API to track a user’s location in real-time.
How can I identify if the user is ...
0
votes
0
answers
66
views
Getting REQUEST_DENIED error in Android app with Geocoding API
I’m encountering an issue when trying to use the Google Geocoding API in my Android app. When I make a request, I get the following response:
{
"error_message": "This IP, site or mobile ...
1
vote
1
answer
36
views
Google Play Console warning "Multiple clickable items share this location on the screen." for SupportMapFragment map
I've encountered a warning from Google Play Console when uploading my app:
"There are multiple clickable elements in this screen area. Element path - id/map."
I have an activity with a ...
0
votes
1
answer
77
views
Smooth GPS tracking with google maps
I am working on a vehicle tracking application, and im trying to get the moving animation of the car smooth, with no "jumps" and a continous movement of the map with the current location.
...
0
votes
0
answers
22
views
UrlLauncher reopen google maps
I am making an app that needs to open Google Maps by passing waypoints. But at some point the route may change, how can I send the new route and monitor it to perform functions based on the current ...
2
votes
2
answers
295
views
Issue with displaying a location on Google maps using Java+JavaScript+JavaFX
I've been trying to create a Java desktop app using Java, JavaScript and JavaFX and one part of the app should be able to display a location on the map using the location of the venue taken from the ...
-2
votes
1
answer
75
views
Android, Java + Goople Map: Straight routes useless. Is it possible to eliminate them?
Video of problem
Straight routes useless. Is it possible to eliminate them? there are straight lines that i wouldn't want.
Input from rest_api it's a simple json in this link:
https://drive.google.com/...
0
votes
0
answers
108
views
Error "missed interaction because MapUe3Logger was not yet initialized" when trying to click a marker
I'm using Google Maps SDK v3 in my android app, and when I try to click on the marker with custom InfoWindow I get some weird logs in logcat:
missed interaction because MapUe3Logger was not yet ...
1
vote
1
answer
714
views
why my build.gradle.kts using java in android studio has this kind of error?
Image of error in Android Studio
i want to implement google maps but it keeps display error "Unexpected tokens (use ';' to separate expressions on the same line)". please help to fix this
...
0
votes
0
answers
20
views
Android - Circle in google map goes behind tiles on zoom [duplicate]
I have been trying adding circle over google map using following code
mMap.addCircle(new CircleOptions()
.center(userLocation)
.radius(100)
...
0
votes
0
answers
55
views
When Click on marker in Google Map, App crashes
public class MainActivity extends FragmentActivity implements OnMapReadyCallback,
GoogleApiClient.OnConnectionFailedListener {
//google map object
private GoogleMap mMap;
@...