Fix x/y axis in get_current_location_str

This commit is contained in:
Markus Koch 2020-04-19 21:04:24 +02:00
parent ab2e50f851
commit 6a86056a87
1 changed files with 1 additions and 1 deletions

View File

@ -176,7 +176,7 @@ L.control.scale().addTo(mymap);
function get_current_location_str() {
var latlng = mymap.getCenter();
return Math.round(latlng.lat) + "," + Math.round(latlng.lng) + "," + mymap.getZoom();
return Math.round(latlng.lng) + "," + Math.round(latlng.lat) + "," + mymap.getZoom();
}
/* Important: Do not use mymap.setView, use this function instead */