From 314ff97ca01fc9e1ee1ff1d389ac3f5e11d18727 Mon Sep 17 00:00:00 2001 From: DennisSchiefer Date: Wed, 4 Jul 2012 15:42:20 +0100 Subject: [PATCH] nominatim results with type "arial_views" will not be displayed --- WebContent/base/OSRM.Geocoder.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/WebContent/base/OSRM.Geocoder.js b/WebContent/base/OSRM.Geocoder.js index 810edc415..66ab2a856 100644 --- a/WebContent/base/OSRM.Geocoder.js +++ b/WebContent/base/OSRM.Geocoder.js @@ -152,6 +152,8 @@ _showResults_Timeout: function() { _filterResult: function(result) { if( result.osm_type == "relation") return true; + if( result.type == "aerial_views") + return true; return false; },