Skip to content

Commit

Permalink
Merge pull request #402 from justb4/226-392-pdok-urls-changed
Browse files Browse the repository at this point in the history
Rename remaining Dutch "nationaalgeoregister" PDOK WMTS URLs
  • Loading branch information
chrismayer authored Jun 14, 2024
2 parents a9d5ca8 + 399ada3 commit 6a412dd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
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

0 comments on commit 6a412dd

Please sign in to comment.