1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- {
- "type": "FeatureCollection",
- "features": [
- {
- "type": "Feature",
- "properties": {
- "name": "Feature 01",
- "description": "Just testing things..."
- },
- "geometry": {
- "type": "Point",
- "coordinates": [
- 86.8359375,
- 50.80078125
- ]
- },
- "crs": {
- "type": "name",
- "properties": {
- "name": "urn:ogc:def:crs:OGC:1.3:CRS84"
- }
- }
- },
- {
- "type": "Feature",
- "properties": {
- "name": "Feature 02",
- "description": "Just testing things..."
- },
- "geometry": {
- "type": "Point",
- "coordinates": [
- 101.6015625,
- 51.85546875
- ]
- },
- "crs": {
- "type": "name",
- "properties": {
- "name": "urn:ogc:def:crs:OGC:1.3:CRS84"
- }
- }
- },
- {
- "type": "Feature",
- "properties": {
- "name": "Feature 03",
- "description": "Just testing things..."
- },
- "geometry": {
- "type": "Point",
- "coordinates": [
- 110.7421875,
- 39.55078125
- ]
- },
- "crs": {
- "type": "name",
- "properties": {
- "name": "urn:ogc:def:crs:OGC:1.3:CRS84"
- }
- }
- }
- ]
- }
|