Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion API.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ in the hash portion of the URL:
where the URL can contain the standard tile URL placeholders `{x}`, `{y}` and
`{z}`/`{zoom}`, `{ty}` for flipped TMS-style Y coordinates, and `{switch:a,b,c}` for
DNS multiplexing.<br/>
_Example:_ `background=custom:https://{switch:a,b,c}.tile.openstreetmap.org/{zoom}/{x}/{y}.png`
_Example:_ `background=custom:https://tile.openstreetmap.org/{zoom}/{x}/{y}.png`
* __`disable_features`__ - Disables features in the list.<br/>
_Example:_ `disable_features=water,service_roads,points,paths,boundaries`<br/>
_Available features:_ `points` `traffic_roads` `service_roads` `paths` `buildings` `landuse`
Expand Down
4 changes: 2 additions & 2 deletions data/imagery.json
Original file line number Diff line number Diff line change
Expand Up @@ -52049,7 +52049,7 @@
"id": "MAPNIK",
"name": "OpenStreetMap (Standard)",
"type": "tms",
"template": "https://{switch:a,b,c}.tile.openstreetmap.org/{zoom}/{x}/{y}.png",
"template": "https://tile.openstreetmap.org/{zoom}/{x}/{y}.png",
"zoomExtent": [0, 19],
"terms_url": "https://www.openstreetmap.org",
"terms_text": "© OpenStreetMap contributors, CC-BY-SA",
Expand All @@ -52061,7 +52061,7 @@
"id": "osm-gps",
"name": "OpenStreetMap GPS traces",
"type": "tms",
"template": "https://{switch:a,b,c}.gps-tile.openstreetmap.org/lines/{zoom}/{x}/{y}.png",
"template": "https://gps-tile.openstreetmap.org/lines/{zoom}/{x}/{y}.png",
"zoomExtent": [0, 20],
"terms_url": "https://www.openstreetmap.org/copyright",
"terms_text": "© OpenStreetMap contributors",
Expand Down
2 changes: 1 addition & 1 deletion modules/ui/settings/custom_background.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export function uiSettingsCustomBackground(context) {
template: context.storage('background-custom-template')
};
var _currSettings = _cloneDeep(_origSettings);
var example = 'https://{switch:a,b,c}.tile.openstreetmap.org/{zoom}/{x}/{y}.png';
var example = 'https://tile.openstreetmap.org/{zoom}/{x}/{y}.png';
var modal = uiConfirm(selection).okButton();

modal
Expand Down
2 changes: 1 addition & 1 deletion modules/ui/settings/custom_data.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export function uiSettingsCustomData(context) {
};
var _currSettings = _cloneDeep(_origSettings);

// var example = 'https://{switch:a,b,c}.tile.openstreetmap.org/{zoom}/{x}/{y}.png';
// var example = 'https://tile.openstreetmap.org/{zoom}/{x}/{y}.png';
var modal = uiConfirm(selection).okButton();

modal
Expand Down