1{ 2 "type" : "FeatureCollection", 3 "properties" : { 4 "color" : "crimson" 5 }, 6 "features" : [ 7 { 8 "type" : "Feature", 9 "id" : "Poly", 10 "properties" : { 11 "text" : "This is a Feature with a Polygon" 12 }, 13 "geometry" : { 14 "type" : "Polygon", 15 "coordinates" : [ 16 [ 17 [17.13, 51.11], 18 [30.54, 50.42], 19 [26.70, 58.36], 20 [17.13, 51.11] 21 ], 22 [ 23 [23.46, 54.36], 24 [20.52, 51.91], 25 [28.25, 51.50], 26 [26.80, 54.36], 27 [23.46, 54.36] 28 ] 29 ] 30 } 31 }, 32 { 33 "type" : "Feature", 34 "id" : "MultiLine", 35 "properties" : { 36 "text" : "This is a Feature with a MultiLineString", 37 "color" : "deepskyblue" 38 }, 39 "geometry" : { 40 "type" : "MultiLineString", 41 "coordinates" : [ 42 [[13.5, 43], [10.73, 59.92]], 43 [[9.15, 45], [-3.15, 58.90]] 44 ] 45 } 46 } 47 ] 48} 49