styled-map-package 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (60) hide show
  1. package/.github/workflows/node.yml +30 -0
  2. package/.github/workflows/release.yml +47 -0
  3. package/.husky/pre-commit +1 -0
  4. package/.nvmrc +1 -0
  5. package/LICENSE.md +7 -0
  6. package/README.md +28 -0
  7. package/bin/smp-download.js +83 -0
  8. package/bin/smp-view.js +52 -0
  9. package/bin/smp.js +11 -0
  10. package/eslint.config.js +17 -0
  11. package/lib/download.js +114 -0
  12. package/lib/index.js +6 -0
  13. package/lib/reader.js +150 -0
  14. package/lib/reporters.js +92 -0
  15. package/lib/server.js +64 -0
  16. package/lib/style-downloader.js +363 -0
  17. package/lib/tile-downloader.js +188 -0
  18. package/lib/types.ts +104 -0
  19. package/lib/utils/fetch.js +100 -0
  20. package/lib/utils/file-formats.js +85 -0
  21. package/lib/utils/geo.js +87 -0
  22. package/lib/utils/mapbox.js +155 -0
  23. package/lib/utils/misc.js +26 -0
  24. package/lib/utils/streams.js +162 -0
  25. package/lib/utils/style.js +174 -0
  26. package/lib/utils/templates.js +136 -0
  27. package/lib/writer.js +478 -0
  28. package/map-viewer/index.html +89 -0
  29. package/package.json +103 -0
  30. package/test/download-write-read.js +43 -0
  31. package/test/fixtures/invalid-styles/empty.json +1 -0
  32. package/test/fixtures/invalid-styles/missing-source.json +10 -0
  33. package/test/fixtures/invalid-styles/no-layers.json +4 -0
  34. package/test/fixtures/invalid-styles/no-sources.json +4 -0
  35. package/test/fixtures/invalid-styles/null.json +1 -0
  36. package/test/fixtures/invalid-styles/unsupported-version.json +5 -0
  37. package/test/fixtures/valid-styles/external-geojson.input.json +66 -0
  38. package/test/fixtures/valid-styles/external-geojson.output.json +93 -0
  39. package/test/fixtures/valid-styles/inline-geojson.input.json +421 -0
  40. package/test/fixtures/valid-styles/inline-geojson.output.json +1573 -0
  41. package/test/fixtures/valid-styles/maplibre-demotiles.input.json +831 -0
  42. package/test/fixtures/valid-styles/maplibre-unlabelled.input.json +496 -0
  43. package/test/fixtures/valid-styles/maplibre-unlabelled.output.json +1573 -0
  44. package/test/fixtures/valid-styles/minimal-labelled.input.json +37 -0
  45. package/test/fixtures/valid-styles/minimal-labelled.output.json +72 -0
  46. package/test/fixtures/valid-styles/minimal-sprites.input.json +37 -0
  47. package/test/fixtures/valid-styles/minimal-sprites.output.json +58 -0
  48. package/test/fixtures/valid-styles/minimal.input.json +54 -0
  49. package/test/fixtures/valid-styles/minimal.output.json +92 -0
  50. package/test/fixtures/valid-styles/multiple-sprites.input.json +46 -0
  51. package/test/fixtures/valid-styles/multiple-sprites.output.json +128 -0
  52. package/test/fixtures/valid-styles/raster-sources.input.json +33 -0
  53. package/test/fixtures/valid-styles/raster-sources.output.json +69 -0
  54. package/test/utils/assert-bbox-equal.js +19 -0
  55. package/test/utils/digest-stream.js +36 -0
  56. package/test/utils/image-streams.js +30 -0
  57. package/test/utils/reader-helper.js +72 -0
  58. package/test/write-read.js +620 -0
  59. package/tsconfig.json +18 -0
  60. package/types/buffer-peek-stream.d.ts +12 -0
