geojson.circle

geojson.circle(
   radius as Number,
   center as objectNode()
) as cts.circle

Summary

Create a cts:circle value from a radius and a GeoJSON "Point" type geometry object.

Parameters
radius The radius of the circle, in miles.
center A GeoJSON Point node representing the center of the circle.

Example

const geojson = require('/MarkLogic/geospatial/geojson.xqy');

geojson.circle(1, {type: 'Point', coordinates: [100.0,0.0]});
  
Powered by MarkLogic Server | Terms of Use | Privacy Policy