From 509eba24849300c27c7f754dbe15049d25757582 Mon Sep 17 00:00:00 2001 From: Michael Peter Christen Date: Wed, 15 Oct 2014 11:07:08 +0200 Subject: [PATCH] automatically zoom to location/POI --- htroot/yacysearch_location.html | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/htroot/yacysearch_location.html b/htroot/yacysearch_location.html index 44aa1b26c..28517dab8 100644 --- a/htroot/yacysearch_location.html +++ b/htroot/yacysearch_location.html @@ -67,13 +67,14 @@ window.setInterval("refresh()", 1000); } - function zoomChanged () { + function zoomChanged() { shallZoom = false; // no automatic zoom if user hs zoomed refreshsearch(); } // called if a search is submitted function search() { + shallZoom = true; refreshsearch(); } @@ -128,7 +129,8 @@ // check if any of the markers is visible on the screen. // this is only necessary if shallZoom = false since this would set shallZoom = true var bounds = searchLayer_md1.getDataExtent(); - if (bounds == null) searchLayer_co1.getDataExtent(); + if (bounds == null) bounds = searchLayer_co1.getDataExtent(); + /* if (!shallZoom) { // check all markers