UNPKG

@mapbox/geojson-types

Version:

Flow type declarations for [GeoJSON](https://tools.ietf.org/html/rfc7946).

23 lines (20 loc) 343 B
// @flow import type { GeoJSONFeatureCollection } from '../../index'; const collection: GeoJSONFeatureCollection = { type: "FeatureCollection", features: [ { type: "Feature", properties: {}, geometry: { "type": "Point", "coordinates": [ 100, 0 ] } } ] };