X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/68a3df4d53c84508bf443058040379c3a18eb1a7..62dff6ab7ff94c38b19208dd1423ad0be5cb9dcf:/app/assets/javascripts/diary_entry.js diff --git a/app/assets/javascripts/diary_entry.js b/app/assets/javascripts/diary_entry.js index 5a19cb4d6..f13706971 100644 --- a/app/assets/javascripts/diary_entry.js +++ b/app/assets/javascripts/diary_entry.js @@ -9,8 +9,8 @@ $(document).ready(function () { map.removeLayer(marker); } - marker = L.marker(e.latlng, {icon: getUserIcon()}).addTo(map) - .bindPopup(I18n.t('diary_entry.edit.marker_text')); + marker = L.marker(e.latlng, {icon: OSM.getUserIcon()}).addTo(map) + .bindPopup(I18n.t('diary_entries.edit.marker_text')); } $("#usemap").click(function (e) { @@ -34,8 +34,8 @@ $(document).ready(function () { map.setView(centre, params.zoom); if ($("#latitude").val() && $("#longitude").val()) { - marker = L.marker(centre, {icon: getUserIcon()}).addTo(map) - .bindPopup(I18n.t('diary_entry.edit.marker_text')); + marker = L.marker(centre, {icon: OSM.getUserIcon()}).addTo(map) + .bindPopup(I18n.t('diary_entries.edit.marker_text')); } map.on("click", setLocation);