
admin:database-geospatial-element-child-index( $parent-namespace as xs:string?, $parent-localname as xs:string, $namespace as xs:string?, $localname as xs:string, $coordinate-system as xs:string, $range-value-positions as xs:boolean, [$point-format as xs:string], [$invalid-values as xs:string] ) as element(db:geospatial-element-child-index)
This function constructs a geospatial element child index specification.
xquery version "1.0-ml";
import module namespace admin = "http://marklogic.com/xdmp/admin"
at "/MarkLogic/admin.xqy";
admin:database-geospatial-element-child-index(
"/my/namespace",
"elementname",
"/my/namespace",
"child-element",
"wgs84",
fn:false() )
(: returns the geospatial element child index specification :)
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.