Remove service road exception for adding highway=crossing during crossing way fix (re: #5976)

This commit is contained in:
Quincy Morgan
2019-02-26 08:12:42 -05:00
parent 87e48bc543
commit 7d8453b1fb
+1 -1
View File
@@ -147,7 +147,7 @@ export function validationCrossingWays() {
path: true, footway: true, cycleway: true, bridleway: true,
pedestrian: true, steps: true, corridor: true
};
var nonCrossingHighways = { service: true, track: true };
var nonCrossingHighways = { track: true };
function tagsForConnectionNodeIfAllowed(entity1, entity2) {
var featureType1 = getFeatureTypeForTags(entity1.tags);