4
我想通過點擊谷歌地圖上的標記來傳遞相關標記ID。我使用marker.getId()函數檢索標記ID。但是標記ID不會與url一起傳遞。我怎樣才能做到這一點?任何幫助?在Google地圖中獲取標記ID
function AddressMap(lat,lang,markerid)
{
var latLng = new google.maps.LatLng(lat,lang);
var marker = new google.maps.Marker({
'map': map,
position: latLng,
'latitude' :lat,
'longitude' :lang,
icon: image,
shadow: shadow,
id: markerid
});
markers.push(marker);
google.maps.event.addListener(marker, 'click', function() {
window.location = "www.cickstart.com/" + marker.getId();
});
}
由於msonsona其工作。 – srinu 2012-02-23 06:11:39