







Translated from English by gtranslate.io
This is an old revision of the document!
This page is obsolete and will be reworked soon
Example of OpenPiste map (OSM based) created from three layers.
Example of OpenPiste map (OSM based) created from two layers here (in app is together with third shade layer). First layer is background, which is not visible in list but required. Second is contour layer, which is visible but not really required. On some places should not be this layer so when server return 404 code for tile, you can still see background layer! Referer added to header is not recommended in this case. It's only as example.
<?xml version="1.0" encoding="UTF-8"?> <providers> <provider id="1000" type="0" visible="false" required="true" background="-1"> <name>OSM</name> <mode>background</mode> <url><![CDATA[http://tiles.openpistemap.org/nocontours/{z}/{x}/{y}.png]]></url> <zoomPart>{z}-8</zoomPart> <zoomMin>8</zoomMin> <zoomMax>24</zoomMax> <tileSize>256</tileSize> <extraHeader>Referer#http://locus.asamm.cz/</extraHeader> </provider> <provider id="1001" type="0" visible="false" required="false" background="1000"> <name>OSM</name> <mode>contours</mode> <url><![CDATA[http://tiles.openpistemap.org/contours-only/{z}/{x}/{y}.png]]></url> <zoomPart>{z}-8</zoomPart> <zoomMin>8</zoomMin> <zoomMax>24</zoomMax> <tileSize>256</tileSize> <extraHeader>Referer#http://locus.asamm.cz/</extraHeader> </provider> <provider id="1002" type="0" visible="true" required="false" background="1001"> <name>OSM</name> <mode>OpenPiste</mode> <url><![CDATA[http://tiles2.openpistemap.org/landshaded/{z}/{x}/{y}.png]]></url> <zoomPart>{z}-8</zoomPart> <zoomMin>8</zoomMin> <zoomMax>24</zoomMax> <tileSize>256</tileSize> <countries>World</countries> <usage>hiking,ski</usage> <extraHeader>Referer#http://locus.asamm.cz/</extraHeader> </provider> </providers>
ZoomValues (zoomMin, zoomMax) have to be counted as valid zoom level by 2^x. So whole world have one tile 256×256 px, which means 2^8, so X = 8!. That's why almost all maps in Locus start with zoomMin = 8 but have zoomPart {z} - 8. This is because in URL, zooms usually starts from 0 - some max value
I'm sure that this solution should be improved so if you have any ideas, tell me. Also if here will be any little bit experienced developer on android, we should try to create some mechanist for adding external providers through ContentProviders or services.
Now you know syntax of providers, so you should add your custom ones. Please, share links with others and enjoy
Suggested is to use Firefox browser with extension HttpFox