我如何从波纹管标记中使用我的地图?
我不需要使用mMap.setMyLocationEnabled(true);
。我只需要这个图标。
试试这个 :
GoogleMapOptions options = new GoogleMapOptions();
options.mapType(GoogleMap.MAP_TYPE_SATELLITE)
.compassEnabled(true)
.rotateGesturesEnabled(false)
.tiltGesturesEnabled(false);
有关详细信息,请查看此链接。
https://developers.google.com/android/reference/com/google/android/gms/maps/UiSettings 或 https://developers.google.com/maps/documentation/android-api/controls
我使用这个链接并且做得很好: