1{ 2 "type" : "FeatureCollection", 3 "features" : [ 4 { 5 "type" : "Feature", 6 "geometry" : { 7 "type" : "Point", 8 "coordinates" : [ 9 3, 10 11 11 ] 12 }, 13 "properties" : { 14 "name" : null, 15 "color" : "darkviolet" 16 } 17 }, 18 { 19 "type" : "Feature", 20 "geometry" : { 21 "type" : "MultiPoint", 22 "coordinates" : [ 23 [ 24 3, 25 11 26 ], 27 [ 28 3, 29 11.5 30 ], 31 [ 32 3, 33 12 34 ] 35 ] 36 }, 37 "properties" : { 38 "name" : null, 39 "color" : "deeppink" 40 } 41 }, 42 { 43 "type" : "Feature", 44 "geometry" : { 45 "type" : "LineString", 46 "coordinates" : [ 47 [ 48 1, 49 11 50 ], 51 [ 52 3, 53 13 54 ], 55 [ 56 3, 57 15 58 ] 59 ] 60 }, 61 "properties" : { 62 "color" : "red", 63 "thickness":1.1 64 } 65 }, 66 { 67 "type" : "Feature", 68 "geometry" : { 69 "type" : "MultiLineString", 70 "coordinates" : [ 71 [ 72 [ 73 6, 74 11 75 ], 76 [ 77 8, 78 13 79 ], 80 [ 81 8, 82 15 83 ] 84 ], 85 [ 86 [ 87 6, 88 14 89 ], 90 [ 91 8, 92 14 93 ], 94 [ 95 8, 96 16 97 ] 98 ] 99 ] 100 }, 101 "properties" : { 102 "color" : "green", 103 "happyness" : "a lot", 104 "hope" : "a wee" 105 } 106 }, 107 { 108 "type" : "Feature", 109 "geometry" : { 110 "type" : "Polygon", 111 "coordinates" : [ 112 [ 113 [ 114 1, 115 5 116 ], 117 [ 118 5, 119 5 120 ], 121 [ 122 5, 123 1 124 ], 125 [ 126 1, 127 1 128 ], 129 [ 130 1, 131 5 132 ] 133 ] 134 ] 135 }, 136 "properties" : { 137 "name" : null, 138 "color" : "red" 139 } 140 }, 141 { 142 "type" : "Feature", 143 "geometry" : { 144 "type" : "Polygon", 145 "coordinates" : [ 146 [ 147 [ 148 6, 149 8 150 ], 151 [ 152 12, 153 8 154 ], 155 [ 156 12, 157 1 158 ], 159 [ 160 6, 161 1 162 ], 163 [ 164 6, 165 8 166 ] 167 ], 168 [ 169 [ 170 7, 171 7 172 ], 173 [ 174 9, 175 7 176 ], 177 [ 178 9, 179 5 180 ], 181 [ 182 7, 183 5 184 ], 185 [ 186 7, 187 7 188 ] 189 ], 190 [ 191 [ 192 7, 193 4 194 ], 195 [ 196 8, 197 4 198 ], 199 [ 200 8, 201 3 202 ], 203 [ 204 7, 205 3 206 ], 207 [ 208 7, 209 4 210 ] 211 ], 212 [ 213 [ 214 10, 215 5 216 ], 217 [ 218 11, 219 5 220 ], 221 [ 222 11, 223 2 224 ], 225 [ 226 9, 227 2 228 ], 229 [ 230 9, 231 4 232 ], 233 [ 234 9, 235 4 236 ], 237 [ 238 10, 239 5 240 ] 241 ], 242 [ 243 [ 244 10, 245 7 246 ], 247 [ 248 11, 249 7 250 ], 251 [ 252 11, 253 6 254 ], 255 [ 256 10, 257 6 258 ], 259 [ 260 10, 261 7 262 ] 263 ] 264 ] 265 }, 266 "properties" : { 267 "name" : "MiX creation", 268 "implemented by" : "Julian Sherollari", 269 "creation quality":10, 270 "implementation quality":3.14159 271 } 272 }, 273 { 274 "type" : "Feature", 275 "geometry" : { 276 "type" : "MultiPolygon", 277 "coordinates" : [ 278 [ 279 [ 280 [ 281 4, 282 10 283 ], 284 [ 285 5, 286 10 287 ], 288 [ 289 5, 290 9 291 ], 292 [ 293 4, 294 9 295 ], 296 [ 297 4, 298 10 299 ] 300 ] 301 ], 302 [ 303 [ 304 [ 305 1, 306 8 307 ], 308 [ 309 5, 310 8 311 ], 312 [ 313 5, 314 6 315 ], 316 [ 317 1, 318 6 319 ], 320 [ 321 1, 322 8 323 ] 324 ] 325 ] 326 ] 327 }, 328 "properties" : { 329 "color" : "yellow", 330 "name" : null 331 } 332 }, 333 { 334 "type" : "Feature", 335 "geometry" : { 336 "type" : "GeometryCollection", 337 "geometries" : [ 338 { 339 "type" : "Point", 340 "coordinates" : [ 341 14, 342 2 343 ] 344 }, 345 { 346 "type" : "Polygon", 347 "coordinates" : [ 348 [ 349 [ 350 12, 351 2 352 ], 353 [ 354 13, 355 2 356 ], 357 [ 358 13, 359 1 360 ], 361 [ 362 12, 363 1 364 ], 365 [ 366 12, 367 2 368 ] 369 ] 370 ] 371 } 372 ] 373 }, 374 "properties" : { 375 "color" : "dodgerblue", 376 "name" : null 377 } 378 } 379 ] 380} 381