Skip to content

Instantly share code, notes, and snippets.

@JonasCz
Created November 17, 2019 13:38
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JonasCz/f6b95e186edfcb6d86c0ee53b09e548f to your computer and use it in GitHub Desktop.
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
<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