Skip to content

Commit 2303788

Browse files
committed
Add demo GeoJSON for web map app
1 parent 9632732 commit 2303788

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

data/urban_areas_demo.geojson

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"type": "FeatureCollection",
3+
"features": [
4+
{
5+
"type": "Feature",
6+
"properties": { "name": "Toronto (demo polygon)" },
7+
"geometry": {
8+
"type": "Polygon",
9+
"coordinates": [[
10+
[-79.55, 43.58],
11+
[-79.15, 43.58],
12+
[-79.15, 43.80],
13+
[-79.55, 43.80],
14+
[-79.55, 43.58]
15+
]]
16+
}
17+
}
18+
]
19+
}

0 commit comments

Comments
 (0)