Created
November 17, 2019 13:38
-
-
Save JonasCz/f6b95e186edfcb6d86c0ee53b09e548f to your computer and use it in GitHub Desktop.
Omand rendering XML which higlights cycle paths & routes more. Drop it in /Android/data/net.osmand/files/rendering
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<renderingStyle depends="Touring-view_(more-contrast-and-details)" defaultColor="#f1eae4" version="1"> | |
<renderingConstant name="blackCycleWayColor" value="#000000"/> | |
<renderingConstant name="blackCycleRouteColor" value="#85000000"/> | |
<renderingConstant name="contourLineColor" value="#2Aff7c00"/> | |
<renderingConstant name="contourLineColor50m" value="#2Aea7300"/> | |
<text> | |
<case tag="place" value="island" disable="true"/> | |
</text> | |
<line> | |
<switch> | |
<case tag="highway" value="cycleway"/> | |
<case tag="highway" value="path" additional="bicycle=designated"/> | |
<case tag="highway" value="footway" additional="bicycle=designated"/> | |
<apply color="$blackCycleWayColor" cap="ROUND" strokeWidth="2.4"/> | |
</switch> | |
<switch> | |
<case tag="route_bicycle" value=""/> | |
<apply color="$blackCycleRouteColor" cap="ROUND" strokeWidth="1.6"/> | |
</switch> | |
</line> | |
</renderingStyle> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment