X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/44629832dd0207d7b0f50b93f1d00b4373dd4d49..79bda7a8edab5b3eb7e2feb13c31228c1ec2c219:/app/assets/javascripts/diary_entry.js?ds=sidebyside 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);