In the example below, only the first and tenth feature is shown. Coordinates are not shown.
+{
+ "type" : "FeatureCollection",
+ "links" : [ {
+ "href" : "http://data.example.com/collections/buildings/items/?f=json",
+ "rel" : "self",
+ "type" : "application/geo+json",
+ "title" : "this document"
+ }, {
+ "href" : "http://data.example.com/collections/buildings/items/?f=html",
+ "rel" : "alternate",
+ "type" : "text/html",
+ "title" : "this document as HTML"
+ }, {
+ "href" : "http://data.example.com/collections/buildings/items/?f=json&startIndex=10&count=10",
+ "rel" : "next",
+ "type" : "application/geo+json",
+ "title" : "next page"
+ } ],
+ "features" : [ {
+ "type" : "Feature",
+ "id" : "123",
+ "geometry" : {
+ "type" : "Polygon",
+ "coordinates" : [ ... ]
+ },
+ "properties" : {
+ "function" : "residential",
+ "floors" : "2"
+ }
+ }, { ...
+ }, {
+ "type" : "Feature",
+ "id" : "132",
+ "geometry" : {
+ "type" : "Polygon",
+ "coordinates" : [ ... ]
+ },
+ "properties" : {
+ "function" : "public use",
+ "floors" : "10"
+ }
+ } ]
+}
+