github.com/PDOK/gokoala@v0.50.6/internal/ogc/tiles/templates/tileMatrixSets.go.html (about) 1 {{- /*gotype: github.com/PDOK/gokoala/internal/engine.TemplateData*/ -}} 2 {{define "content"}} 3 <hgroup> 4 <h1 class="title" id="title">{{ .Config.Title }} - {{ i18n "TileMatrixSets" }}</h1> 5 </hgroup> 6 <div class="row py-3"> 7 <div class="col-md-12"> 8 <p> 9 {{ i18n "TileMatrixSetsText" }} 10 </p> 11 <table class="table table-striped"> 12 <thead> 13 <tr> 14 <th>Tile Matrix Set</th> 15 <th>{{ i18n "Description" }}</th> 16 </tr> 17 </thead> 18 <tbody> 19 {{range $type := .Config.OgcAPI.Tiles.SupportedSrs }} 20 {{ if (eq $type.Srs "EPSG:28992") }} 21 <tr> 22 <td><a href="tileMatrixSets/NetherlandsRDNewQuad" aria-label="{{ i18n "To" }} NetherlandsRDNewQuad">NetherlandsRDNewQuad</a></td> 23 <td>Amersfoort / RD New scheme for the Netherlands</td> 24 </tr> 25 {{end}} 26 {{ if (eq $type.Srs "EPSG:3035") }} 27 <tr> 28 <td><a href="tileMatrixSets/EuropeanETRS89_LAEAQuad" aria-label="{{ i18n "To" }} EuropeanETRS89_LAEAQuad">EuropeanETRS89_LAEAQuad</a></td> 29 <td>Lambert Azimuthal Equal Area ETRS89 for Europe</td> 30 </tr> 31 {{end}} 32 {{ if (eq $type.Srs "EPSG:3857") }} 33 <tr> 34 <td><a href="tileMatrixSets/WebMercatorQuad" aria-label="{{ i18n "To" }} WebMercatorQuad">WebMercatorQuad</a></td> 35 <td>Google Maps Compatible for the World</td> 36 </tr> 37 {{end}} 38 {{end}} 39 </tbody> 40 </table> 41 </div> 42 </div> 43 {{end}}