是否可以更改其api创建的谷歌地图上的图钉颜色?或者必须使用自定义图标来做到这一点?
这是google map api v3。
tnx in adv!
答案 0 :(得分:3)
初始化地图时可以声明图像:
var overlay;
function initialize() {
var myLatLng = new google.maps.LatLng(0, 0);
var myOptions = {
zoom: 11,
center: myLatLng,
mapTypeId: google.maps.MapTypeId.SATELLITE
};
var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
var swBound = new google.maps.LatLng(0, 0);
var neBound = new google.maps.LatLng(0, 0);
var bounds = new google.maps.LatLngBounds(swBound, neBound);
// This is where you declare your image...
var srcImage = 'images/yourimage.png';
overlay = new USGSOverlay(bounds, srcImage, map);
}
如果您需要,请在此处获取更多信息:
http://code.google.com/apis/maps/documentation/javascript/overlays.html#CustomOverlays
答案 1 :(得分:0)
我知道这个问题很旧,但是如果有人只想更改图钉或标记的颜色,请查看文档: https://developers.google.com/maps/documentation/android-sdk/marker
添加标记时,只需设置图标属性即可:
GoogleMap gMap;
LatLng latLng;
....
// write your code...
....
gMap.addMarker(new MarkerOptions()
.position(latLng)
.icon(BitmapDescriptorFactory.defaultMarker(BitmapDescriptorFactory.HUE_GREEN));
有10种默认颜色可供选择。