如何设置自定义 google 地图标记的背景图片?
How to Set background image of a custom google map marker?
我有一个用于 Google 标记的自定义图像,但我必须在其背景上设置另一个图像。
Is it possible to set background image of a map Marker?
是的,你可以
试试这个问题 How to create a custom-shaped bitmap marker with Android map API v2
另读this
来自@Abx的回答
您可以像这样添加自定义标记,
googleMap.addMarker(new MarkerOptions()
.icon(BitmapDescriptorFactory.fromResource(R.drawable.ic_marker_me))
.anchor(0.5f, 1.0f) // Anchors the marker on the bottom left
.position(new LatLng(latitude, longitude)));
感谢@Abx
我有一个用于 Google 标记的自定义图像,但我必须在其背景上设置另一个图像。
Is it possible to set background image of a map Marker?
是的,你可以
试试这个问题 How to create a custom-shaped bitmap marker with Android map API v2
另读this
来自@Abx的回答
您可以像这样添加自定义标记,
googleMap.addMarker(new MarkerOptions()
.icon(BitmapDescriptorFactory.fromResource(R.drawable.ic_marker_me))
.anchor(0.5f, 1.0f) // Anchors the marker on the bottom left
.position(new LatLng(latitude, longitude)));
感谢@Abx