Adjust matchscore, feature filters to boost physical tags over boundary

(closes #6162)
This commit is contained in:
Bryan Housel
2019-04-11 21:26:53 -04:00
parent 891de117f4
commit dda810683e
3 changed files with 15 additions and 8 deletions
+7 -1
View File
@@ -138,7 +138,13 @@ export function rendererFeatures(context) {
) && !(
traffic_roads[tags.highway] ||
service_roads[tags.highway] ||
paths[tags.highway]
paths[tags.highway] ||
tags.waterway ||
tags.railway ||
tags.landuse ||
tags.natural ||
tags.building ||
tags.power
);
});