This topic describes the ST_TileOption function. This function queries custom tile options of a sfmesh object.
Syntax
cstring ST_TileOption(sfmesh sfmesh);Parameters
Parameter | Description |
schema_name | The sfmesh object. |
Description
Field | Description |
with_geometry | Specifies whether geometry objects are included. |
with_submesh | Specifies whether child sfmesh objects are included. |
Example:
{
"with_geometry" : true,
"with_submesh" : true
}Examples
SELECT ST_TileOption(the_mesh)
FROM t_table
-------------------
{"with_geometry":true,"with_submesh":true}