FeatureCollection Data Type

Implemented Interfaces
Serializable
Properties
name data type description
features array of Feature
Properties inherited from GeoJsonObject
type string The JSON object type.
crs Crs
bbox array of number

Example

{
  "features" : [ {
    "id" : "...",
    "geometry" : {
      "type" : "...",
      "crs" : { },
      "bbox" : [ 12345.0, 12345.0 ]
    },
    "properties" : {
      "property1" : { },
      "property2" : { }
    },
    "type" : "Feature",
    "crs" : {
      "properties" : {
        "property1" : { },
        "property2" : { }
      },
      "type" : "link"
    },
    "bbox" : [ 12345.0, 12345.0 ]
  }, {
    "id" : "...",
    "geometry" : {
      "type" : "...",
      "crs" : { },
      "bbox" : [ 12345.0, 12345.0 ]
    },
    "properties" : {
      "property1" : { },
      "property2" : { }
    },
    "type" : "Feature",
    "crs" : {
      "properties" : {
        "property1" : { },
        "property2" : { }
      },
      "type" : "link"
    },
    "bbox" : [ 12345.0, 12345.0 ]
  } ],
  "type" : "FeatureCollection",
  "crs" : {
    "properties" : {
      "property1" : { },
      "property2" : { }
    },
    "type" : "name"
  },
  "bbox" : [ 12345.0, 12345.0 ]
}