Skip to content

Commit

Permalink
Don't render waterway=fuel like other area waterways
Browse files Browse the repository at this point in the history
  • Loading branch information
bhousel committed Dec 8, 2015
1 parent 72aac45 commit 6cc6a53
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions css/map.css
Original file line number Diff line number Diff line change
Expand Up @@ -454,10 +454,6 @@ path.fill.tag-amenity-parking {
background-color: rgba(170, 170, 170, 0.3);
}

path.fill.tag-place,
path.fill.tag-boundary {
fill: none;
}

/* highway areas */

Expand Down Expand Up @@ -1073,6 +1069,17 @@ path.casing.tag-waterway-ditch {
stroke: #6591ff;
stroke-width: 3;
}
path.area.stroke.tag-waterway-fuel {
stroke: white;
stroke-width: 1;
}
path.area.casing.tag-waterway-fuel {
stroke: none;
}
path.area.fill.tag-waterway-fuel {
stroke: rgba(255, 255, 255, 0.3);
fill: rgba(255, 255, 255, 0.3);
}


/* power */
Expand Down

2 comments on commit 6cc6a53

@brycenesbitt
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks!
Dock, water_point, boatyard and probably more are land based features and not good to render in water color.

@bhousel
Copy link
Member Author

@bhousel bhousel commented on 6cc6a53 Dec 8, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Dock, water_point, boatyard and probably more are land based features and not good to render in water color.

Looks like we don't have presets for these yet.. I'll open an issue and add them before I forget about it.

Please sign in to comment.