mark-p-thomas : GeoJSON FeatureCollection

These terms adhere to RFC 7946 - The GeoJSON Format.

Sections

Definition

This represents a GeoJson Feature Collection which holds a list of Feature objects (when serialized the feature list becomes a JSON array). This is implemented using a Delegation Pattern.

Note that the feature list could potentially be empty. Features within the list must follow the specifications defined inside the Feature class.

JSON Example & Class Diagram

Raw GeoJSON

{
   "type": "FeatureCollection",
   "bbox": [100.0, 0.0, -100.0, 105.0, 1.0, 0.0],
   "features": [
     //...
   ]
 }

Class Diagram

For complete & up to date information, see the API documentation. For a dynamic interactive diagram, see the FigJam diagram.