
geo:linestring( $linestring as node() ) as cts:linestring
Create a cts:linestring value from a node representing a linestring in one of the supported markup vocabularies, such as GML or KML.
| Parameters | |
|---|---|
| linestring | A node representing a linestring. |
xquery version "1.0-ml";
import module namespace geo = "http://marklogic.com/geospatial"
at "/MarkLogic/geospatial/geospatial.xqy";
geo:linestring(
<kml:LineString id="ID">
<kml:coordinates>-110.45,45.256 -109.48,46.46 -109.86,43.84</kml:coordinates>
</kml:LineString>)
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.