我想讓這個腳本可用於傳單庫libary以使用openstreetmap。 我需要一個可拖動的標記存儲它的座標,並在dragend發送它到一個隱藏的窗體,將發送到我的sqlite數據庫! 即時通訊編碼不太好!幫助非常感謝有人可以將此google.api翻譯成傳單腳本嗎?
marker = new google.maps.Marker({
map:map,
draggable:true,
animation: google.maps.Animation.DROP,
position: mapCenter,
title: markerTitle,
icon: markerImage
});
google.maps.event.addListener(marker, 'dragend', function() {
updateLatLong();
});
google.maps.event.addListener(map, 'click', function(event) {
var myLatLng = event.latLng;
var markerPosition = new google.maps.LatLng(myLatLng.lat(), myLatLng.lng());
marker.setPosition(markerPosition);
updateLatLong();
});
updateLatLong();
}
function updateLatLong() {
var lat = marker.getPosition().lat();
var lng = marker.getPosition().lng();
document.getElementById("nexthh_latitude").value = lat;
document.getElementById("nexthh_longitude").value = lng;
}
您需要顯示對任務的基本理解,並提供嘗試解決它的結果,例如,您遇到的錯誤。 – arkonautom