python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
How can I request location permission when clicking on the MyLocation button?
I want to request location permission when the user clicks on the MyLocation button.
I followed this tutorial but they have requested location permission when the activity starts. But I want to reques...
Taha Sami
Votes: 0
Answers: 1
Does the GPS provider require the ACCESS_FINE_LOCATION permission or not?
This SO thread seems to indicate that it does but the links to documentation in the same thread says:
Unless otherwise noted, all Location API methods require the Manifest.permission.ACCESS_COARSE_LO...
imashnake_
Votes: 0
Answers: 2
Android: Bing Maps API - how to handle Pushpin click?
I have
MapView map = new MapView(this, MapRenderMode.VECTOR);
MapIcon pushpin = new MapIcon();
MapElementLayer mPinLayer = new MapElementLayer();
mPinLayer.getElements().add(pushpin);
map.getLayers(...
user255936
Votes: 0
Answers: 1
Android getMapAsync after Kotlin Coroutine
I have an app that connects to an api using retrofit and displays the data in a recyclerview, I have now added another fragment that displays this data on a google map fragment.
The map fragment is fi...
KotGuy89
Votes: 0
Answers: 1