我正在使用 Google Maps Android API v2,并且我已经正确设置了所有内容。我已经根据纬度/经度设置了一些标记。
如何将 lat/lng 的街景图像添加为图标?
/* Google Maps API v2 map set code here */
Marker marker = map.addMarker(new MarkerOptions().position(point)
.title("Title")
.snippet("Snippet")
.icon( StreetViewObject? ));
谢谢