如何更改嵌入式谷歌地图中大头针的标签?
我想出了如何将标记更改为我的图标,但我需要重新设置 A、B、C 等的样式,类似于 travelodge 为那里的地图所做的操作http://www.travelodge.co.uk/hotels/book/edinburgh-酒店
更新这是成功使用自定义标记的代码:
function addMarker(latlng, myTitle) {
markers.push(new google.maps.Marker({
position: latlng,
map: map,
title: myTitle,
icon: "www.linkto/myPin.png"
}));
}
我已经包含了 markerwithlabel.js 但是这根本不会创建任何标记:
function addMarker(latlng, myTitle) {
markers.push(new MarkerWithLabel({
position: latlng,
map: map,
title: myTitle,
icon: "www.linkto/myPin.png",
labelContent: "$425K",
labelAnchor: new google.maps.Point(22, 0),
labelClass: "labels",
labelStyle: {opacity: 0.75}
}));
}
这是我要适应的代码:http: //google-maps-utility-library-v3.googlecode.com/svn/tags/markerwithlabel/1.1.8/examples/basic.html