
geojson.circle( radius as Number, center as objectNode() ) as cts.circle
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. |
const geojson = require('/MarkLogic/geospatial/geojson.xqy');
geojson.circle(1, {type: 'Point', coordinates: [100.0,0.0]});
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.