如何制作这样的自定义标记? enter image description here
答案 0 :(得分:0)
首先使用BitmapDescriptorFactory.fromResource(id goes here)
然后使用
将标记添加到地图中Marker marker = GoogleMap.addMarker(new MarkerOptions().position(latLng)
.icon(BitmapDescriptorFactory.fromResource(id goes here));
对于您可以使用的文字
marker.setTitle(string); //text on top
marker.setSnippet(string); //text below the title