aboutsummaryrefslogtreecommitdiff
path: root/androidApp/src/main/res/values/map_layers.xml
blob: bffceb95c48b25cc5c4444b4eec11b736e2e9d38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?xml version="1.0" encoding="utf-8"?>
<resources>
    <string name="layer_streets">Streets</string>
    <string name="layer_satellite">Satellite</string>

    <!-- Tile URLs -->
    <!-- [0] = tile server URL -->
    <!-- [1] = min zoom -->
    <!-- [2] = max zoom -->
    <!-- [3] = attribution text -->

    <string-array name="maps_streets_tile" translatable="false">
        <item>https://a.tile.openstreetmap.fr/osmfr/{z}/{x}/{y}.png</item>
        <item>0</item>
        <item>21</item>
        <item>&#169; OpenStreetMap France | &#169; &lt;a href="https://www.openstreetmap.org/copyright"&gt;OpenStreetMap&lt;/a&gt; contributors</item>
    </string-array>

    <string-array name="maps_satellite_tile" translatable="false">
        <item>https://server.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer/tile/{z}/{y}/{x}</item>
        <item>0</item>
        <item>20</item>
        <item>Tiles &#169; Esri &#8212; Source: Esri, i-cubed, USDA, USGS, AEX, GeoEye, Getmapping, Aerogrid, IGN, IGP, UPR-EGP, and the GIS User Community</item>
    </string-array>

</resources>