
geokml:to-kml( $region as cts:region*, [$namespace as xs:string] ) as element()*
Construct KML elements from cts:region values.
import module namespace geokml="http://marklogic.com/geospatial/kml"
at "/MarkLogic/geospatial/kml.xqy";
declare namespace kml="http://www.opengis.net/kml/2.2";
geokml:to-kml(
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 KML polygon similar to the following:
<Polygon xmlns="http://www.opengis.net/kml/2.2">
<outerBoundaryIs>
<LinearRing>
<coordinates>1.0,5.0 1.0,8.0 6.0,8.0 7.0,5.0 1.0,5.0 </coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>