mirror of
https://github.com/maplibre/martin.git
synced 2024-12-20 21:31:49 +03:00
f88db05582
When a SQL comment is set on a table or a function to customize tilejson, and that tbl/func is pre-configured as part of the config file, the comment was silently ignored. Now both table and function cases are handled correctly. Also, update docs to not include function parameters - makes SQL example a bit simpler. Thanks @jjcfrancisco for reporting! Fixes: #1044
18 lines
334 B
JSON
18 lines
334 B
JSON
{
|
|
"tilejson": "3.0.0",
|
|
"tiles": [
|
|
"http://localhost:3111/fnc_Mixed_Name/{z}/{x}/{y}"
|
|
],
|
|
"vector_layers": [
|
|
{
|
|
"id": "MixedCase.function_Mixed_Name",
|
|
"fields": {
|
|
"Geom": "",
|
|
"TABLE": ""
|
|
}
|
|
}
|
|
],
|
|
"description": "a function source with MixedCase name",
|
|
"name": "fnc_Mixed_Name"
|
|
}
|