Circular search geometry (non-standard GeoJSON extension).
Defines a circular search area by center point and radius. This is a convenience type since standard GeoJSON does not include circles.
Note: This is not part of the official GeoJSON specification. It's a Maps SDK extension that gets converted to the appropriate API format internally.
Coordinate Format: [longitude, latitude] (standard GeoJSON order)
[longitude, latitude]
const circle: Circle = { type: 'Circle', coordinates: [4.9041, 52.3676], // Amsterdam center radius: 2000 // 2km radius}; Copy
const circle: Circle = { type: 'Circle', coordinates: [4.9041, 52.3676], // Amsterdam center radius: 2000 // 2km radius};
Center point of the circle in [longitude, latitude] format.
[4.9041, 52.3676] Copy
[4.9041, 52.3676]
Radius of the circle in meters.
Defines the search area around the center point. Places within or near this radius will be included in results.
1000 // 1 kilometer Copy
1000 // 1 kilometer
Geometry type identifier. Must be the literal string 'Circle'.
'Circle'
Circular search geometry (non-standard GeoJSON extension).
Defines a circular search area by center point and radius. This is a convenience type since standard GeoJSON does not include circles.
Remarks
Note: This is not part of the official GeoJSON specification. It's a Maps SDK extension that gets converted to the appropriate API format internally.
Coordinate Format:
[longitude, latitude](standard GeoJSON order)Example