X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/8030e7b5d6a019618da5874646fc30ee2e15e14b..5bd59e19368d8761a7dbaa5db0e8833174c11f36:/app/assets/javascripts/diary_entry.js diff --git a/app/assets/javascripts/diary_entry.js b/app/assets/javascripts/diary_entry.js index 73a179ba9..625d43a52 100644 --- a/app/assets/javascripts/diary_entry.js +++ b/app/assets/javascripts/diary_entry.js @@ -9,7 +9,7 @@ $(document).ready(function () { map.removeLayer(marker); } - marker = L.marker(e.latlng, {icon: OSM.getUserIcon()}).addTo(map) + marker = L.marker(e.latlng, { icon: OSM.getUserIcon() }).addTo(map) .bindPopup(I18n.t("diary_entries.edit.marker_text")); } @@ -28,13 +28,13 @@ $(document).ready(function () { zoomControl: false }).addLayer(new L.OSM.Mapnik()); - L.OSM.zoom({position: position}) + L.OSM.zoom({ position: position }) .addTo(map); map.setView(centre, params.zoom); if ($("#latitude").val() && $("#longitude").val()) { - marker = L.marker(centre, {icon: OSM.getUserIcon()}).addTo(map) + marker = L.marker(centre, { icon: OSM.getUserIcon() }).addTo(map) .bindPopup(I18n.t("diary_entries.edit.marker_text")); }