File size: 368 Bytes
a156f80 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | {
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {"name": "test_point_1"},
"geometry": {"type": "Point", "coordinates": [0, 0]}
},
{
"type": "Feature",
"properties": {"name": "test_point_2"},
"geometry": {"type": "Point", "coordinates": [1, 1]}
}
]
}
|