我正在使用Google Maps API V3的插件。我用它在地圖上放置一個標記,並允許用戶將標記拖動到地圖上的一個點上。我想要點擊標記的緯度,經度。使用jQuery插件的Google Maps API:如何在點擊時獲取標記的經緯度?
goMap插件頁面: http://www.pittss.lv/jquery/gomap/index.php
此功能,設置了擺在首位的標記。
$("#map").goMap({
zoom: 16,
maptype: 'ROADMAP',
navigationControl: false,
mapTypeControl: false,
scrollwheel: true,
disableDoubleClickZoom: false,
markers: [{
draggable:true,
latitude: data.lat,
longitude: data.lng,
icon:'./images/pink.png'
}]
});
我試着在goMap()上調用本地getLat()方法,但我認爲我沒有這樣做。任何幫助深表感謝。
我一直在尋找像goMap插件這個問題我指向正確的方向。謝謝。 – 2012-03-10 02:39:21