Skip to content

Commit

Permalink
Update map tile URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
cdauth committed Oct 11, 2023
1 parent 69386ea commit b96d647
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions leaflet/src/layers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export interface Layers {
export function createDefaultLayers(): Layers & { fallbackLayer: string | undefined } {
return {
baseLayers: {
Mpnk: L.tileLayer("https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", {
Mpnk: L.tileLayer("https://tile.openstreetmap.org/{z}/{x}/{y}.png", {
fmName: "Mapnik",
attribution: '© <a href="https://www.openstreetmap.org/copyright" target="_blank">OSM Contributors</a>',
noWrap: true
Expand All @@ -39,7 +39,7 @@ export function createDefaultLayers(): Layers & { fallbackLayer: string | undefi
noWrap: true
})*/

ToPl: L.tileLayer("https://sg.geodatenzentrum.de/wmts_topplus_web_open/tile/1.0.0/web/default/WEBMERCATOR/{z}/{y}/{x}.png", {
ToPl: L.tileLayer("https://sgx.geodatenzentrum.de/wmts_topplus_open/tile/1.0.0/web/default/WEBMERCATOR/{z}/{y}/{x}.png", {
fmName: "TopPlus",
attribution: '© <a href="https://www.bkg.bund.de/">Bundesamt für Kartographie und Geodäsie</a> ' + (new Date()).getFullYear(),
noWrap: true
Expand Down

0 comments on commit b96d647

Please sign in to comment.