From ebdd250fa073b439665c2e2280b54a78cf72118f Mon Sep 17 00:00:00 2001 From: Sarah Hoffmann Date: Mon, 8 Feb 2016 23:06:27 +0100 Subject: [PATCH] also show line geometries on search page --- website/js/nominatim-ui.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/js/nominatim-ui.js b/website/js/nominatim-ui.js index be108074..3e0aabd2 100644 --- a/website/js/nominatim-ui.js +++ b/website/js/nominatim-ui.js @@ -117,7 +117,7 @@ jQuery(document).on('ready', function(){ var bounds = [[result.aBoundingBox[0]*1,result.aBoundingBox[2]*1], [result.aBoundingBox[1]*1,result.aBoundingBox[3]*1]]; map.fitBounds(bounds); - if (result.astext && result.astext.match(/POLY/) ){ + if (result.astext && result.astext.match(/(POLY)|(LINE)/) ){ var layer = omnivore.wkt.parse(result.astext); layerGroup.addLayer(layer); } -- 2.39.5