Zoom in to note if zoom < 15
This commit is contained in:
parent
2bb59daa37
commit
6f444fc99e
1 changed files with 4 additions and 1 deletions
|
@ -70,7 +70,10 @@ OSM.Note = function (map) {
|
|||
|
||||
var data = $('.details').data();
|
||||
if (!noteState) map.addLayer(noteLayer);
|
||||
if (window.location.hash == "") map.panTo(data.coordinates.split(','));
|
||||
if (window.location.hash == "") {
|
||||
var coords = data.coordinates.split(',');
|
||||
map.getZoom() > 15 ? map.panTo(coords) : map.setView(coords, 16);
|
||||
}
|
||||
|
||||
if (!map.hasLayer(halo)) {
|
||||
halo = L.circleMarker(data.coordinates.split(','), {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue