forked from SUSTech-STA326/STA326_Assignment2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmap.html
More file actions
2088 lines (1494 loc) · 136 KB
/
map.html
File metadata and controls
2088 lines (1494 loc) · 136 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<script>
L_NO_TOUCH = false;
L_DISABLE_3D = false;
</script>
<style>html, body {width: 100%;height: 100%;margin: 0;padding: 0;}</style>
<style>#map {position:absolute;top:0;bottom:0;right:0;left:0;}</style>
<script src="https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js"></script>
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css"/>
<meta name="viewport" content="width=device-width,
initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<style>
#map_1f3be602d06a10003573fe27b7c2aef0 {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
.leaflet-container { font-size: 1rem; }
</style>
</head>
<body>
<div class="folium-map" id="map_1f3be602d06a10003573fe27b7c2aef0" ></div>
</body>
<script>
var map_1f3be602d06a10003573fe27b7c2aef0 = L.map(
"map_1f3be602d06a10003573fe27b7c2aef0",
{
center: [51.45054119578201, -0.9643232313363195],
crs: L.CRS.EPSG3857,
zoom: 13,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_d42019a1c5d6e002183018d8ca92b8ba = L.tileLayer(
"https://tile.openstreetmap.org/{z}/{x}/{y}.png",
{"attribution": "\u0026copy; \u003ca href=\"https://www.openstreetmap.org/copyright\"\u003eOpenStreetMap\u003c/a\u003e contributors", "detectRetina": false, "maxNativeZoom": 19, "maxZoom": 19, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abc", "tms": false}
);
tile_layer_d42019a1c5d6e002183018d8ca92b8ba.addTo(map_1f3be602d06a10003573fe27b7c2aef0);
var polygon_61bc60949a81d3759ff1202cca4a5794 = L.polygon(
[[51.46233424112636, -0.9674195894273825], [51.46108611918584, -0.9741522492296825], [51.45658471409391, -0.9753174349705782], [51.4533316919224, -0.9697507654750529], [51.454579842735626, -0.9630191652468901], [51.459080986831154, -0.9618531750496696]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#DC1a3C", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 3}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);
polygon_61bc60949a81d3759ff1202cca4a5794.bindTooltip(
`<div>
Contains about 80 percent orders
</div>`,
{"sticky": true}
);
var polygon_2a427fa116cf7f80faa8b8eb2a8b3ef5 = L.polygon(
[[51.45257385379414, -0.9507230105639873], [51.451326392230655, -0.957453955291134], [51.4468250230316, -0.9586200902493034], [51.44357137656247, -0.9530560843042358], [51.44481886728639, -0.9463261989134449], [51.449319975302565, -0.945159260240901]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#DC843C", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 3}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);
polygon_2a427fa116cf7f80faa8b8eb2a8b3ef5.bindTooltip(
`<div>
Contains about 80 percent orders
</div>`,
{"sticky": true}
);
var polygon_ac04684b7ab7d543c3a80ae63b6a494c = L.polygon(
[[51.45658471409391, -0.9753174349705782], [51.4553358737925, -0.9820496902053623], [51.450833982552886, -0.9832142165311876], [51.44758119256423, -0.9776472922484972], [51.44883006164886, -0.9709160963176241], [51.4533316919224, -0.9697507654750529]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#DC953C", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 3}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);
polygon_ac04684b7ab7d543c3a80ae63b6a494c.bindTooltip(
`<div>
Contains about 80 percent orders
</div>`,
{"sticky": true}
);
var polygon_651b71efcc4bec5567707497b6230a50 = L.polygon(
[[51.454579842735626, -0.9630191652468901], [51.4533316919224, -0.9697507654750529], [51.44883006164886, -0.9709160963176241], [51.44557684324654, -0.9653506311571627], [51.4468250230316, -0.9586200902493034], [51.451326392230655, -0.957453955291134]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#DCa03C", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 3}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);
polygon_651b71efcc4bec5567707497b6230a50.bindTooltip(
`<div>
Contains about 80 percent orders
</div>`,
{"sticky": true}
);
var polygon_2a00c1e1e043bbeffa5d8b3dfb773524 = L.polygon(
[[51.46032841933335, -0.9551211707321967], [51.459080986831154, -0.9618531750496696], [51.454579842735626, -0.9630191652468901], [51.451326392230655, -0.957453955291134], [51.45257385379414, -0.9507230105639873], [51.457074736784854, -0.9495562163118216]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#DCa73C", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 3}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);
polygon_2a00c1e1e043bbeffa5d8b3dfb773524.bindTooltip(
`<div>
Contains about 80 percent orders
</div>`,
{"sticky": true}
);
var polygon_89bd3373cf0f4f76b4af5dfbeb37ccab = L.polygon(
[[51.44481886728639, -0.9463261989134449], [51.44357137656247, -0.9530560843042358], [51.43906978240646, -0.9542223638660726], [51.43581594021884, -0.9486595615205721], [51.43706346020219, -0.941930735212211], [51.4415647930973, -0.9407636522764081]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#DCa93C", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 3}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);
polygon_89bd3373cf0f4f76b4af5dfbeb37ccab.bindTooltip(
`<div>
Contains about 80 percent orders
</div>`,
{"sticky": true}
);
var polygon_1653c28c4e80357cf1df7b7934431d70 = L.polygon(
[[51.4505667478549, -0.9384289715086821], [51.449319975302565, -0.945159260240901], [51.44481886728639, -0.9463261989134449], [51.4415647930973, -0.9407636522764081], [51.44281159499859, -0.9340344228962505], [51.44731244172359, -0.9328666809106131]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#DCd23C", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 3}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);
polygon_1653c28c4e80357cf1df7b7934431d70.bindTooltip(
`<div>
Contains about 80 percent orders
</div>`,
{"sticky": true}
);
var polygon_14d14abb0843d988a8ffd7b3b1c150e0 = L.polygon(
[[51.470088217811636, -0.9718213633595971], [51.4688401246446, -0.9785550829899539], [51.4643389448808, -0.9797201234716127], [51.46108611918584, -0.9741522492296825], [51.46233424112636, -0.9674195894273825], [51.46683515997185, -0.9662537441485451]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#DCd93C", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 3}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);
polygon_14d14abb0843d988a8ffd7b3b1c150e0.bindTooltip(
`<div>
Contains about 80 percent orders
</div>`,
{"sticky": true}
);
var polygon_9551a0113c705bdb4b696d5c5f50c48d = L.polygon(
[[51.45832148008727, -0.9428248679734373], [51.457074736784854, -0.9495562163118216], [51.45257385379414, -0.9507230105639873], [51.449319975302565, -0.945159260240901], [51.4505667478549, -0.9384289715086821], [51.45506736963244, -0.9372613736029796]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#DCdb3C", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 3}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);
polygon_9551a0113c705bdb4b696d5c5f50c48d.bindTooltip(
`<div>
Contains about 80 percent orders
</div>`,
{"sticky": true}
);
var polygon_7c33711d2b00003e4b5578b174cc2dfb = L.polygon(
[[51.4468250230316, -0.9586200902493034], [51.44557684324654, -0.9653506311571627], [51.44107498793794, -0.9665161069439623], [51.4378215735505, -0.9609518457074303], [51.43906978240646, -0.9542223638660726], [51.44357137656247, -0.9530560843042358]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#DCde3C", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 3}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);
polygon_7c33711d2b00003e4b5578b174cc2dfb.bindTooltip(
`<div>
Contains about 80 percent orders
</div>`,
{"sticky": true}
);
var polygon_909c6ef22e2d0752bffc037a7866efc6 = L.polygon(
[[51.4643389448808, -0.9797201234716127], [51.46309013326342, -0.9864534382640078], [51.45858846728357, -0.98761781914732], [51.4553358737925, -0.9820496902053623], [51.45658471409391, -0.9753174349705782], [51.46108611918584, -0.9741522492296825]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#DCed3C", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 3}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);
polygon_909c6ef22e2d0752bffc037a7866efc6.bindTooltip(
`<div>
Contains about 80 percent orders
</div>`,
{"sticky": true}
);
var polygon_61fd43ec4dd8852b500b9347c9689216 = L.polygon(
[[51.44883006164886, -0.9709160963176241], [51.44758119256423, -0.9776472922484972], [51.44307907621147, -0.978811963859217], [51.439826089970985, -0.9732462438246055], [51.44107498793794, -0.9665161069439623], [51.44557684324654, -0.9653506311571627]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#DCf53C", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 3}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);
polygon_61fd43ec4dd8852b500b9347c9689216.bindTooltip(
`<div>
Contains about 80 percent orders
</div>`,
{"sticky": true}
);
var polygon_ca6ea481cae595cc6808360b57d23f90 = L.polygon(
[[51.45858846728357, -0.98761781914732], [51.45733893725557, -0.9943507288938785], [51.452836785158475, -0.9955144503018267], [51.44958442393033, -0.9899460669905841], [51.450833982552886, -0.9832142165311876], [51.4553358737925, -0.9820496902053623]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#DCf93C", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 3}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);
polygon_ca6ea481cae595cc6808360b57d23f90.bindTooltip(
`<div>
Contains about 80 percent orders
</div>`,
{"sticky": true}
);
var polygon_7c29cb1b851c952687b6c189e8736a93 = L.polygon(
[[51.43532374865167, -0.9744110605626837], [51.434074132542555, -0.9811407932083569], [51.42957130531146, -0.9823049510204259], [51.42631835526492, -0.976740180192182], [51.427568000265914, -0.9700115060731906], [51.432070566405095, -0.9688465443651438]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#DCf93C", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 3}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);
polygon_7c29cb1b851c952687b6c189e8736a93.bindTooltip(
`<div>
Contains about 80 percent orders
</div>`,
{"sticky": true}
);
var polygon_07d8d7e1ff9f2a69f4e931ec9307ead0 = L.polygon(
[[51.456313423973754, -0.9305306817374712], [51.45506736963244, -0.9372613736029796], [51.4505667478549, -0.9384289715086821], [51.44731244172359, -0.9328666809106131], [51.44855852550339, -0.9261370486667562], [51.45305888595956, -0.924968647508941]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#DCfe3C", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 3}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);
polygon_07d8d7e1ff9f2a69f4e931ec9307ead0.bindTooltip(
`<div>
Contains about 80 percent orders
</div>`,
{"sticky": true}
);
var polygon_9bc8f4793310f901838b6c95b328937e = L.polygon(
[[51.46059110171932, -0.9999203171883535], [51.459340881726426, -1.0066538809513756], [51.45483846888045, -1.007816797040404], [51.451586536759706, -1.002246954794795], [51.452836785158475, -0.9955144503018267], [51.45733893725557, -0.9943507288938785]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#DCfe3C", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 3}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);
polygon_9bc8f4793310f901838b6c95b328937e.bindTooltip(
`<div>
Contains about 80 percent orders
</div>`,
{"sticky": true}
);
var polygon_d7fe96290b71308b020f6c8624a69b3e = L.polygon(
[[51.452836785158475, -0.9955144503018267], [51.451586536759706, -1.002246954794795], [51.447083898644216, -1.0034100168504345], [51.44383176973803, -0.9978413795005481], [51.445082046641915, -0.9911099340242325], [51.44958442393033, -0.9899460669905841]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#DC103C", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 3}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);
polygon_d7fe96290b71308b020f6c8624a69b3e.bindTooltip(
`<div>
Contains about 80 percent orders
</div>`,
{"sticky": true}
);
var polygon_49fd4a7109a0ef3fac18273c97aac2cc = L.polygon(
[[51.44107498793794, -0.9665161069439623], [51.439826089970985, -0.9732462438246055], [51.43532374865167, -0.9744110605626837], [51.432070566405095, -0.9688465443651438], [51.43331949335346, -0.9621174662810845], [51.4378215735505, -0.9609518457074303]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#DC103C", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 3}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);
polygon_49fd4a7109a0ef3fac18273c97aac2cc.bindTooltip(
`<div>
Contains about 80 percent orders
</div>`,
{"sticky": true}
);
var polygon_b5562e9a740ac9013ac28fccefb0d5e7 = L.polygon(
[[51.450833982552886, -0.9832142165311876], [51.44958442393033, -0.9899460669905841], [51.445082046641915, -0.9911099340242325], [51.44182948889518, -0.9855427552849925], [51.44307907621147, -0.978811963859217], [51.44758119256423, -0.9776472922484972]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#DC103C", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 3}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);
polygon_b5562e9a740ac9013ac28fccefb0d5e7.bindTooltip(
`<div>
Contains about 80 percent orders
</div>`,
{"sticky": true}
);
var polygon_526d3a48ec72bd0f0a3725a27bd85faa = L.polygon(
[[51.473829681112164, -0.9516207067338788], [51.4725829960122, -0.9583541750471255], [51.468082563511864, -0.9595206799866929], [51.46482907715207, -0.9539545210576592], [51.46607579130368, -0.9472221128589419], [51.470575962746985, -0.9460548035843688]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#DC103C", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 3}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);
polygon_526d3a48ec72bd0f0a3725a27bd85faa.bindTooltip(
`<div>
Contains about 80 percent orders
</div>`,
{"sticky": true}
);
var polygon_8060dcd1d74b4da2f23c4be481ed8f1a = L.polygon(
[[51.468082563511864, -0.9595206799866929], [51.46683515997185, -0.9662537441485451], [51.46233424112636, -0.9674195894273825], [51.459080986831154, -0.9618531750496696], [51.46032841933335, -0.9551211707321967], [51.46482907715207, -0.9539545210576592]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#DC103C", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 3}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);
polygon_8060dcd1d74b4da2f23c4be481ed8f1a.bindTooltip(
`<div>
Contains about 80 percent orders
</div>`,
{"sticky": true}
);
var polygon_eff91eb4023a4ccf6749d3f7a3d79139 = L.polygon(
[[51.44855852550339, -0.9261370486667562], [51.44731244172359, -0.9328666809106131], [51.44281159499859, -0.9340344228962505], [51.43955709343632, -0.9284733356593977], [51.440803206753586, -0.9217447627829642], [51.44530379207923, -0.9205762178855526]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#DC103C", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 3}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);
polygon_eff91eb4023a4ccf6749d3f7a3d79139.bindTooltip(
`<div>
Contains about 80 percent orders
</div>`,
{"sticky": true}
);
var polygon_d283b732dbd2759a335bfa9189725e14 = L.polygon(
[[51.47583628593767, -0.9639215388963942], [51.47458891126061, -0.9706556631566758], [51.470088217811636, -0.9718213633595971], [51.46683515997185, -0.9662537441485451], [51.468082563511864, -0.9595206799866929], [51.4725829960122, -0.9583541750471255]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#DC103C", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 3}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);
polygon_d283b732dbd2759a335bfa9189725e14.bindTooltip(
`<div>
Contains about 80 percent orders
</div>`,
{"sticky": true}
);
var polygon_040077b5d77d937db3bf4e58d095b240 = L.polygon(
[[51.47784177239928, -0.9762244876127197], [51.47659370790649, -0.982959267325072], [51.47209275361731, -0.9841241623897607], [51.4688401246446, -0.9785550829899539], [51.470088217811636, -0.9718213633595971], [51.47458891126061, -0.9706556631566758]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "green", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 1}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);
polygon_040077b5d77d937db3bf4e58d095b240.bindTooltip(
`<div>
Contains about 20 percent orders
</div>`,
{"sticky": true}
);
var polygon_7ac6b8e8d075fa140c3409c53404b5d7 = L.polygon(
[[51.43906978240646, -0.9542223638660726], [51.4378215735505, -0.9609518457074303], [51.43331949335346, -0.9621174662810845], [51.43006588322657, -0.9565544085575289], [51.43131412125244, -0.9498259855289186], [51.43581594021884, -0.9486595615205721]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "green", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 1}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);
polygon_7ac6b8e8d075fa140c3409c53404b5d7.bindTooltip(
`<div>
Contains about 20 percent orders
</div>`,
{"sticky": true}
);
var polygon_53469dcd0128f6299b7dbd9177950e6b = L.polygon(
[[51.43131412125244, -0.9498259855289186], [51.43006588322657, -0.9565544085575289], [51.425563578287736, -0.9577201737608355], [51.42230977266705, -0.9521583191394177], [51.42355803996182, -0.945430954669842], [51.42806008359195, -0.9442643863720478]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "green", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 1}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);
polygon_53469dcd0128f6299b7dbd9177950e6b.bindTooltip(
`<div>
Contains about 20 percent orders
</div>`,
{"sticky": true}
);
var polygon_4b942fd890825b98b05fda7afa81e9eb = L.polygon(
[[51.466342530011154, -0.9920227722765995], [51.46509302847852, -0.9987567415638836], [51.46059110171932, -0.9999203171883535], [51.45733893725557, -0.9943507288938785], [51.45858846728357, -0.98761781914732], [51.46309013326342, -0.9864534382640078]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "green", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 1}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);
polygon_4b942fd890825b98b05fda7afa81e9eb.bindTooltip(
`<div>
Contains about 20 percent orders
</div>`,
{"sticky": true}
);
var polygon_538a8ef8a8916dcf9880862eb3ab7daa = L.polygon(
[[51.479846139911224, -0.9885295522943797], [51.47859738536414, -0.9952649869633675], [51.47409617034335, -0.9964290764882627], [51.47084397058474, -0.990858536993556], [51.47209275361731, -0.9841241623897607], [51.47659370790649, -0.982959267325072]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "green", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 1}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);
polygon_538a8ef8a8916dcf9880862eb3ab7daa.bindTooltip(
`<div>
Contains about 20 percent orders
</div>`,
{"sticky": true}
);
var polygon_e33f184da9ce6ab2c02d8c858964245b = L.polygon(
[[51.42930763293372, -0.9375366188922224], [51.42806008359195, -0.9442643863720478], [51.42355803996182, -0.945430954669842], [51.42030380707402, -0.9398705582908482], [51.421551385873144, -0.933143849385712], [51.4260531680863, -0.9319764783942915]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "green", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 1}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);
polygon_e33f184da9ce6ab2c02d8c858964245b.bindTooltip(
`<div>
Contains about 20 percent orders
</div>`,
{"sticky": true}
);
var polygon_84b1a854b640d0556dfd8848fe5e436c = L.polygon(
[[51.43706346020219, -0.941930735212211], [51.43581594021884, -0.9486595615205721], [51.43131412125244, -0.9498259855289186], [51.42806008359195, -0.9442643863720478], [51.42930763293372, -0.9375366188922224], [51.43380919056114, -0.9363693918501719]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "green", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 1}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);
polygon_84b1a854b640d0556dfd8848fe5e436c.bindTooltip(
`<div>
Contains about 20 percent orders
</div>`,
{"sticky": true}
);
var polygon_7c26f2801c21a3a35920049dcc663899 = L.polygon(
[[51.42381765805615, -0.9901977782322906], [51.42256660578232, -0.9969267017852713], [51.41806280702475, -0.9980895421136016], [51.414810321555606, -0.992524263014619], [51.41606140254228, -0.9857963974483128], [51.420564940268754, -0.9846327531036081]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "green", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 1}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);
polygon_7c26f2801c21a3a35920049dcc663899.bindTooltip(
`<div>
Contains about 20 percent orders
</div>`,
{"sticky": true}
);
var polygon_fe4ecb817602578f8c53a0d6ce364944 = L.polygon(
[[51.42957130531146, -0.9823049510204259], [51.428320971100014, -0.9890342792234931], [51.42381765805615, -0.9901977782322906], [51.420564940268754, -0.9846327531036081], [51.421815303282585, -0.977904483157232], [51.42631835526492, -0.976740180192182]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "green", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 1}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);
polygon_fe4ecb817602578f8c53a0d6ce364944.bindTooltip(
`<div>
Contains about 20 percent orders
</div>`,
{"sticky": true}
);
var polygon_bd1c16b0d8ef57da278113d83b9fe45f = L.polygon(
[[51.440803206753586, -0.9217447627829642], [51.43955709343632, -0.9284733356593977], [51.4350560219104, -0.9296412215680129], [51.4318013251627, -0.9240813372813469], [51.4330474681164, -0.917353823518131], [51.437548278164975, -0.9161851350378828]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "green", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 1}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);
polygon_bd1c16b0d8ef57da278113d83b9fe45f.bindTooltip(
`<div>
Contains about 20 percent orders
</div>`,
{"sticky": true}
);
var polygon_a475e013753bd9a1e245cf43b54f2dc9 = L.polygon(
[[51.47209275361731, -0.9841241623897607], [51.47084397058474, -0.990858536993556], [51.466342530011154, -0.9920227722765995], [51.46309013326342, -0.9864534382640078], [51.4643389448808, -0.9797201234716127], [51.4688401246446, -0.9785550829899539]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "green", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 1}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);
polygon_a475e013753bd9a1e245cf43b54f2dc9.bindTooltip(
`<div>
Contains about 20 percent orders
</div>`,
{"sticky": true}
);
var polygon_ef8cf8c76b5b9cb23de3626ca6302520 = L.polygon(
[[51.427568000265914, -0.9700115060731906], [51.42631835526492, -0.976740180192182], [51.421815303282585, -0.977904483157232], [51.418562157454765, -0.9723409156683347], [51.41981183144666, -0.965613299822586], [51.42431462225898, -0.9644481933018522]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "green", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 1}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);
polygon_ef8cf8c76b5b9cb23de3626ca6302520.bindTooltip(
`<div>
Contains about 20 percent orders
</div>`,
{"sticky": true}
);
var polygon_945b38cc1503602f87fa7d6e16e4f3b5 = L.polygon(
[[51.425563578287736, -0.9577201737608355], [51.42431462225898, -0.9644481933018522], [51.41981183144666, -0.965613299822586], [51.416558257925054, -0.9600511900667946], [51.41780724313314, -0.9533242288152574], [51.42230977266705, -0.9521583191394177]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "green", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 1}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);
polygon_945b38cc1503602f87fa7d6e16e4f3b5.bindTooltip(
`<div>
Contains about 20 percent orders
</div>`,
{"sticky": true}
);
var polygon_899eb514a5cc8ba2601b4491de0f245c = L.polygon(
[[51.46259261681592, -1.012224928503937], [51.46134170661987, -1.018959145787654], [51.45683903313376, -1.020121256156723], [51.45358753046727, -1.0145499550714774], [51.45483846888045, -1.007816797040404], [51.459340881726426, -1.0066538809513756]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "green", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 1}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);
polygon_899eb514a5cc8ba2601b4491de0f245c.bindTooltip(
`<div>
Contains about 20 percent orders
</div>`,
{"sticky": true}
);
var polygon_a477cb3120f90e78fe654160e154e421 = L.polygon(
[[51.44654918732517, -0.9138472426230629], [51.44530379207923, -0.9205762178855526], [51.440803206753586, -0.9217447627829642], [51.437548278164975, -0.9161851350378828], [51.4387937031369, -0.9094572191578383], [51.443294026955044, -0.9082878717500003]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "green", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 1}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);
polygon_a477cb3120f90e78fe654160e154e421.bindTooltip(
`<div>
Contains about 20 percent orders
</div>`,
{"sticky": true}
);
var polygon_2d26f5e0474701fdb91f4755dc25c6bf = L.polygon(
[[51.46406790177281, -0.9349256625632676], [51.46282187677091, -0.9416574143047192], [51.45832148008727, -0.9428248679734373], [51.45506736963244, -0.9372613736029796], [51.456313423973754, -0.9305306817374712], [51.46081355941403, -0.9293624244761365]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "green", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 1}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);
polygon_2d26f5e0474701fdb91f4755dc25c6bf.bindTooltip(
`<div>
Contains about 20 percent orders
</div>`,
{"sticky": true}
);
var polygon_bf6d26598b1714f16e5c780d63753950 = L.polygon(
[[51.4855949044972, -0.9806289627561398], [51.484346868579344, -0.9873648028044738], [51.479846139911224, -0.9885295522943797], [51.47659370790649, -0.982959267325072], [51.47784177239928, -0.9762244876127197], [51.48234224030534, -0.9750589326433398]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "green", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 1}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);
polygon_bf6d26598b1714f16e5c780d63753950.bindTooltip(
`<div>
Contains about 20 percent orders
</div>`,
{"sticky": true}
);
var polygon_afadcc8a7692bee7aef7dd0f4c31a5fd = L.polygon(
[[51.45430425157849, -0.9182386126096636], [51.45305888595956, -0.924968647508941], [51.44855852550339, -0.9261370486667562], [51.44530379207923, -0.9205762178855526], [51.44654918732517, -0.9138472426230629], [51.45104928635185, -0.9126780386146259]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "green", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 1}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);
polygon_afadcc8a7692bee7aef7dd0f4c31a5fd.bindTooltip(
`<div>
Contains about 20 percent orders
</div>`,
{"sticky": true}
);
var polygon_0dc02f62231b838b966088011bea0ac7 = L.polygon(
[[51.421815303282585, -0.977904483157232], [51.420564940268754, -0.9846327531036081], [51.41606140254228, -0.9857963974483128], [51.412808488952784, -0.9802325755719475], [51.41405888086795, -0.9735053636290363], [51.418562157454765, -0.9723409156683347]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "green", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 1}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);
polygon_0dc02f62231b838b966088011bea0ac7.bindTooltip(
`<div>
Contains about 20 percent orders
</div>`,
{"sticky": true}
);
var polygon_d0102c3fd80f3bd3b6c2d45254927751 = L.polygon(
[[51.44281159499859, -0.9340344228962505], [51.4415647930973, -0.9407636522764081], [51.43706346020219, -0.941930735212211], [51.43380919056114, -0.9363693918501719], [51.4350560219104, -0.9296412215680129], [51.43955709343632, -0.9284733356593977]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "green", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 1}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);
polygon_d0102c3fd80f3bd3b6c2d45254927751.bindTooltip(
`<div>
Contains about 20 percent orders
</div>`,
{"sticky": true}
);
var polygon_9860ed568b31ad2cd823727c6fbe28f4 = L.polygon(
[[51.43331949335346, -0.9621174662810845], [51.432070566405095, -0.9688465443651438], [51.427568000265914, -0.9700115060731906], [51.42431462225898, -0.9644481933018522], [51.425563578287736, -0.9577201737608355], [51.43006588322657, -0.9565544085575289]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "green", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 1}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);
polygon_9860ed568b31ad2cd823727c6fbe28f4.bindTooltip(
`<div>
Contains about 20 percent orders
</div>`,
{"sticky": true}
);
var polygon_77679415437ce52ca632cb1d3a5131a0 = L.polygon(
[[51.449084631633426, -1.015712211748231], [51.447832974839926, -1.0224449638398974], [51.443329590117216, -1.0236065612275815], [51.440078122859255, -1.018036212071681], [51.44132980787971, -1.0113045187085727], [51.445832931914595, -1.010142115882202]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "green", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 1}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);
polygon_77679415437ce52ca632cb1d3a5131a0.bindTooltip(
`<div>
Contains about 20 percent orders
</div>`,
{"sticky": true}
);
var polygon_b8adf60bae8a5382a5840133ae13a88b = L.polygon(
[[51.447083898644216, -1.0034100168504345], [51.445832931914595, -1.010142115882202], [51.44132980787971, -1.0113045187085727], [51.43807791135447, -1.0057356276506038], [51.43932890649972, -0.9990045873649386], [51.44383176973803, -0.9978413795005481]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "green", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 1}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);
polygon_b8adf60bae8a5382a5840133ae13a88b.bindTooltip(
`<div>
Contains about 20 percent orders
</div>`,
{"sticky": true}
);
var polygon_0abfb40b1a0b872c800e1331e0492584 = L.polygon(
[[51.42730002898243, -0.9252493669561035], [51.4260531680863, -0.9319764783942915], [51.421551385873144, -0.933143849385712], [51.41829672606489, -0.9275849113411399], [51.41954361660678, -0.9208588584929681], [51.424045137294776, -0.9196906852087792]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "green", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 1}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);
polygon_0abfb40b1a0b872c800e1331e0492584.bindTooltip(
`<div>
Contains about 20 percent orders
</div>`,
{"sticky": true}
);
var polygon_47d8c146ef3e3b10b4283a8abc12f7ed = L.polygon(
[[51.41780724313314, -0.9533242288152574], [51.416558257925054, -0.9600511900667946], [51.41205524258632, -0.9612164412430707], [51.40880147379574, -0.955655534092255], [51.41005048828205, -0.9489296308767483], [51.41455324226432, -0.9477635768853486]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "green", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 1}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);
polygon_47d8c146ef3e3b10b4283a8abc12f7ed.bindTooltip(
`<div>
Contains about 20 percent orders
</div>`,
{"sticky": true}
);
var polygon_119b87968ab814f4fdaf166eeb3946fc = L.polygon(
[[51.45483846888045, -1.007816797040404], [51.45358753046727, -1.0145499550714774], [51.449084631633426, -1.015712211748231], [51.445832931914595, -1.010142115882202], [51.447083898644216, -1.0034100168504345], [51.451586536759706, -1.002246954794795]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "green", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 1}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);
polygon_119b87968ab814f4fdaf166eeb3946fc.bindTooltip(
`<div>
Contains about 20 percent orders
</div>`,
{"sticky": true}
);
var polygon_950a2c5e9edbd30d3e620ed952aee057 = L.polygon(
[[51.48358958621871, -0.9683237480305151], [51.48234224030534, -0.9750589326433398], [51.47784177239928, -0.9762244876127197], [51.47458891126061, -0.9706556631566758], [51.47583628593767, -0.9639215388963942], [51.48033649297319, -0.9627551788492759]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "green", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 1}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);
polygon_950a2c5e9edbd30d3e620ed952aee057.bindTooltip(
`<div>
Contains about 20 percent orders
</div>`,
{"sticky": true}
);
var polygon_7b80c7721821d8685f191f45251d9e94 = L.polygon(
[[51.487328807222795, -0.94811869725764], [51.486082869644186, -0.9548536301530913], [51.481583149120745, -0.9560206501672621], [51.47832962716871, -0.9504535420108151], [51.4795755937892, -0.9437196697544302], [51.48407505330337, -0.9425518451251487]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "green", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 1}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);
polygon_7b80c7721821d8685f191f45251d9e94.bindTooltip(
`<div>
Contains about 20 percent orders
</div>`,
{"sticky": true}
);
var polygon_fd95f2b52b4ca35aabe16236c1acb2bf = L.polygon(
[[51.445082046641915, -0.9911099340242325], [51.44383176973803, -0.9978413795005481], [51.43932890649972, -0.9990045873649386], [51.43607658105397, -0.9934371544996752], [51.43732688656207, -0.9867067677866462], [51.44182948889518, -0.9855427552849925]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "green", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 1}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);
polygon_fd95f2b52b4ca35aabe16236c1acb2bf.bindTooltip(
`<div>
Contains about 20 percent orders
</div>`,
{"sticky": true}
);
var polygon_a493bccc9d2e13fe9f26c209b6df7207 = L.polygon(
[[51.481299937804934, -0.9112216702740125], [51.48005606794023, -0.9179546309740494], [51.47555713076936, -0.9191240636274798], [51.472302324780614, -0.9135613390995897], [51.47354622425319, -0.9068294390845814], [51.47804490009021, -0.9056592030222337]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "green", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 1}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);
polygon_a493bccc9d2e13fe9f26c209b6df7207.bindTooltip(
`<div>
Contains about 20 percent orders
</div>`,
{"sticky": true}
);
var polygon_f43c9449b6cbba6d6b4da4a026bfe911 = L.polygon(
[[51.44453873390593, -0.9015595539614184], [51.443294026955044, -0.9082878717500003], [51.4387937031369, -0.9094572191578383], [51.435538347868714, -0.9038990509956638], [51.43678308473402, -0.8971717926041514], [51.44128314693669, -0.8960016430873396]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "green", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 1}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);
polygon_f43c9449b6cbba6d6b4da4a026bfe911.bindTooltip(
`<div>
Contains about 20 percent orders
</div>`,
{"sticky": true}
);
var polygon_4c42eb420881d2b2ef180984b3860a6f = L.polygon(
[[51.4330474681164, -0.917353823518131], [51.4318013251627, -0.9240813372813469], [51.42730002898243, -0.9252493669561035], [51.424045137294776, -0.9196906852087792], [51.425291309983784, -0.9129642303046451], [51.42979234460876, -0.9117953983982504]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "green", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 1}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);
polygon_4c42eb420881d2b2ef180984b3860a6f.bindTooltip(
`<div>
Contains about 20 percent orders
</div>`,
{"sticky": true}
);
var polygon_f9e8bb6bfb95f023b0e1e96cb61933bd = L.polygon(
[[51.443329590117216, -1.0236065612275815], [51.44207721498358, -1.030338907172437], [51.43757334447103, -1.0314998453943076], [51.43432210973284, -1.0259292432790337], [51.435574513003964, -1.0191979557919344], [51.440078122859255, -1.018036212071681]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "green", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 1}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);
polygon_f9e8bb6bfb95f023b0e1e96cb61933bd.bindTooltip(
`<div>
Contains about 20 percent orders
</div>`,
{"sticky": true}
);
var polygon_e64e9365d2a07111dff28535f7d7791f = L.polygon(
[[51.451084245024575, -1.0280165181270848], [51.449831897929215, -1.034749922782627], [51.445328252627505, -1.0359107143309507], [51.44207721498358, -1.030338907172437], [51.443329590117216, -1.0236065612275815], [51.447832974839926, -1.0224449638398974]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "green", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 1}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);
polygon_e64e9365d2a07111dff28535f7d7791f.bindTooltip(
`<div>
Contains about 20 percent orders
</div>`,
{"sticky": true}
);
var polygon_58561c40eb6e52bdae3432ebacc71c7e = L.polygon(
[[51.44252716583136, -0.8892739832646752], [51.44128314693669, -0.8960016430873396], [51.43678308473402, -0.8971717926041514], [51.43352730313307, -0.891615084115466], [51.43477135213058, -0.8848884837041994], [51.43927115260983, -0.8837175324798667]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "green", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 1}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);
polygon_58561c40eb6e52bdae3432ebacc71c7e.bindTooltip(
`<div>
Contains about 20 percent orders
</div>`,
{"sticky": true}
);
var polygon_9516b14c0c4b9ed337a3cb47f4f33651 = L.polygon(
[[51.40630203846015, -0.9691075918680558], [51.405051617544736, -0.975833746060665], [51.40054763089358, -0.9769976806051393], [51.39729432643723, -0.9714362640022443], [51.39854477645178, -0.9647111673067683], [51.40304850180706, -0.9635464298262776]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "green", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 1}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);
polygon_9516b14c0c4b9ed337a3cb47f4f33651.bindTooltip(
`<div>
Contains about 20 percent orders
</div>`,
{"sticky": true}
);
var polygon_840ee8a679fe0dfc8f7dfad8e3719920 = L.polygon(
[[51.47609846740423, -1.0087361050652026], [51.47484830392525, -1.0154717881287554], [51.47034634205808, -1.0166344118104897], [51.46709480424576, -1.0110621585395365], [51.46834499593204, -1.0043275352529701], [51.47284669720677, -1.0031641055699279]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "green", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 1}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);
polygon_840ee8a679fe0dfc8f7dfad8e3719920.bindTooltip(
`<div>
Contains about 20 percent orders
</div>`,
{"sticky": true}
);
var polygon_0e96aa8084261919bf3f9f84fc55e3b3 = L.polygon(
[[51.43157349283949, -0.9946005080150928], [51.4303224691795, -1.0013304898078186], [51.425818895182694, -1.0024931844598968], [51.42256660578232, -0.9969267017852713], [51.42381765805615, -0.9901977782322906], [51.428320971100014, -0.9890342792234931]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "green", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 1}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);
polygon_0e96aa8084261919bf3f9f84fc55e3b3.bindTooltip(
`<div>
Contains about 20 percent orders
</div>`,
{"sticky": true}
);
var polygon_e4cb979d3b39cd6bbf825cf6c493eb5f = L.polygon(
[[51.4795755937892, -0.9437196697544302], [51.47832962716871, -0.9504535420108151], [51.473829681112164, -0.9516207067338788], [51.470575962746985, -0.9460548035843688], [51.47182195850858, -0.9393219917126664], [51.47632164347779, -0.938154022715492]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "green", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 1}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);
polygon_e4cb979d3b39cd6bbf825cf6c493eb5f.bindTooltip(
`<div>
Contains about 20 percent orders
</div>`,
{"sticky": true}
);
var polygon_a58cc6ba95ab67b75b4347b9c01ba47d = L.polygon(
[[51.47034634205808, -1.0166344118104897], [51.469095459979904, -1.0233696886001498], [51.464593011988136, -1.0245316525033845], [51.46134170661987, -1.018959145787654], [51.46259261681592, -1.012224928503937], [51.46709480424576, -1.0110621585395365]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "green", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 1}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);
polygon_a58cc6ba95ab67b75b4347b9c01ba47d.bindTooltip(
`<div>
Contains about 20 percent orders
</div>`,
{"sticky": true}
);
var polygon_2c8fe1c8c32527d2e425f601288776ed = L.polygon(
[[51.48933619493747, -0.960421943728338], [51.48808956764306, -0.9671575330334359], [51.48358958621871, -0.9683237480305151], [51.48033649297319, -0.9627551788492759], [51.481583149120745, -0.9560206501672621], [51.486082869644186, -0.9548536301530913]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "green", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 1}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);
polygon_2c8fe1c8c32527d2e425f601288776ed.bindTooltip(
`<div>
Contains about 20 percent orders
</div>`,
{"sticky": true}
);
var polygon_5fb15363fca77b9cc40e22e682ed3221 = L.polygon(
[[51.482098634741725, -1.0456698717531796], [51.48084639880605, -1.0524075137816469], [51.47634365581467, -1.0535677170520419], [51.4730934090081, -1.0479910856084076], [51.474345672584555, -1.041254503302781], [51.47884815531015, -1.040093492827429]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "green", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 1}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);
polygon_5fb15363fca77b9cc40e22e682ed3221.bindTooltip(
`<div>
Contains about 20 percent orders
</div>`,
{"sticky": true}
);
var polygon_afd2052c88cfe0992503f94ee058cacd = L.polygon(
[[51.44732579482588, -1.0482169774267664], [51.446072038752185, -1.0549506270463211], [51.441567647251865, -1.0561099530700706], [51.438317272248035, -1.050536435882821], [51.43957105608184, -1.0438038446844844], [51.44407518714276, -1.042643712361457]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "green", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 1}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);
polygon_afd2052c88cfe0992503f94ee058cacd.bindTooltip(
`<div>
Contains about 20 percent orders
</div>`,
{"sticky": true}
);
var polygon_a2b271e00fee8ed5704e1559bc8ee5bd = L.polygon(
[[51.45683903313376, -1.020121256156723], [51.45558740446801, -1.0268550672300594], [51.451084245024575, -1.0280165181270848], [51.447832974839926, -1.0224449638398974], [51.449084631633426, -1.015712211748231], [51.45358753046727, -1.0145499550714774]],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "green", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 2, "stroke": true, "weight": 1}
).addTo(map_1f3be602d06a10003573fe27b7c2aef0);