also show line geometries on search page

This commit is contained in:
Sarah Hoffmann 2016-02-08 23:06:27 +01:00
parent 676c565905
commit ebdd250fa0

View File

@ -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);
}