Skip to content

Commit

Permalink
Use only one connection to tiles servers with HTTP/2
Browse files Browse the repository at this point in the history
  • Loading branch information
frodrigo committed Jan 17, 2024
1 parent 9a37ae2 commit 1a1e77c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions web/static/map/layers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,26 +12,26 @@ export const mapBases = {
attribution: osmAttribution,
}),
CyclOSM: L.tileLayer(
'//{s}.tile-cyclosm.openstreetmap.fr/cyclosm/{z}/{x}/{y}.png',
'//a.tile-cyclosm.openstreetmap.fr/cyclosm/{z}/{x}/{y}.png',
{ attribution: osmAttribution }
),
'ÖPNV Karte': L.tileLayer('https://tile.memomaps.de/tilegen/{z}/{x}/{y}.png'),
'White background': L.tileLayer('//tile.openstreetmap.org/3/4/7.png'),
'carto-de': L.tileLayer('//{s}.tile.openstreetmap.de/{z}/{x}/{y}.png', {
'carto-de': L.tileLayer('//tile.openstreetmap.de/{z}/{x}/{y}.png', {
attribution: osmAttribution,
}),
'carto-fr': L.tileLayer('//{s}.tile.openstreetmap.fr/osmfr/{z}/{x}/{y}.png', {
'carto-fr': L.tileLayer('//a.tile.openstreetmap.fr/osmfr/{z}/{x}/{y}.png', {
attribution: osmAttribution,
}),
HOT: L.tileLayer('//tile-{s}.openstreetmap.fr/hot/{z}/{x}/{y}.png', {
HOT: L.tileLayer('//tile.openstreetmap.fr/hot/{z}/{x}/{y}.png', {
attribution: osmAttribution,
}),
Bing: L.bingLayer(
'AmQcQsaJ4WpRqn2_k0rEToboqaM1ind8HMmM0XwKwW9R8bChmHEbczHwjnjFpuNP',
{ type: 'Aerial' }
),
'MapBox Satellite': L.tileLayer(
'//{s}.tiles.mapbox.com/v4/mapbox.satellite/{z}/{x}/{y}.jpg?access_token=pk.eyJ1IjoiZnJvZHJpZ28iLCJhIjoiY2tza2x2YWQxMGE2djJvcG51emw4a3lzdCJ9.0Uy0TXwxjwFaMwD9phimPQ'
'//a.tiles.mapbox.com/v4/mapbox.satellite/{z}/{x}/{y}.jpg?access_token=pk.eyJ1IjoiZnJvZHJpZ28iLCJhIjoiY2tza2x2YWQxMGE2djJvcG51emw4a3lzdCJ9.0Uy0TXwxjwFaMwD9phimPQ'
),
// OpenGeoFiction
// 'Standard': L.tileLayer('https://opengeofiction.net/osm_tiles/{z}/{x}/{y}.png', {attribution: osmAttribution}),
Expand All @@ -40,7 +40,7 @@ export const mapBases = {
// 'Roantra': L.tileLayer('https://opengeofiction.net/planet/Roantra/{z}/{x}/{y}.png', {attribution: osmAttribution}),
}

const urlOsmFr = 'https://{s}.layers.openstreetmap.fr/{layer}/{z}/{x}/{y}.png'
const urlOsmFr = 'https://a.layers.openstreetmap.fr/{layer}/{z}/{x}/{y}.png'
const attributionOsmFr = ''
export const mapOverlay = {
'No name': L.tileLayer(urlOsmFr, {
Expand Down

0 comments on commit 1a1e77c

Please sign in to comment.