JMap.Geometry.getCircleFeature
Returns a polygon feature equivalent to the circle.
Location of circle's center
The radius in KM
// returns the circle featureconst circle = JMap.Geometry.getCircleFeature([ 10, 20 ], 1.4)// returns the circle featureconst circle = JMap.Geometry.getCircleFeature({ x: 10, y: 20 }, 1.4) Copy
// returns the circle featureconst circle = JMap.Geometry.getCircleFeature([ 10, 20 ], 1.4)// returns the circle featureconst circle = JMap.Geometry.getCircleFeature({ x: 10, y: 20 }, 1.4)
JMap.Geometry.getCircleFeature
Returns a polygon feature equivalent to the circle.