find latitude & longitude of saved marker in leaflet

vaibhav shah picture vaibhav shah · Apr 16, 2013 · Viewed 26.9k times · Source

I have circle marker

var myMarker = L.circleMarker(stuSplit, 
    { title: 'unselected' })
        .bindLabel("Name: " + students[i][j][0] 
                   + " ReachTime: " + students[i][j][2]);

Now I want to find latitude & Longitude this myMarker.

I was trying myMarker.getLatLng() but it is not working.

Answer

flup picture flup · Apr 17, 2013

The problem does not lie in getLatLng(). This works fine:

var map = L.map('map').setView([55.4411764, 11.7928708], 13);
L.tileLayer('http://{s}.tile.osm.org/{z}/{x}/{y}.png', {
    attribution: '&copy; <a href="http://osm.org/copyright">OpenStreetMap</a> contributors'
}).addTo(map);

var stuSplit = L.latLng(55.4411764, 11.7928708);
var myMarker = L.circleMarker(stuSplit, 
    { title: 'unselected' })
        .addTo(map);
alert(myMarker.getLatLng());

See a working example here:

http://jsfiddle.net/pX2xn/2/