I'm trying to update the lat/lng value of a marker after it is moved. The example provided uses a popup window to display the lat/lng.
I have a "dragend" event listener for the marker, but when I alert the value of e.latlng it returns undefined.
javascript:
function markerDrag(e){ alert("You dragged to: " + e.latlng); } function initialize() { // Initialize the map var map = L.map('map').setView([38.487, -75.641], 8); L.tileLayer('http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', { attribution: 'Map data © <a href="http://openstreetmap.org">OpenStreetMap</a> contributors, <a href="http://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>', maxZoom: 18 }).addTo(map); // Event Handlers map.on('click', function(e){ var marker = new L.Marker(e.latlng, {draggable:true}); marker.bindPopup("<strong>"+e.latlng+"</strong>").addTo(map); marker.on('dragend', markerDrag); }); } $(document).ready(initialize());
http://jsfiddle.net/rhewitt/Msrpq/4/
Use e.target.getLatLng()
to get the latlng of the updated position.
// Script for adding marker on map click function onMapClick(e) { var marker = L.marker(e.latlng, { draggable:true, title:"Resource location", alt:"Resource Location", riseOnHover:true }).addTo(map) .bindPopup(e.latlng.toString()).openPopup(); // #12 : Update marker popup content on changing it's position marker.on("dragend",function(e){ var chagedPos = e.target.getLatLng(); this.bindPopup(chagedPos.toString()).openPopup(); }); }
JSFiddle demo
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With