@@ -0,0 +1,496 @@
1
+ {
2
+ "name": "MapLibre",
3
+ "zoom": 0.8619833357855968,
4
+ "pitch": 0,
5
+ "center": [17.65431710431244, 32.954120326746775],
6
+ "layers": [
7
+ {
8
+ "id": "background",
9
+ "type": "background",
10
+ "paint": {
11
+ "background-color": "#D8F2FF"
12
+ },
13
+ "filter": ["all"],
14
+ "layout": {
15
+ "visibility": "visible"
16
+ },
17
+ "maxzoom": 24
18
+ },
19
+ {
20
+ "id": "coastline",
21
+ "type": "line",
22
+ "paint": {
23
+ "line-blur": 0.5,
24
+ "line-color": "#198EC8",
25
+ "line-width": {
26
+ "stops": [
27
+ [0, 2],
28
+ [6, 6],
29
+ [14, 9],
30
+ [22, 18]
31
+ ]
32
+ }
33
+ },
34
+ "filter": ["all"],
35
+ "layout": {
36
+ "line-cap": "round",
37
+ "line-join": "round",
38
+ "visibility": "visible"
39
+ },
40
+ "source": "maplibre",
41
+ "maxzoom": 24,
42
+ "minzoom": 0,
43
+ "source-layer": "countries"
44
+ },
45
+ {
46
+ "id": "countries-boundary",
47
+ "type": "line",
48
+ "paint": {
49
+ "line-color": "rgba(255, 255, 255, 1)",
50
+ "line-width": {
51
+ "stops": [
52
+ [1, 1],
53
+ [6, 2],
54
+ [14, 6],
55
+ [22, 12]
56
+ ]
57
+ },
58
+ "line-opacity": {
59
+ "stops": [
60
+ [3, 0.5],
61
+ [6, 1]
62
+ ]
63
+ }
64
+ },
65
+ "layout": {
66
+ "line-cap": "round",
67
+ "line-join": "round",
68
+ "visibility": "visible"
69
+ },
70
+ "source": "maplibre",
71
+ "maxzoom": 24,
72
+ "source-layer": "countries"
73
+ },
74
+ {
75
+ "id": "geolines",
76
+ "type": "line",
77
+ "paint": {
78
+ "line-color": "#1077B0",
79
+ "line-opacity": 1,
80
+ "line-dasharray": [3, 3]
81
+ },
82
+ "filter": ["all", ["!=", "name", "International Date Line"]],
83
+ "layout": {
84
+ "visibility": "visible"
85
+ },
86
+ "source": "maplibre",
87
+ "maxzoom": 24,
88
+ "source-layer": "geolines"
89
+ },
90
+ {
91
+ "id": "crimea-fill",
92
+ "type": "fill",
93
+ "source": "crimea",
94
+ "paint": {
95
+ "fill-color": "#D6C7FF"
96
+ }
97
+ }
98
+ ],
99
+ "bearing": 0,
100
+ "sources": {
101
+ "maplibre": {
102
+ "url": "https://demotiles.maplibre.org/tiles/tiles.json",
103
+ "type": "vector"
104
+ },
105
+ "crimea": {
106
+ "type": "geojson",
107
+ "data": {
108
+ "type": "Feature",
109
+ "geometry": {
110
+ "type": "Polygon",
111
+ "coordinates": [
112
+ [
113
+ [34.00905273547181, 46.55925987559425],
114
+ [33.64325260204026, 46.34533545368038],
115
+ [33.628682598560204, 46.12569762665683],
116
+ [33.64292861730951, 46.10476396128129],
117
+ [33.648473474905984, 46.09033047763651],
118
+ [33.63876482059936, 46.077976784785335],
119
+ [33.62782672238245, 46.06747935719011],
120
+ [33.62911357645072, 46.05708111413949],
121
+ [33.642686868727424, 46.02192963417187],
122
+ [33.6429723910654, 46.01521185644708],
123
+ [33.636224138774026, 46.006705833212465],
124
+ [33.63052626465907, 45.99692992186792],
125
+ [33.63193836679693, 45.988472992911284],
126
+ [33.64276684834442, 45.984575360297384],
127
+ [33.646928693041986, 45.97981936210982],
128
+ [33.638745893564305, 45.96829769147004],
129
+ [33.61958133326394, 45.951176418494185],
130
+ [33.63181380398527, 45.9445404758078],
131
+ [33.638921676216, 45.94737012930554],
132
+ [33.64561542516918, 45.95403251372139],
133
+ [33.65666403976448, 45.95687114427736],
134
+ [33.6825817382811, 45.95878100879199],
135
+ [33.738791807037614, 45.94836945227263],
136
+ [33.758180142697, 45.94072970008301],
137
+ [33.77735917288169, 45.92923970233858],
138
+ [33.75927796793485, 45.92241179584471],
139
+ [33.72529865009221, 45.91587363154565],
140
+ [33.70875012326826, 45.91008760988058],
141
+ [33.69378857293381, 45.91480850795665],
142
+ [33.69092650243843, 45.89657370898402],
143
+ [33.693592356906805, 45.87271465766318],
144
+ [33.69226765972388, 45.86041392418218],
145
+ [33.6704813511748, 45.8584273836251],
146
+ [33.65936345808916, 45.85944682601249],
147
+ [33.653870582376726, 45.86425922279372],
148
+ [33.65107345584843, 45.87089907254003],
149
+ [33.63067378180233, 45.88040685247182],
150
+ [33.61945300059696, 45.88147266102649],
151
+ [33.60987421595539, 45.88048951126686],
152
+ [33.59906957603934, 45.877610457390375],
153
+ [33.57828877687868, 45.86810261756233],
154
+ [33.55357394560386, 45.84700625141778],
155
+ [33.530220674480375, 45.84221983655459],
156
+ [33.5192297395441, 45.84121682367507],
157
+ [33.50832088442496, 45.84313067048083],
158
+ [33.48901101848409, 45.85268298292175],
159
+ [33.482152996405716, 45.854578171799005],
160
+ [33.46719955896293, 45.849912739405056],
161
+ [33.42447496599681, 45.83075886348303],
162
+ [33.40940172404095, 45.82691953557702],
163
+ [33.37918350072067, 45.802867525073566],
164
+ [33.37362145339398, 45.79619281922518],
165
+ [33.33805543634864, 45.78577808972071],
166
+ [33.26498872665803, 45.75410774187094],
167
+ [33.22887541283427, 45.75131270772724],
168
+ [33.19548267281132, 45.7644887297206],
169
+ [33.1789202379222, 45.78010311364778],
170
+ [33.1688456078636, 45.78470227904205],
171
+ [33.161012432811674, 45.77921593899549],
172
+ [33.15951585299757, 45.76864464913777],
173
+ [33.165962301438725, 45.762685940125465],
174
+ [33.1750888126426, 45.759218220695715],
175
+ [33.181464829753, 45.75490447884948],
176
+ [33.17613930782352, 45.7437961960276],
177
+ [33.16369168844906, 45.735912015025065],
178
+ [32.93692665480876, 45.662114646778264],
179
+ [32.86839112407645, 45.63044340698664],
180
+ [32.83803944575723, 45.60834075026611],
181
+ [32.82702772424804, 45.59576101516498],
182
+ [32.82433467080986, 45.58705137380335],
183
+ [32.82563941622885, 45.579605763895614],
184
+ [32.82993674258438, 45.56978311819469],
185
+ [32.82851940940563, 45.56227808675749],
186
+ [32.813310142795274, 45.55930933158257],
187
+ [32.80213583657516, 45.560145780074464],
188
+ [32.78258622159436, 45.565158335073846],
189
+ [32.77333922465823, 45.56689313356526],
190
+ [32.758306734735356, 45.565030173463356],
191
+ [32.750177256846115, 45.55943726334968],
192
+ [32.74340732630185, 45.55261895849793],
193
+ [32.73524549539499, 45.54598788110354],
194
+ [32.72031700779701, 45.53735927760957],
195
+ [32.70536040418847, 45.53169142131733],
196
+ [32.68589438933773, 45.52663379187257],
197
+ [32.66370583186284, 45.52563107058867],
198
+ [32.64312077736798, 45.52188979044979],
199
+ [32.525284074162556, 45.45838108691365],
200
+ [32.49490411219156, 45.43524910229854],
201
+ [32.48107654411925, 45.408986638827514],
202
+ [32.48514589713025, 45.39458067125969],
203
+ [32.51256939517424, 45.34060655033625],
204
+ [32.535915460470335, 45.33777248012882],
205
+ [32.57027153843481, 45.32510892683359],
206
+ [32.590830644991826, 45.32038723212662],
207
+ [32.66380378113439, 45.320421746458976],
208
+ [32.67760722618917, 45.32609231279554],
209
+ [32.71316246802607, 45.353283572618125],
210
+ [32.72817188836078, 45.36074681043402],
211
+ [32.750518060251466, 45.36371725645313],
212
+ [32.89973931692998, 45.35412322462227],
213
+ [32.941197846443885, 45.34245505845169],
214
+ [32.97701667405008, 45.32596743563991],
215
+ [33.04296090827762, 45.2853982930032],
216
+ [33.05274355585479, 45.28154273654923],
217
+ [33.06850284417635, 45.27703461892352],
218
+ [33.07825272648239, 45.272210805127315],
219
+ [33.089426322403455, 45.25656353201492],
220
+ [33.09897492343546, 45.247820101667884],
221
+ [33.12384611720435, 45.238235755071685],
222
+ [33.15767197859745, 45.20755227709648],
223
+ [33.172959979330074, 45.19681657531794],
224
+ [33.21837666514142, 45.187878368659824],
225
+ [33.24017433636709, 45.180191106261134],
226
+ [33.248571989896675, 45.16588271012458],
227
+ [33.259649216030766, 45.155918961282026],
228
+ [33.28309785485047, 45.16064860772312],
229
+ [33.31767999550894, 45.17535522412791],
230
+ [33.35458473323109, 45.18598673360148],
231
+ [33.39725661527919, 45.18973663076909],
232
+ [33.41344561756824, 45.18490731877088],
233
+ [33.468468576977216, 45.149132412229676],
234
+ [33.537128652906205, 45.11719769268973],
235
+ [33.56161328289443, 45.094099022711475],
236
+ [33.57837628774928, 45.053145935448015],
237
+ [33.58247744978442, 45.027377243150454],
238
+ [33.5851414316958, 45.01816461606674],
239
+ [33.6031021265521, 44.993103583251695],
240
+ [33.605922209331794, 44.986905272229734],
241
+ [33.60843524291815, 44.97039962759274],
242
+ [33.61943161357851, 44.93184946652454],
243
+ [33.619484500808824, 44.90819321920554],
244
+ [33.61549738593425, 44.88894092276257],
245
+ [33.608561183117274, 44.871288478948514],
246
+ [33.59889474705494, 44.859790298912856],
247
+ [33.55904244709464, 44.850057575124595],
248
+ [33.54667558363471, 44.83724531175508],
249
+ [33.53701832136994, 44.81871953508235],
250
+ [33.5303157846202, 44.798338017069625],
251
+ [33.5249116915937, 44.78918633101301],
252
+ [33.51669091675143, 44.784809980590666],
253
+ [33.524785531609865, 44.77183212449111],
254
+ [33.5302902535075, 44.75724515985675],
255
+ [33.53710734694323, 44.73034290771247],
256
+ [33.54650992495621, 44.70989226909535],
257
+ [33.5481286806762, 44.699106546699085],
258
+ [33.543995566510915, 44.68230506537358],
259
+ [33.53580273994743, 44.6726082589706],
260
+ [33.52337411931097, 44.661863083605255],
261
+ [33.515320778874354, 44.6491266698327],
262
+ [33.516377841582795, 44.63464990118433],
263
+ [33.52466971637648, 44.62863961572572],
264
+ [33.557474298027785, 44.62473000923737],
265
+ [33.5710648827386, 44.620853511273225],
266
+ [33.55105839203679, 44.61506440493406],
267
+ [33.499905706797676, 44.61452599304897],
268
+ [33.48451102966331, 44.60992438254493],
269
+ [33.47658499621011, 44.60714391514574],
270
+ [33.46705078205747, 44.60616254193252],
271
+ [33.44476599234898, 44.607062134677875],
272
+ [33.4353466482458, 44.60509936890821],
273
+ [33.413591053005575, 44.593500212748125],
274
+ [33.40543527945235, 44.59055535193136],
275
+ [33.37510958624222, 44.58564691897425],
276
+ [33.37074452434078, 44.58851022190515],
277
+ [33.372237834990756, 44.576810695127364],
278
+ [33.37913003799301, 44.56412673079859],
279
+ [33.48759131590526, 44.51024086451031],
280
+ [33.50011215135888, 44.50041002882833],
281
+ [33.517917009115365, 44.49074142372788],
282
+ [33.53836387802215, 44.49164280212756],
283
+ [33.56041892763031, 44.4966411022441],
284
+ [33.57822378538677, 44.497542389459795],
285
+ [33.59062975079095, 44.48975808594983],
286
+ [33.619577003408466, 44.46229988129974],
287
+ [33.62635433636015, 44.45336293328907],
288
+ [33.63175322871038, 44.434828756313124],
289
+ [33.645537634715026, 44.42498521035591],
290
+ [33.721007257593925, 44.39946630464436],
291
+ [33.74168386660085, 44.39560878121904],
292
+ [33.80727466517129, 44.39454176175843],
293
+ [33.81841706002561, 44.39552670349164],
294
+ [33.83909366903248, 44.40143600575672],
295
+ [33.85149963444792, 44.40143600575945],
296
+ [33.91467816197718, 44.38387049706651],
297
+ [33.938111652185, 44.38083293528811],
298
+ [33.957065210440874, 44.38272116790142],
299
+ [34.06614966692763, 44.42019923628979],
300
+ [34.088893936836286, 44.42200415824283],
301
+ [34.10279321289039, 44.42487551014821],
302
+ [34.135933345669, 44.44163597968952],
303
+ [34.14696087047267, 44.44959070749778],
304
+ [34.16058918507403, 44.466287285335795],
305
+ [34.170123399227776, 44.48186111741296],
306
+ [34.182759104731986, 44.49267838558103],
307
+ [34.22923417224524, 44.49949719774551],
308
+ [34.24301857824986, 44.50744404277697],
309
+ [34.263903954150294, 44.53186886058606],
310
+ [34.26631622520165, 44.53555362837611],
311
+ [34.26631622520165, 44.54153064468656],
312
+ [34.27033667695244, 44.545378535987936],
313
+ [34.2757355693048, 44.54644280144541],
314
+ [34.285384653508004, 44.54562413743594],
315
+ [34.299973149863405, 44.54554227040174],
316
+ [34.32260254971496, 44.543577427039224],
317
+ [34.3308731933177, 44.54546040325087],
318
+ [34.340292537420794, 44.55798473830754],
319
+ [34.38042135640006, 44.631830317636684],
320
+ [34.41495238900856, 44.673669777529994],
321
+ [34.424193090575585, 44.68239452736094],
322
+ [34.42959198292681, 44.68884644523774],
323
+ [34.469399167794535, 44.730194532749294],
324
+ [34.47376422969597, 44.73011292571252],
325
+ [34.47376422969597, 44.72635887754967],
326
+ [34.475142670296464, 44.723502373339585],
327
+ [34.499724861011515, 44.74292382044041],
328
+ [34.532800295801195, 44.752620844929055],
329
+ [34.61217550038418, 44.76534519537847],
330
+ [34.65065696715081, 44.777088262503725],
331
+ [34.72084256772871, 44.811080759265764],
332
+ [34.756796893391225, 44.82094054159748],
333
+ [34.82646979041766, 44.81208604604609],
334
+ [34.84289620758207, 44.816893835303176],
335
+ [34.856910353686715, 44.82373813182468],
336
+ [34.889648317948144, 44.817871641692506],
337
+ [34.90733830566026, 44.820886440346584],
338
+ [34.922960632465504, 44.83050015059965],
339
+ [34.92950822531711, 44.83652826953224],
340
+ [34.94179932067178, 44.84019370922482],
341
+ [34.95282684547897, 44.841415470643284],
342
+ [34.98567967978991, 44.840275160795755],
343
+ [35.0053224583441, 44.83538786296728],
344
+ [35.017958163849414, 44.82219008824552],
345
+ [35.02703289780189, 44.80890779582285],
346
+ [35.037933245998005, 44.79869792240089],
347
+ [35.08073333784134, 44.793525442788905],
348
+ [35.1080207326404, 44.824553365795765],
349
+ [35.130368105574235, 44.86879838545747],
350
+ [35.15485200090768, 44.90071251697748],
351
+ [35.17111229780758, 44.90746386008772],
352
+ [35.21522068940149, 44.91421441031795],
353
+ [35.233163085981715, 44.925728224907715],
354
+ [35.25636688416236, 44.95896657181197],
355
+ [35.27300098099195, 44.96690119386028],
356
+ [35.29748487632534, 44.95605693543271],
357
+ [35.30496087491386, 44.96121482614441],
358
+ [35.315240372954605, 44.965711070514175],
359
+ [35.31935217217088, 44.96941359539801],
360
+ [35.36757236298112, 44.94362319076086],
361
+ [35.36103086422793, 44.97364475976596],
362
+ [35.362152264014156, 44.98593980935419],
363
+ [35.374674561627444, 44.997835734117416],
364
+ [35.389439658813274, 45.00180049366759],
365
+ [35.42270785247763, 45.00087540764923],
366
+ [35.43504325012745, 45.00470780964241],
367
+ [35.43504325012745, 45.011446929213974],
368
+ [35.40631957913584, 45.02015821022701],
369
+ [35.40089948016896, 45.025046135473445],
370
+ [35.39790908073891, 45.03482073400548],
371
+ [35.40052568024015, 45.042216617888045],
372
+ [35.40631957913584, 45.051328088783805],
373
+ [35.40744097892215, 45.06294640963205],
374
+ [35.41734667704213, 45.0708666385693],
375
+ [35.469304867139925, 45.10068964922732],
376
+ [35.5070260597534, 45.113341616151644],
377
+ [35.54758335202416, 45.12019982412133],
378
+ [35.59019654390909, 45.11993606213795],
379
+ [35.63411803553862, 45.11439677872579],
380
+ [35.70669729572677, 45.09480210570922],
381
+ [35.771782422456766, 45.06572995732262],
382
+ [35.78430472007, 45.057941041321754],
383
+ [35.81250040352472, 45.031852200991295],
384
+ [35.81941570220667, 45.021152336906454],
385
+ [35.82763930064016, 44.99895365027004],
386
+ [35.848198296721705, 44.99208088455586],
387
+ [35.916977483614176, 45.00172895661731],
388
+ [35.99360646900681, 44.997896355361604],
389
+ [36.00893226608571, 45.00926125333629],
390
+ [36.02539976723364, 45.03288661039673],
391
+ [36.047827762958946, 45.048074065419456],
392
+ [36.078666257082034, 45.03883000769565],
393
+ [36.079137312377895, 45.046610970582435],
394
+ [36.135020401727616, 45.02125162210126],
395
+ [36.2241716847341, 45.00751061631556],
396
+ [36.24398308095806, 45.011474706353084],
397
+ [36.24828178013877, 45.01649549321965],
398
+ [36.25332807917695, 45.03247980324494],
399
+ [36.25743987839326, 45.03842324279259],
400
+ [36.267158676549116, 45.043573724415154],
401
+ [36.2783726744118, 45.04555455542638],
402
+ [36.36740852558336, 45.04833265291825],
403
+ [36.44029951169139, 45.06787222615526],
404
+ [36.45375630913995, 45.07631970334319],
405
+ [36.455251508854985, 45.09202341204062],
406
+ [36.44142091149291, 45.10709638287736],
407
+ [36.41432041665814, 45.12872568311289],
408
+ [36.40852651776157, 45.149160473330085],
409
+ [36.409997342308856, 45.171615955386955],
410
+ [36.418312796420764, 45.23001671705953],
411
+ [36.42672329481775, 45.25186253492981],
412
+ [36.43756477765089, 45.27227491599612],
413
+ [36.4497132753354, 45.28542626329343],
414
+ [36.45905827355429, 45.28753019598713],
415
+ [36.4814862692796, 45.28845064200263],
416
+ [36.4909554290368, 45.29213135137758],
417
+ [36.49637552800283, 45.300940007322055],
418
+ [36.49394582846682, 45.305015191082816],
419
+ [36.48871262946426, 45.30935296803605],
420
+ [36.48460083024801, 45.315924724862185],
421
+ [36.489647129296515, 45.336413860372005],
422
+ [36.502169426909745, 45.34731734941451],
423
+ [36.52104632331191, 45.35033842661815],
424
+ [36.544281237819945, 45.34731734942025],
425
+ [36.57455903204905, 45.33601971904315],
426
+ [36.585399229982954, 45.333917585593355],
427
+ [36.59810088537549, 45.334837278577254],
428
+ [36.630808379142394, 45.34048649352954],
429
+ [36.637536777859964, 45.3511265071989],
430
+ [36.63099527910589, 45.3741073632589],
431
+ [36.61359545390113, 45.40895280985421],
432
+ [36.59845655678569, 45.421547717459106],
433
+ [36.58331765967199, 45.42731944465129],
434
+ [36.566309762912795, 45.42548305000767],
435
+ [36.54836736633254, 45.41210180010589],
436
+ [36.53285466928139, 45.4090840212946],
437
+ [36.51565987255873, 45.41957994832251],
438
+ [36.49117597722616, 45.44279525429408],
439
+ [36.47043008117939, 45.4458112314303],
440
+ [36.411182792482634, 45.43610707766504],
441
+ [36.391371396258705, 45.43991025572652],
442
+ [36.35959840231365, 45.45407156049933],
443
+ [36.33960010612526, 45.45695583486963],
444
+ [36.33025510790637, 45.454464879327446],
445
+ [36.32053630976225, 45.44856480887407],
446
+ [36.31156511147125, 45.4438443081136],
447
+ [36.29885591389362, 45.442795254299995],
448
+ [36.3072664122906, 45.46115087970253],
449
+ [36.30016421364425, 45.47320989503609],
450
+ [36.283717016779036, 45.476355300848866],
451
+ [36.267082919949445, 45.46704963343626],
452
+ [36.25213092279836, 45.46115087970253],
453
+ [36.13681364478941, 45.46219959214511],
454
+ [36.11700224855986, 45.45721803432335],
455
+ [36.097003952371466, 45.441483909606006],
456
+ [36.06952965760803, 45.43046741078453],
457
+ [36.0655449627526, 45.42553028973455],
458
+ [36.05134056545904, 45.39535242162091],
459
+ [36.022557970944945, 45.368441166003805],
460
+ [35.986486277818386, 45.362926059418186],
461
+ [35.94723728529826, 45.372380198658874],
462
+ [35.87220216002379, 45.404075760536614],
463
+ [35.85388596351393, 45.413916621802144],
464
+ [35.84715756479628, 45.426379251448395],
465
+ [35.8524047739447, 45.44386497541683],
466
+ [35.85950697259193, 45.45933624762881],
467
+ [35.857824872912545, 45.469953901705],
468
+ [35.83278027768503, 45.47087138287168],
469
+ [35.8167068807486, 45.46392436820739],
470
+ [35.80362388324218, 45.44963442058864],
471
+ [35.79469305616038, 45.42980210462429],
472
+ [35.791889556694684, 45.41209230278156],
473
+ [35.772265060435046, 45.39214572935421],
474
+ [35.767405661361295, 45.38873311015669],
475
+ [35.75189296431793, 45.386632934388984],
476
+ [35.7481549650407, 45.379938103368545],
477
+ [35.746846665290036, 45.369960021421576],
478
+ [35.74423006578874, 45.36076812520648],
479
+ [35.71619507113218, 45.34040932557082],
480
+ [35.69451467527287, 45.32989869277279],
481
+ [35.51720627467216, 45.29506847418358],
482
+ [35.48038698168983, 45.2979608697527],
483
+ [35.33194061536096, 45.371562726652314],
484
+ [35.04491375777232, 45.669545248704424],
485
+ [35.00230056589345, 45.7290693869553],
486
+ [34.70631294999043, 46.024929846739866],
487
+ [34.35868883309806, 46.106725558140795],
488
+ [34.00905273547181, 46.55925987559425]
489
+ ]
490
+ ]
491
+ }
492
+ }
493
+ }
494
+ },
495
+ "version": 8
496
+ }