Include only polygons and multipolygons highways on zoom >= 13.

This commit is contained in:
François de Metz 2019-07-15 23:45:16 +02:00
parent 3f65811cda
commit cf219c1e09
No known key found for this signature in database
GPG Key ID: E1FA0E57091784E3

View File

@ -366,7 +366,7 @@ indoor INT, bicycle TEXT, foot TEXT, horse TEXT, mtb_scale TEXT, surface TEXT) A
WHERE zoom_level >= 13 WHERE zoom_level >= 13
AND ( AND (
man_made IN ('bridge', 'pier') man_made IN ('bridge', 'pier')
OR (is_area AND COALESCE(layer, 0) >= 0) OR (ST_GeometryType(geometry) IN ('ST_Polygon','ST_MultiPolygon') AND COALESCE(layer, 0) >= 0)
) )
) AS zoom_levels ) AS zoom_levels
WHERE geometry && bbox WHERE geometry && bbox