This commit is contained in:
John Firebaugh 2013-09-29 15:45:18 -07:00
parent 99775524b3
commit 53e4d600e7
3 changed files with 17 additions and 13 deletions

View file

@ -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 {