UNPKG
@mapbox/geojson-types
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
Flow type declarations for [GeoJSON](https://tools.ietf.org/html/rfc7946).
@mapbox/geojson-types
/
fixtures
/
valid
/
point-xyz.js.flow
14 lines
(12 loc)
•
167 B
Flow
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// @flow
import
type
{
GeoJSONGeometry
}
from
'../../index'
;
const
geojson
:
GeoJSONGeometry
= {
"type"
:
"Point"
,
"coordinates"
: [
100
,
0
,
1
] }