如何显示GMarker的本地图像?我正在使用v2。代码示例
var blueIcon = new GIcon(G_DEFAULT_ICON);
blueIcon.image = '/Images/marker/mr.png';
markerOptions = { icon: blueIcon };
map.setCenter(point, 3);
var marker = new GMarker(point, markerOptions);
它不起作用......
答案 0 :(得分:1)
地图页面的本地内容是Google地图网站本身,因此如果您想使用网站上的图片,则必须提供完整的网址。
答案 1 :(得分:0)
如果您还没有看过v2文档,请点击以下链接:
http://code.google.com/apis/maps/documentation/javascript/v2/overlays.html#Custom_Icons
另外,您实际上是将它添加到地图中,还是从代码中省略了它?
以下是一个完整的例子:
http://code.google.com/apis/maps/documentation/javascript/v2/examples/icon-simple.html