var locationFilter = new L.LocationFilter({
enableButton: false,
- adjustButton: false,
- onChange: filterChanged
+ adjustButton: false
}).addTo(map);
+ locationFilter.on("change", filterChanged);
+
map.on("moveend", mapMoved);
map.on("baselayerchange", htmlUrlChanged);
openSidebar();
- if (map.hasLayer(layers[0].layer)) {
+ if (getMapBaseLayerId() == "mapnik") {
$("#format_mapnik").prop("checked", true);
}
map.off("moveend", mapMoved);
map.off("baselayerchange", htmlUrlChanged);
+ locationFilter.off("change", filterChanged);
});
function getBounds() {
var bounds = map.getBounds(),
centerLat = bounds.getCenter().lat,
halfWorldMeters = 6378137 * Math.PI * Math.cos(centerLat * Math.PI / 180),
- meters = halfWorldMeters * (bounds.getNorthEast().lng - bounds.getSouthWest().lng) / 180,
+ meters = halfWorldMeters * (bounds.getEast() - bounds.getWest()) / 180,
pixelsPerMeter = map.getSize().x / meters,
metersPerPixel = 1 / (92 * 39.3701);
return Math.round(1 / (pixelsPerMeter * metersPerPixel));
var bounds = getBounds();
map.fitBounds(bounds);
-
- enableFilter();
locationFilter.setBounds(bounds);
+ enableFilter();
validateControls();
mapnikSizeChanged();
}
function enableFilter() {
+ if (!locationFilter.getBounds().isValid()) {
+ locationFilter.setBounds(map.getBounds().pad(-0.2));
+ }
+
$("#drag_box").hide();
locationFilter.enable();
}
function setBounds(bounds) {
var toPrecision = zoomPrecision(map.getZoom());
- $("#minlon").val(toPrecision(bounds.getWestLng()));
- $("#minlat").val(toPrecision(bounds.getSouthLat()));
- $("#maxlon").val(toPrecision(bounds.getEastLng()));
- $("#maxlat").val(toPrecision(bounds.getNorthLat()));
+ $("#minlon").val(toPrecision(bounds.getWest()));
+ $("#minlat").val(toPrecision(bounds.getSouth()));
+ $("#maxlon").val(toPrecision(bounds.getEast()));
+ $("#maxlat").val(toPrecision(bounds.getNorth()));
mapnikSizeChanged();
htmlUrlChanged();
function htmlUrlChanged() {
var bounds = getBounds();
- var layerName = getMapBaseLayer().keyid;
+ var layerName = getMapBaseLayerId();
- var url = "http://" + OSM.SERVER_URL + "/export/embed.html?bbox=" + bounds.toBBOX() + "&layer=" + layerName;
+ var url = "http://" + OSM.SERVER_URL + "/export/embed.html?bbox=" + bounds.toBBoxString() + "&layer=" + layerName;
var markerUrl = "";
if ($("#marker_lat").val() && $("#marker_lon").val()) {
}
function maxMapnikScale() {
- var bounds = getMercatorBounds();
+ var size = getMercatorBounds().getSize();
- return Math.floor(Math.sqrt(bounds.getWidth() * bounds.getHeight() / 0.3136));
+ return Math.floor(Math.sqrt(size.x * size.y / 0.3136));
}
function mapnikImageSize(scale) {
- var bounds = getMercatorBounds();
+ var size = getMercatorBounds().getSize();
- return {w: Math.round(bounds.getWidth() / scale / 0.00028),
- h: Math.round(bounds.getHeight() / scale / 0.00028)};
+ return {w: Math.round(size.x / scale / 0.00028),
+ h: Math.round(size.y / scale / 0.00028)};
}
function roundScale(scale) {