github.com/PDOK/gokoala@v0.50.6/internal/ogc/styles/testdata/resources/default.json (about)

     1  {
     2    "version": 8,
     3    "name": "Dummy Mapbox Style, just for testing purposes",
     4    "id": "default",
     5    "pitch": 50,
     6    "center": [
     7      0,
     8      0
     9    ],
    10    "layers": [
    11      {
    12        "filter": [
    13          "all",
    14          [
    15            "==",
    16            "status",
    17            "Testing"
    18          ]
    19        ],
    20        "id": "testing",
    21        "type": "line",
    22        "paint": {
    23          "line-color": "rgb(170, 170, 170)",
    24          "line-width": 2
    25        },
    26        "source": "testing",
    27        "source-layer": "testing"
    28      }
    29    ],
    30    "sources": {
    31      "bag": {
    32        "type": "vector",
    33        "tiles": [
    34          "{{ .Config.BaseURL }}/tiles/{{ .Params.Projection }}/{z}/{y}/{x}?f=mvt"
    35        ],
    36        "minzoom": {{ .Params.ZoomLevelRange.Start }},
    37        "maxzoom": {{ .Params.ZoomLevelRange.End }}
    38      }
    39    }
    40  }