From 1b32ff1cdbb3e8e20137f9bccaddcbc7059d177e Mon Sep 17 00:00:00 2001 From: Paul Date: Sat, 28 Nov 2020 00:01:56 +0100 Subject: [PATCH] increase max zoom for item zoom fixes #573 *my smallest PR ever* --- pygeoapi/templates/item.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pygeoapi/templates/item.html b/pygeoapi/templates/item.html index 52ad0fb..037f6bf 100644 --- a/pygeoapi/templates/item.html +++ b/pygeoapi/templates/item.html @@ -107,6 +107,6 @@ var items = new L.GeoJSON(geojson_data); map.addLayer(items); - map.fitBounds(items.getBounds(), {maxZoom: 10}); + map.fitBounds(items.getBounds(), {maxZoom: 15}); {% endblock %}