The problem is not getLatLng (). This works great:
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:
http://jsfiddle.net/pX2xn/2/
source
share