QGIS/resources/function_help/json/map_to_html_table

16 lines
442 B
Plaintext
Raw Normal View History

2022-11-02 16:43:29 +01:00
{
"name": "map_to_html_table",
"type": "function",
"groups": ["Maps"],
"description": "Merge map elements into a HTML table string.",
"arguments": [{
"arg": "map",
"description": "the input map"
}],
"examples": [{
"expression": "map_to_html_table(map('qgis','rocks'))",
"returns": "<table><thead><th>qgis</th></thead><tbody><tr><td>rocks</td></tr></tbody></table>"
}],
"tags": ["formatted", "map", "html"]
}