简体   繁体   中英

Marker current location android google map?

How I can use from bellow marker for my map ?

I don't need to use mMap.setMyLocationEnabled(true); .I just need to this icon.

在此处输入图片说明

Try this :

GoogleMapOptions options = new GoogleMapOptions();
options.mapType(GoogleMap.MAP_TYPE_SATELLITE)
    .compassEnabled(true)
    .rotateGesturesEnabled(false)
    .tiltGesturesEnabled(false);

for details check this link.

https://developers.google.com/android/reference/com/google/android/gms/maps/UiSettings or https://developers.google.com/maps/documentation/android-api/controls

I use from this link and good work :

alazsbalazs

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM