Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Buildings on nodes #9

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 22 additions & 2 deletions HOT-Validate.mapcss
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@ meta
title: "HOT-Validate";
description: "This Style is designed for HOT Validators for use in JOSM. More Info at https://github.com/MarkCupitt/HOT-Osm-Validation";
author: "MarkCupitt";
version: "1.0.21_2014-11-24";

version: "1.0.22_2017-02-16";
}


Expand Down Expand Up @@ -134,6 +133,27 @@ node:unconnected
}


*/

/* -------------------------------------------------------
Any "Building" node - buildings should be ways
--------------------------------------------------------*/
node[building]
{
color: red;
fill-color: red;
fill-opacity: 0.7;
symbol-shape: octagon;
symbol-size: 50;

symbol-fill-color: Red;
symbol-fill-opacity: 0.6;

symbol-stroke-color: black;
symbol-stroke-opacity: 0.7;
icon-image: none; /* needed so that default styles are overridden */
}


/* -------------------------------------------------------
Roads Tags Not Used - these will highlight in Red
Expand Down