Value of coordinates member | |
Point | A position (which is an array of coordinates) |
LineString | Array of two or more positions |
Polygon | Array of linear ring coordinate arrays |
MultiPoint | Array of positions |
MultiLineString | Array of LineString coordinate arrays |
MultiPolygon | Array of Polygon coordinate arrays |
GeometryCollection | n/a (has a geometries member instead which is a (possibly empty) array of geometry types). |
Feature | A geometry object with addtional members |
FeatureCollection | A collection (array) of feature objects, analogous to that of the Web Feature Service (WFS) response to GetFeatures requests or to a Keyhole Markup Language (KML) folder of placemarks |
type
whose value is a string and corresponds to one of the nine specified object types. coordinates
member. bbox
attribute which is an array of coordinates. geometry
. { "type" : "FeatureCollection", "features": [ { "type" :"Feature", "geometry" : { "type" : "Point", "coordinates": [102.0, 0.5] }, "properties": { "prop0": "value0" } }, { "type" :"Feature", "geometry" : { "type" : "LineString", "coordinates": [ [102.0, 0.0], [103.0, 1.0], [104.0, 0.0], [105.0, 1.0] ] }, "properties": { "prop0": "value0", "prop1": 0.0 } }, … ] }
application/geo+json
. .json
and .geojson
. geojson
in the Oracle package dbms_json