Skip to content

Commit

Permalink
adding multi geojson
Browse files Browse the repository at this point in the history
  • Loading branch information
chelm committed Mar 20, 2015
1 parent aea084b commit 416c41b
Showing 1 changed file with 131 additions and 0 deletions.
131 changes: 131 additions & 0 deletions test/geojson-multi-spec-example.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,131 @@

{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"geometry": {
"type": "MultiPoint",
"coordinates": [
[
102.0,
0.5
],
[
106.0,
0.5
]
]
},
"properties": {
"prop0": "value0"
}
},
{
"type": "Feature",
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
102.0,
0.0
],
[
103.0,
1.0
],
[
104.0,
0.0
],
[
105.0,
1.0
]
],
[
[
99.0,
0.0
],
[
103.0,
1.0
],
[
104.0,
0.0
],
[
107.0,
2.0
]
]
]
},
"properties": {
"prop0": "value0",
"prop1": 0.0
}
},
{
"type": "Feature",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
100.0,
0.0
],
[
101.0,
0.0
],
[
101.0,
1.0
],
[
100.0,
1.0
],
[
100.0,
0.0
]
],
[
[
98.0,
0.0
],
[
101.0,
0.0
],
[
101.0,
1.0
],
[
100.0,
1.0
],
[
98.0,
0.0
]
]
]
},
"properties": {
"prop0": "value0",
"prop1": {
"this": "that"
}
}
}
]
}

0 comments on commit 416c41b

Please sign in to comment.