- html_mouse = "mouse position " + (mouse_lat_lng ? [mouse_lat_lng.lat.toFixed(5), mouse_lat_lng.lng.toFixed(5)].join(',') : '-');
- html_click = "last click: " + (last_click_latlng ? [last_click_latlng.lat.toFixed(5),last_click_latlng.lng.toFixed(5)].join(',') : '-');
-
- html_center =
- "map center: " +
- map.getCenter().lat.toFixed(5) + ',' + map.getCenter().lng.toFixed(5) +
- " <a target='_blank' href='" + map_link_to_osm() + "'>view on osm.org</a>";
+ var html_mouse = 'mouse position: -';
+ if (mouse_lat_lng) {
+ html_mouse = 'mouse position: '
+ + [mouse_lat_lng.lat.toFixed(5), mouse_lat_lng.lng.toFixed(5)].join(',');
+ }
+ var html_click = 'last click: -';
+ if (last_click_latlng) {
+ html_click = 'last click: '
+ + [last_click_latlng.lat.toFixed(5), last_click_latlng.lng.toFixed(5)].join(',');
+ }