3,497 questions
-1
votes
0
answers
32
views
How to show multiple pickup points on Google Maps in Android java? [closed]
I'm working on an Android app where I need to display multiple pickup points on Google Maps based on a selected location. For example, when a user selects a place, several pickup points (like ...
0
votes
2
answers
34
views
Android Google Maps Snapshot Screenshot is black
I have a problem, for some tests I'm doing I need to take a screenshot of my app that uses Google Maps. When I try to take the screenshot or snapshot, all the elements appear in the screenshot, except ...
0
votes
0
answers
48
views
Google Maps: Over 200 markers and clustering - Slow
I get the data async from the backend so there is not really a way to load it from memory.
I created the map like this
@Composable
private fun HoaxLocatorScreen(
cameraPosition: ...
0
votes
1
answer
47
views
Android, Kotlin, Google Maps Markers
I am trying develop an Android App with Kotlin in Android Studio. I want to make markers for Pharmacy in my app in Google Maps. My question is in my code:
private fun searchNearbyPharmacies(location: ...
0
votes
0
answers
35
views
Android Compose: Coarse Location
When the user selects coarse location how do I draw the circle on the map which scales with the zoom level as well?
val locationCallback = object : LocationCallback() {
override fun ...
0
votes
0
answers
55
views
Google Maps Platform Android SDK Arrival Problem
I'm new to developing Android apps using Kotlin and XML and with the use of Google Maps Platform Navigation SDK for Android. I have a problem that when the distance from the origin and the destination ...
1
vote
0
answers
54
views
Compose UI not waiting for viewModel's coroutine results. GoogleMap composable
I have a compose screen that shows Google Maps. I'm using this state model:
data class CragsOnMapsState(
val currentLocation: Location? = null,
val cragsList: List<Crag>,
val ...
0
votes
0
answers
107
views
Making a search location function through the Google Maps API
I don't know how to implement a search location function in my project based on the google maps API. The objective is to have the user type a location on the textview and clicks the button next it, it ...
1
vote
0
answers
66
views
OnClick Compose GoogleMap Cluster/Item show InfoWindow without camera move
Using this example activity:
https://github.com/googlemaps/android-maps-compose/blob/main/app/src/main/java/com/google/maps/android/compose/markerexamples/MarkerClusteringActivity.kt
I want to only ...
0
votes
1
answer
100
views
Google map directions delay loading the itinerary
I'm using google map intent in my react native application has been almost one year without any problem passing the coordinates in this url allowing the user to open "Google maps" on ...
0
votes
1
answer
50
views
Android map doesn't auto zoom after calling CameraUpdateFactory.zoomTo(xx)
I have a fragment which displays the position of store on Google Map:
import android.os.Bundle
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
import androidx....
0
votes
0
answers
83
views
Is there any alternative for searching nearby places without using Google map Places API?
I am trying to search nearby places by types ( such as Hospital, Restaurant,..) from my current places, I used gg map API but I realised that I need to pay for this services, can anyone have another ...
3
votes
2
answers
471
views
Is there a way to change the position of the Google Maps API buttons in Compose?
I would like to move the map buttons, mainly the Compass button (which appears at the top left) and the My Location button (which appears at the top right) so that I can put them down or in any ...
0
votes
0
answers
132
views
Jetpack Compose Clustering sometimes show default markers
I have a screen that contain a list of custom markers with clustering and works fine. The problem is sometime after open de screen my google maps show my customs markers AND the default markers on the ...
0
votes
0
answers
49
views
Can I have two different Google Map keys to load google maps in two different activities in a single android app?
I have a android application in which I need to load google maps in two different activity.
How to use two different google map keys for each activity. Is it even possible?
Earlier I had only one API ...