1{
2  "type": "FeatureCollection",
3  "features": [
4    {
5      "type": "Feature",
6      "geometry": { "type": "Point", "coordinates": [102.0, 0.5] },
7      "properties": {
8        "color": "blue",
9        "title": "Marker",
10        "snippet": "This is marker from GeoJSON"
11      }
12    },
13    {
14      "type": "Feature",
15      "geometry": {
16        "type": "LineString",
17        "coordinates": [
18          [1.75, 47.69],
19          [21.89, 42.79],
20          [43.65, 53.22],
21          [58.58, 48.58]
22        ]
23      },
24      "properties": {
25        "color": "magenta",
26        "pattern": [
27          { "type": "stroke", "length": 10 },
28          { "type": "stroke", "length": 0 },
29          { "type": "stroke", "length": 10 },
30          { "type": "gap", "length": 10 },
31          { "type": "stroke", "length": 0 },
32          { "type": "gap", "length": 10 }
33        ]
34      }
35    },
36    {
37      "type": "Feature",
38      "geometry": {
39        "type": "Polygon",
40        "coordinates": [
41          [
42            [15.73, 53.84],
43            [16.31, 51.11],
44            [50.14, 22.07],
45            [53.18, 22.11]
46          ]
47        ]
48      },
49      "properties": {
50        "fillColor": "blue",
51        "strokeColor": "#000000",
52        "strokeWidth": 10,
53        "strokeJointType": "bevel",
54        "strokePattern": [
55          { "type": "stroke", "length": 10 },
56          { "type": "stroke", "length": 0 },
57          { "type": "stroke", "length": 10 },
58          { "type": "gap", "length": 10 },
59          { "type": "stroke", "length": 0 },
60          { "type": "gap", "length": 10 }
61        ]
62      }
63    },
64    {
65      "type": "Feature",
66      "geometry": {
67        "type": "Polygon",
68        "coordinates": [
69          [
70            [11.73, 52.84],
71            [13.31, 50.11],
72            [50.14, 22.07]
73          ]
74        ]
75      },
76      "properties": {
77        "strokeColor": "#000000",
78        "strokeWidth": 10,
79        "strokeJointType": "bevel",
80        "strokePattern": [
81          { "type": "stroke", "length": 10 },
82          { "type": "stroke", "length": 0 },
83          { "type": "stroke", "length": 10 },
84          { "type": "gap", "length": 10 },
85          { "type": "stroke", "length": 0 },
86          { "type": "gap", "length": 10 }
87        ]
88      }
89    }
90  ]
91}
92