-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'refs/heads/master' into feature-relations
- Loading branch information
Showing
16 changed files
with
441 additions
and
248 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
module github.com/PDOK/gokoala | ||
|
||
go 1.22.4 | ||
go 1.22.5 | ||
|
||
require ( | ||
dario.cat/mergo v1.0.0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
module crd | ||
|
||
go 1.22.4 | ||
go 1.22.5 | ||
|
||
require ( | ||
github.com/PDOK/gokoala v0.0.0 | ||
|
46 changes: 37 additions & 9 deletions
46
internal/engine/testdata/expected_multiple_ogc_apis_single_collection.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,42 @@ | ||
<li class="list-group-item"> | ||
<h3 class="card-title h5">3D GeoVolumes</h3> | ||
<div class="col-md-4 col-sm-12"> | ||
<div class="card h-100"> | ||
<h2 class="card-header h5"> | ||
3D GeoVolumes | ||
</h2> | ||
<div class="card-body"> | ||
<ul> | ||
<li>Ga naar de <a href="http://localhost:8180/collections/NewYork/3dtiles" aria-label="Ga naar de 3D Tiles">3D Tiles</a></li> | ||
</ul> | ||
</li> | ||
<li class="list-group-item"> | ||
<h3 class="card-title h5">Features</h3> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="col-md-4 col-sm-12"> | ||
<div class="card h-100"> | ||
<h2 class="card-header h5"> | ||
<a href="http://localhost:8180/collections/NewYork/items" aria-label="Blader door de Features">Features</a> | ||
</h2> | ||
<div class="card-body"> | ||
<p> | ||
Blader door de <a href="http://localhost:8180/collections/NewYork/items" aria-label="Blader door de Features">Features</a> of ga direct naar de features in: | ||
</p> | ||
<p> | ||
<ul> | ||
<li><strong>Blader door de <a href="http://localhost:8180/collections/NewYork/items" aria-label="Blader door de Features">Features</a></strong></li> | ||
<li>Ga naar de features in WGS84 als <a href="http://localhost:8180/collections/NewYork/items?f=json" aria-label="Features in WGS84 als GeoJSON">GeoJSON</a></li> | ||
<li>Ga naar de features in EPSG:28992 als <a href="http://localhost:8180/collections/NewYork/items?f=json&crs=http%3a%2f%2fwww.opengis.net%2fdef%2fcrs%2fEPSG%2f0%2f28992" aria-label="Features in EPSG:28992 als GeoJSON">GeoJSON</a></li> | ||
<li>Ga naar de features in EPSG:28992 als <a href="http://localhost:8180/collections/NewYork/items?f=jsonfg&crs=http%3a%2f%2fwww.opengis.net%2fdef%2fcrs%2fEPSG%2f0%2f28992" aria-label="Features in EPSG:28992 als JSON-FG">JSON-FG</a></li> | ||
<li> <label for="selectjson" class="visually-hidden">Ga naar Features in</label> | ||
<select id="selectjson"> | ||
<option value="https://www.opengis.net/def/crs/OGC/1.3/CRS84">WGS84</option> | ||
<option value="http://www.opengis.net/def/crs/EPSG/0/28992">EPSG:28992</option> | ||
</select> | ||
als | ||
<a href="#" onclick="gotoFeatures('json', 'selectjson'); return false;">GeoJSON</a>. | ||
</li> | ||
<li> <label for="selectjsonfg" class="visually-hidden">Ga naar Features in</label> | ||
<select id="selectjsonfg"> | ||
<option value="https://www.opengis.net/def/crs/OGC/1.3/CRS84">WGS84</option> | ||
<option value="http://www.opengis.net/def/crs/EPSG/0/28992">EPSG:28992</option> | ||
</select> | ||
als | ||
<a href="#" onclick="gotoFeatures('jsonfg', 'selectjsonfg'); return false;">JSON-FG</a>. | ||
</li> | ||
</ul> | ||
</p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.