Add aeroway styles (#1102)

This commit is contained in:
Ian B
2013-03-30 13:28:14 +01:00
parent 119be9fc2d
commit c3c2cfd0a2
2 changed files with 31 additions and 1 deletions
+30
View File
@@ -595,6 +595,36 @@ path.casing.tag-highway-steps {
stroke: #fff;
}
/* aeroways */
path.shadow.tag-aeroway-runway {
stroke-width: 20;
}
path.stroke.tag-aeroway-taxiway {
stroke: #805C80;
stroke-width: 4;
}
path.stroke.tag-aeroway-runway {
stroke: #fff;
stroke-width: 2;
stroke-linecap: butt;
stroke-dasharray: 24, 48;
}
path.casing.tag-aeroway-runway {
stroke-width: 10;
stroke: #000;
stroke-linecap: square;
}
path.stroke.tag-aeroway-apron {
stroke: #805C80;
}
path.fill.tag-aeroway-apron {
fill: #805C80;
fill-opacity: 0.2;
}
/* bridges */
path.casing.tag-bridge-yes {
+1 -1
View File
@@ -2,7 +2,7 @@ iD.svg.TagClasses = function() {
var keys = d3.set([
'highway', 'railway', 'waterway', 'power', 'motorway', 'amenity',
'natural', 'landuse', 'building', 'oneway', 'bridge', 'boundary',
'tunnel', 'leisure', 'construction', 'place'
'tunnel', 'leisure', 'construction', 'place', 'aeroway'
]), tagClassRe = /^tag-/,
tags = function(entity) { return entity.tags; };