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.
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: '© <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: