-$(document).ready(function () {
+$(function () {
let marker, map;
function setLocation(e) {
}
marker = L.marker(e.latlng, { icon: OSM.getUserIcon() }).addTo(map)
- .bindPopup(I18n.t("diary_entries.edit.marker_text"));
+ .bindPopup(OSM.i18n.t("diary_entries.edit.marker_text"));
}
$("#usemap").click(function (e) {
if ($("#latitude").val() && $("#longitude").val()) {
marker = L.marker(centre, { icon: OSM.getUserIcon() }).addTo(map)
- .bindPopup(I18n.t("diary_entries.edit.marker_text"));
+ .bindPopup(OSM.i18n.t("diary_entries.edit.marker_text"));
}
map.on("click", setLocation);