如何制作这样的自定义标记? osmdroid

时间:2017-08-26 18:03:40

标签: android osmdroid

如何制作这样的自定义标记? enter image description here

1 个答案:

答案 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