mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-10 17:21:38 -05:00
32 lines
1.3 KiB
JavaScript
32 lines
1.3 KiB
JavaScript
export const mapsConfig = {
|
|
"Light": {
|
|
url: "https://tyles.dwri.xyz/planet/{z}/{x}/{y}.mvt",
|
|
flavor: "light",
|
|
maxZoom: 16,
|
|
attribution: "<a href='https://github.com/protomaps/basemaps'>Protomaps</a>, © <a href='https://openstreetmap.org'>OpenStreetMap</a>"
|
|
},
|
|
"Dark": {
|
|
url: "https://tyles.dwri.xyz/planet/{z}/{x}/{y}.mvt",
|
|
flavor: "dark",
|
|
maxZoom: 16,
|
|
attribution: "<a href='https://github.com/protomaps/basemaps'>Protomaps</a>, © <a href='https://openstreetmap.org'>OpenStreetMap</a>"
|
|
},
|
|
"White": {
|
|
url: "https://tyles.dwri.xyz/planet/{z}/{x}/{y}.mvt",
|
|
flavor: "white",
|
|
maxZoom: 16,
|
|
attribution: "<a href='https://github.com/protomaps/basemaps'>Protomaps</a>, © <a href='https://openstreetmap.org'>OpenStreetMap</a>"
|
|
},
|
|
"Grayscale": {
|
|
url: "https://tyles.dwri.xyz/planet/{z}/{x}/{y}.mvt",
|
|
flavor: "grayscale",
|
|
maxZoom: 16,
|
|
attribution: "<a href='https://github.com/protomaps/basemaps'>Protomaps</a>, © <a href='https://openstreetmap.org'>OpenStreetMap</a>"
|
|
},
|
|
"Black": {
|
|
url: "https://tyles.dwri.xyz/planet/{z}/{x}/{y}.mvt",
|
|
flavor: "black",
|
|
maxZoom: 16,
|
|
attribution: "<a href='https://github.com/protomaps/basemaps'>Protomaps</a>, © <a href='https://openstreetmap.org'>OpenStreetMap</a>"
|
|
},
|
|
};
|