
geojson:to-geojson( $regions as cts:region* ) as object-node()*
Convert cts:region values into GeoJSON object nodes.
| Parameters | |
|---|---|
| regions |
Zero or more cts:region values to convert to GeoJSON.
|
xquery version "1.0-ml";
import module namespace geojson = "http://marklogic.com/geospatial/geojson"
at "/MarkLogic/geospatial/geojson.xqy";
geojson:to-geojson(
cts:polygon((
cts:point(5.0,1.0), cts:point(8.0,1.0),
cts:point(8.0,6.0), cts:point(5.0,7.0)
))
)
==> A JSON object node representing a GeoJSON polygon with the given
coordinates.
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.