Script and makefile adjustments for updating extlib
[larjonas-mediagoblin.git] / extlib / leaflet / debug / geojson / geojson-sample.js
blob24ecf05002e34992352f7bdec7581e3ccdb2e930
1 var geojsonSample = {
2 "type": "FeatureCollection",
3 "features": [
5 "type": "Feature",
6 "geometry": {
7 "type": "Point",
8 "coordinates": [102.0, 0.5]
9 },
10 "properties": {
11 "prop0": "value0",
12 "color": "blue"
17 "type": "Feature",
18 "geometry": {
19 "type": "LineString",
20 "coordinates": [[102.0, 0.0], [103.0, 1.0], [104.0, 0.0], [105.0, 1.0]]
22 "properties": {
23 "color": "red",
24 "prop1": 0.0
29 "type": "Feature",
30 "geometry": {
31 "type": "Polygon",
32 "coordinates": [[[100.0, 0.0], [101.0, 0.0], [101.0, 1.0], [100.0, 1.0], [100.0, 0.0]]]
34 "properties": {
35 "color": "green",
36 "prop1": {
37 "this": "that"
43 "type": "Feature",
44 "geometry": {
45 "type": "MultiPolygon",
46 "coordinates": [[[[100.0, 1.5], [100.5, 1.5], [100.5, 2.0], [100.0, 2.0], [100.0, 1.5]]], [[[100.5, 2.0], [100.5, 2.5], [101.0, 2.5], [101.0, 2.0], [100.5, 2.0]]]]