From 64291c8c956898f7a2b1c3c7d2341bfefdda846b Mon Sep 17 00:00:00 2001 From: Chris Hill-Scott Date: Tue, 25 Aug 2020 17:36:02 +0100 Subject: [PATCH] Remove padding on map render MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We don’t need it now we’re projecting a bigger bleed. --- app/templates/views/broadcast/preview-areas.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/templates/views/broadcast/preview-areas.html b/app/templates/views/broadcast/preview-areas.html index 5675585ad..76d773887 100644 --- a/app/templates/views/broadcast/preview-areas.html +++ b/app/templates/views/broadcast/preview-areas.html @@ -73,7 +73,7 @@ var polygonGroup = L.featureGroup(polygons).addTo(mymap); mymap.fitBounds( polygonGroup.getBounds(), - {padding: [5, 5]} + {padding: [1, 1]} );