我想在Google地图上显示标记,如所附图像

时间:2018-09-29 09:17:03

标签: android google-maps marker

Attached image of map

我想要显示我当前的位置标记图标,就像附件中的图像一样。

1 个答案:

答案 0 :(得分:1)

使用它来添加自定义标记以进行映射

 mGoogleMap.addMarker(new MarkerOptions()
  .position(LATLONG)          
  .icon(BitmapDescriptorFactory.fromBitmap(getMarkerBitmapFromView(R.drawable.yourIcon))));