Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename remaining Dutch "nationaalgeoregister" PDOK WMTS URLs #402

Merged
merged 3 commits into from
Jun 14, 2024
Merged
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 docs/map-layer-configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ Similar properties as Tiled WMS, with these exceptions:
| Property | Meaning | Example |
|--------------------|:---------:|---------|
| **type** | Indicator that the layer is a XYZ tiled image layer, always `XYZ` here | `"type": "XYZ"` |
| **url** | The URL of the service providing the image tiles | `"url": "https://geodata.nationaalgeoregister.nl/tiles/service/wmts/brtachtergrondkaart/EPSG:28992/{z}/{x}/{y}.png"` |
| **url** | The URL of the service providing the image tiles | `"url": "https://service.pdok.nl/brt/achtergrondkaart/wmts/v2_0/standaard/EPSG:28992/{z}/{x}/{y}.png"` |
| projection | The projection of the layer. Has to be defined in `projectionDefs` if not `EPSG:4326` or `EPSG:3857`. if not set the projection of the map is used | `"projection": "EPSG:3857"` |
| tileGridRef | Identifier of the tile grid to use for this layer (has to be defined in `tileGridDefs` | `"tileGridRef": "dutch_rd"` |
| crossOrigin | Provides support for CORS, defining how the layers source handles crossorigin requests. For more information and the supported values see [HTML attribute: crossorigin](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/crossorigin) | `"crossOrigin": "anonymous"` |
Expand Down
2 changes: 1 addition & 1 deletion docs/wegue-configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ In a Layer configuration a specific tilegrid can be refered to as follows, using
"type": "XYZ",
"lid": "brtachtergrondkaart",
"name": "WMTS - Topo Basemap - PDOK",
"url": "https://geodata.nationaalgeoregister.nl/tiles/service/wmts/brtachtergrondkaart/EPSG:28992/{z}/{x}/{y}.png",
"url": "https://service.pdok.nl/brt/achtergrondkaart/wmts/v2_0/standaard/EPSG:28992/{z}/{x}/{y}.png",
"projection": "EPSG:28992",
"tileGridRef": "dutch_rd",
"visible": true
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/specs/components/ol/Map.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ describe('ol/Map.vue', () => {
mapLayers: [{
type: 'XYZ',
lid: 'brtachtergrondkaart',
url: 'https://geodata.nationaalgeoregister.nl/tiles/service/wmts/brtachtergrondkaart/EPSG:28992/{z}/{x}/{y}.png',
url: 'https://service.pdok.nl/brt/achtergrondkaart/wmts/v2_0/standaard/EPSG:28992/{z}/{x}/{y}.png',
projection: 'EPSG:28992',
tileGridRef: 'dutch_rd',
displayInLayerList: true,
Expand Down
Loading