答案 0 :(得分:2)
是的,你可以
试试这个问题http://jsfiddle.net/56tybtmh/
另请阅读How to create a custom-shaped bitmap marker with Android map API v2
答案 1 :(得分:1)
来自@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