Add rendering for tag-crossing pedestrian crosswalks

This commit is contained in:
Bryan Housel
2015-12-27 01:24:52 -05:00
parent 6d29bccaef
commit e161867b14
2 changed files with 9 additions and 1 deletions
+8
View File
@@ -893,6 +893,14 @@ path.stroke.tag-highway-footway {
stroke: #ae8681;
}
.preset-icon .icon.highway-footway.tag-crossing {
color: #444;
}
path.stroke.tag-highway-footway.tag-crossing {
stroke: #444;
stroke-dasharray: 6, 4;
}
.preset-icon .icon.tag-route-bicycle,
.preset-icon .icon.highway-cycleway {
color: #58a9ed;
+1 -1
View File
@@ -10,7 +10,7 @@ iD.svg.TagClasses = function() {
],
secondaries = [
'oneway', 'bridge', 'tunnel', 'embankment', 'cutting', 'barrier',
'surface', 'tracktype'
'surface', 'tracktype', 'crossing'
],
tagClassRe = /^tag-/,
tags = function(entity) { return entity.tags; };