- map.events.register("click", map, function (e) {
- closeMapPopup();
-
- if (document.getElementById('updatehome').checked) {
- var lonlat = getEventPosition(e);
-
- document.getElementById('homerow').className = '';
- document.getElementById('home_lat').value = lonlat.lat;
- document.getElementById('home_lon').value = lonlat.lon;
+ map.on("click", function (e) {
+ if ($('#updatehome').is(':checked')) {
+ $('#homerow').removeClass();
+ $('#home_lat').val(e.latlng.lat);
+ $('#home_lon').val(e.latlng.lng);