Move diary entry JS to page-specific script file

This commit is contained in:
John Firebaugh 2012-10-05 11:58:45 -07:00 committed by Tom Hughes
parent 04887011d4
commit 7f6320ed10
3 changed files with 38 additions and 39 deletions

View file

@ -0,0 +1,33 @@
var marker;
function setLocation( e ) {
closeMapPopup();
var lonlat = getEventPosition(e);
$("#latitude").val(lonlat.lat);
$("#longitude").val(lonlat.lon);
if (marker) {
removeMarkerFromMap(marker);
}
marker = addMarkerToMap(lonlat, null, I18n.t('diary_entry.edit.marker_text'));
}
function openMap() {
$("#map").show();
$("#usemap").hide();
var params = $("#map").data();
var centre = new OpenLayers.LonLat(params.lon, params.lat);
var map = createMap("map");
setMapCenter(centre, params.zoom);
if ($("#latitude").val() && $("#longitude").val()) {
marker = addMarkerToMap(centre, null, I18n.t('diary_entry.edit.marker_text'));
}
map.events.register("click", map, setLocation);
}