A FeatureCollection is a GeoJSON object that represents a collection of Feature objects. It has the following structure:
- 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