Loading views...

Geojson FeatureCollection

Creator
Creator
Seonglae ChoSeonglae Cho
Created
Created
2025 Nov 14 2:2
Editor
Edited
Edited
2025 Nov 14 2:3
Refs
Refs
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
 
 
 
 
 
 
 
 

Recommendations