All Questions
Tagged with google-maps java
3,865
questions
0
votes
0
answers
20
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
0
answers
27
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
138
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 ...
-1
votes
1
answer
72
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
89
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 ...
0
votes
1
answer
240
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
53
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;
@...
0
votes
0
answers
57
views
Getting 415 on initial request, after that everything is working fine
When I start my App the first time I click on the map and click on the submit button, I am getting an Error "type=Unsupported Media Type, status=415", when I click back and do the same thing ...
1
vote
1
answer
98
views
Android Studio and Google maps api Style maps, how to change country color on map click
I have created a styled map in Google Maps console, customized it to show only countries and cities.
map style
I have implemented the click listener:
@Override
public void onMapClick(@NonNull LatLng ...
1
vote
1
answer
69
views
Launch Google Maps from my app to show multiple markers based on longitude and latitude with different colored markers
I am trying to show multiple markers in the Google Maps application from my app with longitude and latitude, and I am also trying to change the color of the marker based on the type of marker I have ...
0
votes
0
answers
33
views
approximate distance of the route
I am trying to calculate the approximate distance of the route. In the getPoints method I am requesting all the route points from the database and writing them into the array. This part works well and ...
0
votes
0
answers
54
views
How can I add a map to an image view in javafx using GMapsfx and also get the location of a place without getting a null pointer exception
How can I add a map to an image view in javafx using GMapsfx 2.12.0 and also get the location of a place in longitude and latitude and in name of location without getting a null pointer exception in ...
0
votes
1
answer
65
views
How to display the distance of all the sides of polygon on google maps
I want to display the length of all the sides of polygon made on google maps. And maybe possibly print the area of the polygon at the center of the polygon
this is the code for displaying the length ...