- if ($("#latitude").val() && $("#longitude").val()) {
- marker = addMarkerToMap(centre, null, I18n.t('diary_entry.edit.marker_text'));
- }
+ 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)
+ .bindPopup(I18n.t('diary_entry.edit.marker_text'));
+ }