A FeatureCollection is a GeoJSON object that represents a collection of Feature objects. It has the following structure:
{ "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Point", "coordinates": [0.0, 0.0] }, "properties": { "name": "Example Feature" } } ] }
- type: Always set to "FeatureCollection"
- features: An array of Feature objects, each containing:
- type: Always "Feature"
- geometry: A Geometry object (Point, LineString, Polygon, etc.)
- properties: An object containing arbitrary properties describing the feature

Seonglae Cho