mirror of
https://github.com/openstreetmap/openstreetmap-website.git
synced 2025-08-16 17:07:06 +00:00
Fixes
This commit is contained in:
@ -1,3 +1,5 @@
|
||||
//= require leaflet.locate
|
||||
|
||||
$(document).ready(function () {
|
||||
var map = L.map("map", {
|
||||
attributionControl: false,
|
||||
@ -7,6 +9,13 @@ $(document).ready(function () {
|
||||
L.OSM.zoom()
|
||||
.addTo(map);
|
||||
|
||||
L.control.locate({
|
||||
strings: {
|
||||
title: I18n.t('javascripts.map.locate.title'),
|
||||
popup: I18n.t('javascripts.map.locate.popup')
|
||||
}
|
||||
}).addTo(map);
|
||||
|
||||
if (OSM.home) {
|
||||
map.setView([OSM.home.lat, OSM.home.lon], 12);
|
||||
} else {
|
||||
|
Reference in New Issue
Block a user