-
Notifications
You must be signed in to change notification settings - Fork 0
/
sensor_map.html
13098 lines (5638 loc) · 502 KB
/
sensor_map.html
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/[email protected]/dist/leaflet.js"></script>
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/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/[email protected]/dist/leaflet.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/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/[email protected]/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_0202d86c3b67eefbcf56518fc8940ba3 {
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_0202d86c3b67eefbcf56518fc8940ba3" ></div>
</body>
<script>
var map_0202d86c3b67eefbcf56518fc8940ba3 = L.map(
"map_0202d86c3b67eefbcf56518fc8940ba3",
{
center: [51.5074, -0.1278],
crs: L.CRS.EPSG3857,
zoom: 10,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_7134915a4c75d52f48e069e329842bbc = 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_7134915a4c75d52f48e069e329842bbc.addTo(map_0202d86c3b67eefbcf56518fc8940ba3);
var marker_33aca2873d371d30c3d45399e5072057 = L.marker(
[51.42430434, -0.345714576],
{}
).addTo(map_0202d86c3b67eefbcf56518fc8940ba3);
var popup_3566ea4db3cc6946c748522e3d22b252 = L.popup({"maxWidth": "100%"});
var html_d4daa2d602e389aaf826002781845e72 = $(`<div id="html_d4daa2d602e389aaf826002781845e72" style="width: 100.0%; height: 100.0%;">SiteCode: TD0, #NAME?, NO2,StartDate: 2007/12/1 0:00, EndDate: 2018/1/1 0:00</div>`)[0];
popup_3566ea4db3cc6946c748522e3d22b252.setContent(html_d4daa2d602e389aaf826002781845e72);
marker_33aca2873d371d30c3d45399e5072057.bindPopup(popup_3566ea4db3cc6946c748522e3d22b252)
;
var marker_f8e5a2366ca6832068b61a42f5e7a699 = L.marker(
[51.42430434, -0.345714576],
{}
).addTo(map_0202d86c3b67eefbcf56518fc8940ba3);
var popup_6ff5dfe35959cad819f06e84a9f9db6a = L.popup({"maxWidth": "100%"});
var html_f41bf94b484778b7853e98549b5bf52c = $(`<div id="html_f41bf94b484778b7853e98549b5bf52c" style="width: 100.0%; height: 100.0%;">SiteCode: TD0, #NAME?, O3,StartDate: 2007/12/1 0:00, EndDate: 2018/1/1 0:00</div>`)[0];
popup_6ff5dfe35959cad819f06e84a9f9db6a.setContent(html_f41bf94b484778b7853e98549b5bf52c);
marker_f8e5a2366ca6832068b61a42f5e7a699.bindPopup(popup_6ff5dfe35959cad819f06e84a9f9db6a)
;
var marker_140ce0ddd1e68a37dfffc257beccfa1a = L.marker(
[51.42430434, -0.345714576],
{}
).addTo(map_0202d86c3b67eefbcf56518fc8940ba3);
var popup_183aa6cec0718d1aa85eafdc00d6d840 = L.popup({"maxWidth": "100%"});
var html_41034db5e7684f4c79cb0603685b3dc4 = $(`<div id="html_41034db5e7684f4c79cb0603685b3dc4" style="width: 100.0%; height: 100.0%;">SiteCode: TD0, #NAME?, PM25,StartDate: 2007/1/1 0:00, EndDate: 2018/1/1 0:00</div>`)[0];
popup_183aa6cec0718d1aa85eafdc00d6d840.setContent(html_41034db5e7684f4c79cb0603685b3dc4);
marker_140ce0ddd1e68a37dfffc257beccfa1a.bindPopup(popup_183aa6cec0718d1aa85eafdc00d6d840)
;
var marker_572630e7eec6ac9ebfbeacd5f2e6d438 = L.marker(
[51.42430434, -0.345714576],
{}
).addTo(map_0202d86c3b67eefbcf56518fc8940ba3);
var popup_b71df6e8939c49a0cceacf4525affd61 = L.popup({"maxWidth": "100%"});
var html_14b9d7e482b8cf83dd9d3bc93aeab187 = $(`<div id="html_14b9d7e482b8cf83dd9d3bc93aeab187" style="width: 100.0%; height: 100.0%;">SiteCode: TD0, #NAME?, SO2,StartDate: 2007/12/1 0:00, EndDate: 2007/10/1 0:00</div>`)[0];
popup_b71df6e8939c49a0cceacf4525affd61.setContent(html_14b9d7e482b8cf83dd9d3bc93aeab187);
marker_572630e7eec6ac9ebfbeacd5f2e6d438.bindPopup(popup_b71df6e8939c49a0cceacf4525affd61)
;
var marker_926912516d74ce0127c66dd58136b849 = L.marker(
[51.540444, 0.074418],
{}
).addTo(map_0202d86c3b67eefbcf56518fc8940ba3);
var popup_9c3c7d7ac18dc36a7732e654a52cf7fe = L.popup({"maxWidth": "100%"});
var html_c029b51af18b4afbd01dcd9eb0c7a524 = $(`<div id="html_c029b51af18b4afbd01dcd9eb0c7a524" style="width: 100.0%; height: 100.0%;">SiteCode: BG3, Barking and Dagenham - North Street, NO2,StartDate: 2008/1/1 0:00, EndDate: 2011/5/25 0:00</div>`)[0];
popup_9c3c7d7ac18dc36a7732e654a52cf7fe.setContent(html_c029b51af18b4afbd01dcd9eb0c7a524);
marker_926912516d74ce0127c66dd58136b849.bindPopup(popup_9c3c7d7ac18dc36a7732e654a52cf7fe)
;
var marker_29f881c27a4f5764c791d879772a18a4 = L.marker(
[51.563752, 0.177891],
{}
).addTo(map_0202d86c3b67eefbcf56518fc8940ba3);
var popup_31dd653f893b647f1c7b104c650b3731 = L.popup({"maxWidth": "100%"});
var html_66e26d17db13633fe3d48258d519b252 = $(`<div id="html_66e26d17db13633fe3d48258d519b252" style="width: 100.0%; height: 100.0%;">SiteCode: BG1, Barking and Dagenham - Rush Green, NO2,StartDate: 2008/1/1 0:00, EndDate: </div>`)[0];
popup_31dd653f893b647f1c7b104c650b3731.setContent(html_66e26d17db13633fe3d48258d519b252);
marker_29f881c27a4f5764c791d879772a18a4.bindPopup(popup_31dd653f893b647f1c7b104c650b3731)
;
var marker_81838b8e7a796dab7c8fa0a54420b0dd = L.marker(
[51.563752, 0.177891],
{}
).addTo(map_0202d86c3b67eefbcf56518fc8940ba3);
var popup_34662e930d84f35c5c6d8fb28fb9067d = L.popup({"maxWidth": "100%"});
var html_aae4d529de1a2aa1543effab6ac3aaff = $(`<div id="html_aae4d529de1a2aa1543effab6ac3aaff" style="width: 100.0%; height: 100.0%;">SiteCode: BG1, Barking and Dagenham - Rush Green, SO2,StartDate: 1999/10/23 0:00, EndDate: </div>`)[0];
popup_34662e930d84f35c5c6d8fb28fb9067d.setContent(html_aae4d529de1a2aa1543effab6ac3aaff);
marker_81838b8e7a796dab7c8fa0a54420b0dd.bindPopup(popup_34662e930d84f35c5c6d8fb28fb9067d)
;
var marker_30d84dd317323caf23d1f6de53d798e0 = L.marker(
[51.529389, 0.132857],
{}
).addTo(map_0202d86c3b67eefbcf56518fc8940ba3);
var popup_bb8921b80f6fcaf94f0a026da14479d1 = L.popup({"maxWidth": "100%"});
var html_a2f71c350901e325e8c43f900f417c73 = $(`<div id="html_a2f71c350901e325e8c43f900f417c73" style="width: 100.0%; height: 100.0%;">SiteCode: BG2, Barking and Dagenham - Scrattons Farm, NO2,StartDate: 2007/11/21 0:00, EndDate: </div>`)[0];
popup_bb8921b80f6fcaf94f0a026da14479d1.setContent(html_a2f71c350901e325e8c43f900f417c73);
marker_30d84dd317323caf23d1f6de53d798e0.bindPopup(popup_bb8921b80f6fcaf94f0a026da14479d1)
;
var marker_539532c2084d759f6c5082067a7eebbf = L.marker(
[51.529389, 0.132857],
{}
).addTo(map_0202d86c3b67eefbcf56518fc8940ba3);
var popup_9d6b26a1e327acc1d69d6909a8b8437c = L.popup({"maxWidth": "100%"});
var html_80cd534fb9bbfd784232338f9c83cf49 = $(`<div id="html_80cd534fb9bbfd784232338f9c83cf49" style="width: 100.0%; height: 100.0%;">SiteCode: BG2, Barking and Dagenham - Scrattons Farm, PM10,StartDate: 1999/10/17 0:00, EndDate: </div>`)[0];
popup_9d6b26a1e327acc1d69d6909a8b8437c.setContent(html_80cd534fb9bbfd784232338f9c83cf49);
marker_539532c2084d759f6c5082067a7eebbf.bindPopup(popup_9d6b26a1e327acc1d69d6909a8b8437c)
;
var marker_bef9e672bea4fceea6591ea9baa325e9 = L.marker(
[51.591901, -0.205992],
{}
).addTo(map_0202d86c3b67eefbcf56518fc8940ba3);
var popup_be251d5bcab8120df666c10c49497ed0 = L.popup({"maxWidth": "100%"});
var html_d123ae9270493b5fe024b56d61ea29f9 = $(`<div id="html_d123ae9270493b5fe024b56d61ea29f9" style="width: 100.0%; height: 100.0%;">SiteCode: BN2, Barnet - Finchley, NO2,StartDate: 2008/1/1 0:00, EndDate: 2012/4/20 0:00</div>`)[0];
popup_be251d5bcab8120df666c10c49497ed0.setContent(html_d123ae9270493b5fe024b56d61ea29f9);
marker_bef9e672bea4fceea6591ea9baa325e9.bindPopup(popup_be251d5bcab8120df666c10c49497ed0)
;
var marker_11074027c161fc4929258c573e9043b5 = L.marker(
[51.591901, -0.205992],
{}
).addTo(map_0202d86c3b67eefbcf56518fc8940ba3);
var popup_21c25deba8cfe6dfbab37aa22e265f97 = L.popup({"maxWidth": "100%"});
var html_26c92d4fdb39a4367212c5c3b077cd2c = $(`<div id="html_26c92d4fdb39a4367212c5c3b077cd2c" style="width: 100.0%; height: 100.0%;">SiteCode: BN2, Barnet - Finchley, PM10,StartDate: 2012/1/31 13:00, EndDate: 2012/4/20 0:00</div>`)[0];
popup_21c25deba8cfe6dfbab37aa22e265f97.setContent(html_26c92d4fdb39a4367212c5c3b077cd2c);
marker_11074027c161fc4929258c573e9043b5.bindPopup(popup_21c25deba8cfe6dfbab37aa22e265f97)
;
var marker_25825d9de33e9fd731dcc477d899ea3c = L.marker(
[51.60088485, -0.172297542],
{}
).addTo(map_0202d86c3b67eefbcf56518fc8940ba3);
var popup_1704585b17dfd2221a0c964fcf04d10a = L.popup({"maxWidth": "100%"});
var html_735dbcac9e36c8fe98323a1d79c020a5 = $(`<div id="html_735dbcac9e36c8fe98323a1d79c020a5" style="width: 100.0%; height: 100.0%;">SiteCode: BN3, Barnet - Strawberry Vale , NO2,StartDate: 1999/4/1 0:00, EndDate: 2002/5/15 0:00</div>`)[0];
popup_1704585b17dfd2221a0c964fcf04d10a.setContent(html_735dbcac9e36c8fe98323a1d79c020a5);
marker_25825d9de33e9fd731dcc477d899ea3c.bindPopup(popup_1704585b17dfd2221a0c964fcf04d10a)
;
var marker_f75df5e85bba42982b8fc09620478ebe = L.marker(
[51.60088485, -0.172297542],
{}
).addTo(map_0202d86c3b67eefbcf56518fc8940ba3);
var popup_7a8c3169da95ef6f21a713ac08c5f89b = L.popup({"maxWidth": "100%"});
var html_be8800192fb6c6eb8a4657a0b8590ea0 = $(`<div id="html_be8800192fb6c6eb8a4657a0b8590ea0" style="width: 100.0%; height: 100.0%;">SiteCode: BN3, Barnet - Strawberry Vale , PM10,StartDate: 2000/8/14 14:00, EndDate: 2002/5/15 0:00</div>`)[0];
popup_7a8c3169da95ef6f21a713ac08c5f89b.setContent(html_be8800192fb6c6eb8a4657a0b8590ea0);
marker_f75df5e85bba42982b8fc09620478ebe.bindPopup(popup_7a8c3169da95ef6f21a713ac08c5f89b)
;
var marker_738ca94752c1d2fc40ed7fde8eae5b29 = L.marker(
[51.614675, -0.176607],
{}
).addTo(map_0202d86c3b67eefbcf56518fc8940ba3);
var popup_24365f1f2d9bfd15a71032f6622520ab = L.popup({"maxWidth": "100%"});
var html_77b56ae72e9de5fc89360d611581342d = $(`<div id="html_77b56ae72e9de5fc89360d611581342d" style="width: 100.0%; height: 100.0%;">SiteCode: BN1, Barnet - Tally Ho Corner, NO2,StartDate: 2008/1/1 0:00, EndDate: 2012/4/20 0:00</div>`)[0];
popup_24365f1f2d9bfd15a71032f6622520ab.setContent(html_77b56ae72e9de5fc89360d611581342d);
marker_738ca94752c1d2fc40ed7fde8eae5b29.bindPopup(popup_24365f1f2d9bfd15a71032f6622520ab)
;
var marker_c99ba5d1da068989fc1c56070796e6a0 = L.marker(
[51.614675, -0.176607],
{}
).addTo(map_0202d86c3b67eefbcf56518fc8940ba3);
var popup_e534b6ec1a5ff4233b054c9724714814 = L.popup({"maxWidth": "100%"});
var html_fc5bc84111dee5a1352826736d95768d = $(`<div id="html_fc5bc84111dee5a1352826736d95768d" style="width: 100.0%; height: 100.0%;">SiteCode: BN1, Barnet - Tally Ho Corner, PM10,StartDate: 2012/1/31 12:00, EndDate: 2012/4/20 0:00</div>`)[0];
popup_e534b6ec1a5ff4233b054c9724714814.setContent(html_fc5bc84111dee5a1352826736d95768d);
marker_c99ba5d1da068989fc1c56070796e6a0.bindPopup(popup_e534b6ec1a5ff4233b054c9724714814)
;
var marker_41140b2a2335359b49a4ac7d2e4e9f6d = L.marker(
[51.47880235, 0.133873839],
{}
).addTo(map_0202d86c3b67eefbcf56518fc8940ba3);
var popup_8c612f9a9ad19ea48ef206790df50d60 = L.popup({"maxWidth": "100%"});
var html_b4c55c16729516e583ec310d9c1a9874 = $(`<div id="html_b4c55c16729516e583ec310d9c1a9874" style="width: 100.0%; height: 100.0%;">SiteCode: BX5, Bexley - Bedonwell , CO,StartDate: 1999/10/1 0:00, EndDate: 2004/4/8 0:00</div>`)[0];
popup_8c612f9a9ad19ea48ef206790df50d60.setContent(html_b4c55c16729516e583ec310d9c1a9874);
marker_41140b2a2335359b49a4ac7d2e4e9f6d.bindPopup(popup_8c612f9a9ad19ea48ef206790df50d60)
;
var marker_c5aa8228d992af2cc7b37d6ddc3004d4 = L.marker(
[51.47880235, 0.133873839],
{}
).addTo(map_0202d86c3b67eefbcf56518fc8940ba3);
var popup_6ec2641c1c92f393c56c47fbfee07c02 = L.popup({"maxWidth": "100%"});
var html_674c3e7ba0e79d1c7fa67995d29f6c82 = $(`<div id="html_674c3e7ba0e79d1c7fa67995d29f6c82" style="width: 100.0%; height: 100.0%;">SiteCode: BX5, Bexley - Bedonwell , NO2,StartDate: 2002/1/18 11:00, EndDate: 2004/4/8 0:00</div>`)[0];
popup_6ec2641c1c92f393c56c47fbfee07c02.setContent(html_674c3e7ba0e79d1c7fa67995d29f6c82);
marker_c5aa8228d992af2cc7b37d6ddc3004d4.bindPopup(popup_6ec2641c1c92f393c56c47fbfee07c02)
;
var marker_4ec248a5163aad60ac01d3df0047ee66 = L.marker(
[51.47880235, 0.133873839],
{}
).addTo(map_0202d86c3b67eefbcf56518fc8940ba3);
var popup_13d1e653c310681ad844a44e21adf8eb = L.popup({"maxWidth": "100%"});
var html_5debc44cd36d034184837b7f93272081 = $(`<div id="html_5debc44cd36d034184837b7f93272081" style="width: 100.0%; height: 100.0%;">SiteCode: BX5, Bexley - Bedonwell , SO2,StartDate: 1999/10/1 0:00, EndDate: 2004/4/8 0:00</div>`)[0];
popup_13d1e653c310681ad844a44e21adf8eb.setContent(html_5debc44cd36d034184837b7f93272081);
marker_4ec248a5163aad60ac01d3df0047ee66.bindPopup(popup_13d1e653c310681ad844a44e21adf8eb)
;
var marker_b08c9beba3d582d47b3c83207ee9f7bb = L.marker(
[51.49061021, 0.158914494],
{}
).addTo(map_0202d86c3b67eefbcf56518fc8940ba3);
var popup_b2b74354916c3712d86c90d09500d105 = L.popup({"maxWidth": "100%"});
var html_a8e988d00dd27411e78b045eb60c54f6 = $(`<div id="html_a8e988d00dd27411e78b045eb60c54f6" style="width: 100.0%; height: 100.0%;">SiteCode: BX2, Bexley - Belvedere, NO2,StartDate: 2002/1/17 10:00, EndDate: </div>`)[0];
popup_b2b74354916c3712d86c90d09500d105.setContent(html_a8e988d00dd27411e78b045eb60c54f6);
marker_b08c9beba3d582d47b3c83207ee9f7bb.bindPopup(popup_b2b74354916c3712d86c90d09500d105)
;
var marker_37cdaddd912ada691007057ebee2dc39 = L.marker(
[51.49061021, 0.158914494],
{}
).addTo(map_0202d86c3b67eefbcf56518fc8940ba3);
var popup_ab6da002dcaee4f71ee5632c6750ba1e = L.popup({"maxWidth": "100%"});
var html_d5168bfd5a3825c8ef8509d99d7450a1 = $(`<div id="html_d5168bfd5a3825c8ef8509d99d7450a1" style="width: 100.0%; height: 100.0%;">SiteCode: BX2, Bexley - Belvedere, PM10,StartDate: 2011/9/21 7:00, EndDate: </div>`)[0];
popup_ab6da002dcaee4f71ee5632c6750ba1e.setContent(html_d5168bfd5a3825c8ef8509d99d7450a1);
marker_37cdaddd912ada691007057ebee2dc39.bindPopup(popup_ab6da002dcaee4f71ee5632c6750ba1e)
;
var marker_316f39f4b78d8a7ead71c370ac79a96d = L.marker(
[51.49061021, 0.158914494],
{}
).addTo(map_0202d86c3b67eefbcf56518fc8940ba3);
var popup_0dd9fef60906bada25df4bb4f77f481e = L.popup({"maxWidth": "100%"});
var html_1756f920e927ad7aa57293de4a97abf9 = $(`<div id="html_1756f920e927ad7aa57293de4a97abf9" style="width: 100.0%; height: 100.0%;">SiteCode: BX2, Bexley - Belvedere, PM25,StartDate: 2022/2/15 0:00, EndDate: </div>`)[0];
popup_0dd9fef60906bada25df4bb4f77f481e.setContent(html_1756f920e927ad7aa57293de4a97abf9);
marker_316f39f4b78d8a7ead71c370ac79a96d.bindPopup(popup_0dd9fef60906bada25df4bb4f77f481e)
;
var marker_e1d2fa1ec06a92849c5a22496d3f6485 = L.marker(
[51.49061021, 0.158914494],
{}
).addTo(map_0202d86c3b67eefbcf56518fc8940ba3);
var popup_fbdb2851ff907237ee2b0f54ca3bf9e4 = L.popup({"maxWidth": "100%"});
var html_35efe564c65048383c8519b43e8d772c = $(`<div id="html_35efe564c65048383c8519b43e8d772c" style="width: 100.0%; height: 100.0%;">SiteCode: BX0, Bexley - Belvedere FDMS, PM10,StartDate: 2004/4/25 0:00, EndDate: 2022/1/28 0:00</div>`)[0];
popup_fbdb2851ff907237ee2b0f54ca3bf9e4.setContent(html_35efe564c65048383c8519b43e8d772c);
marker_e1d2fa1ec06a92849c5a22496d3f6485.bindPopup(popup_fbdb2851ff907237ee2b0f54ca3bf9e4)
;
var marker_a710533b3738112935bbba5bab37eb50 = L.marker(
[51.49464868, 0.137279111],
{}
).addTo(map_0202d86c3b67eefbcf56518fc8940ba3);
var popup_45784a2ed4b704630523637f8d405b6a = L.popup({"maxWidth": "100%"});
var html_59e9268a502589185274c01743ec3da2 = $(`<div id="html_59e9268a502589185274c01743ec3da2" style="width: 100.0%; height: 100.0%;">SiteCode: BQ7, Bexley - Belvedere West, NO2,StartDate: 2010/8/24 0:00, EndDate: </div>`)[0];
popup_45784a2ed4b704630523637f8d405b6a.setContent(html_59e9268a502589185274c01743ec3da2);
marker_a710533b3738112935bbba5bab37eb50.bindPopup(popup_45784a2ed4b704630523637f8d405b6a)
;
var marker_90b0e66ffcb5d3607ded63a9b7d01f55 = L.marker(
[51.49464868, 0.137279111],
{}
).addTo(map_0202d86c3b67eefbcf56518fc8940ba3);
var popup_53b52f88be90d68eb71fd89638c12339 = L.popup({"maxWidth": "100%"});
var html_2b171db0c2c992d4f986e14732ce526c = $(`<div id="html_2b171db0c2c992d4f986e14732ce526c" style="width: 100.0%; height: 100.0%;">SiteCode: BQ7, Bexley - Belvedere West, O3,StartDate: 2010/8/24 0:00, EndDate: </div>`)[0];
popup_53b52f88be90d68eb71fd89638c12339.setContent(html_2b171db0c2c992d4f986e14732ce526c);
marker_90b0e66ffcb5d3607ded63a9b7d01f55.bindPopup(popup_53b52f88be90d68eb71fd89638c12339)
;
var marker_b02d6a4ff2a6ea56ae0419676d216789 = L.marker(
[51.49464868, 0.137279111],
{}
).addTo(map_0202d86c3b67eefbcf56518fc8940ba3);
var popup_5798a1387a826b1dfe4d178b2d1c0b02 = L.popup({"maxWidth": "100%"});
var html_8cb8430d93810529eeab7b7e0993e632 = $(`<div id="html_8cb8430d93810529eeab7b7e0993e632" style="width: 100.0%; height: 100.0%;">SiteCode: BQ7, Bexley - Belvedere West, PM10,StartDate: 2022/2/24 16:00, EndDate: 2022/2/23 0:00</div>`)[0];
popup_5798a1387a826b1dfe4d178b2d1c0b02.setContent(html_8cb8430d93810529eeab7b7e0993e632);
marker_b02d6a4ff2a6ea56ae0419676d216789.bindPopup(popup_5798a1387a826b1dfe4d178b2d1c0b02)
;
var marker_77b40b9a98341c5bc1aa0a9a8c26f0d8 = L.marker(
[51.49464868, 0.137279111],
{}
).addTo(map_0202d86c3b67eefbcf56518fc8940ba3);
var popup_d3cc5b3643c49d016fb4c6e3a5d7c4dd = L.popup({"maxWidth": "100%"});
var html_2e3794c14c0a0cc9c41d59932a38a56e = $(`<div id="html_2e3794c14c0a0cc9c41d59932a38a56e" style="width: 100.0%; height: 100.0%;">SiteCode: BQ7, Bexley - Belvedere West, PM10,StartDate: 2022/2/24 16:00, EndDate: </div>`)[0];
popup_d3cc5b3643c49d016fb4c6e3a5d7c4dd.setContent(html_2e3794c14c0a0cc9c41d59932a38a56e);
marker_77b40b9a98341c5bc1aa0a9a8c26f0d8.bindPopup(popup_d3cc5b3643c49d016fb4c6e3a5d7c4dd)
;
var marker_836f73caba4fd2e847d22f55013a6cdf = L.marker(
[51.49464868, 0.137279111],
{}
).addTo(map_0202d86c3b67eefbcf56518fc8940ba3);
var popup_4e9f0fa740bb7ffe516cbef815080ee7 = L.popup({"maxWidth": "100%"});
var html_a5b13107efcc5e5ed2e2abac9984b8ad = $(`<div id="html_a5b13107efcc5e5ed2e2abac9984b8ad" style="width: 100.0%; height: 100.0%;">SiteCode: BQ7, Bexley - Belvedere West, PM25,StartDate: 2022/2/24 0:00, EndDate: </div>`)[0];
popup_4e9f0fa740bb7ffe516cbef815080ee7.setContent(html_a5b13107efcc5e5ed2e2abac9984b8ad);
marker_836f73caba4fd2e847d22f55013a6cdf.bindPopup(popup_4e9f0fa740bb7ffe516cbef815080ee7)
;
var marker_f1102679c62d54b2eeab6e33c1f318f9 = L.marker(
[51.49464868, 0.137279111],
{}
).addTo(map_0202d86c3b67eefbcf56518fc8940ba3);
var popup_c4b45f8adfe3cd246a9f061b8a1082aa = L.popup({"maxWidth": "100%"});
var html_e375abebcbeadd3c7610b967fc17a075 = $(`<div id="html_e375abebcbeadd3c7610b967fc17a075" style="width: 100.0%; height: 100.0%;">SiteCode: BQ8, Bexley - Belvedere West FDMS, PM10,StartDate: 2010/8/24 0:00, EndDate: 2022/2/23 0:00</div>`)[0];
popup_c4b45f8adfe3cd246a9f061b8a1082aa.setContent(html_e375abebcbeadd3c7610b967fc17a075);
marker_f1102679c62d54b2eeab6e33c1f318f9.bindPopup(popup_c4b45f8adfe3cd246a9f061b8a1082aa)
;
var marker_187ea544a4759d6c8a08f449e195f110 = L.marker(
[51.4776708, 0.190836226],
{}
).addTo(map_0202d86c3b67eefbcf56518fc8940ba3);
var popup_a22632abbd9f15972cba0f09b9313ded = L.popup({"maxWidth": "100%"});
var html_e4b81cb44a140b9d3017eb8695e7e5f7 = $(`<div id="html_e4b81cb44a140b9d3017eb8695e7e5f7" style="width: 100.0%; height: 100.0%;">SiteCode: BX4, Bexley - Erith, NO2,StartDate: 2008/1/1 0:00, EndDate: 2014/12/19 0:00</div>`)[0];
popup_a22632abbd9f15972cba0f09b9313ded.setContent(html_e4b81cb44a140b9d3017eb8695e7e5f7);
marker_187ea544a4759d6c8a08f449e195f110.bindPopup(popup_a22632abbd9f15972cba0f09b9313ded)
;
var marker_d03cb7deabe4bda54221bc07f89b854f = L.marker(
[51.4776708, 0.190836226],
{}
).addTo(map_0202d86c3b67eefbcf56518fc8940ba3);
var popup_0e7a90b137368810f4c6d4c0c3fd64b5 = L.popup({"maxWidth": "100%"});
var html_ac473bf1a8f5ffb686921223507338ef = $(`<div id="html_ac473bf1a8f5ffb686921223507338ef" style="width: 100.0%; height: 100.0%;">SiteCode: BX4, Bexley - Erith, PM10,StartDate: 1999/4/28 0:00, EndDate: 2014/12/19 0:00</div>`)[0];
popup_0e7a90b137368810f4c6d4c0c3fd64b5.setContent(html_ac473bf1a8f5ffb686921223507338ef);
marker_d03cb7deabe4bda54221bc07f89b854f.bindPopup(popup_0e7a90b137368810f4c6d4c0c3fd64b5)
;
var marker_5b7fb58e626559d43242fb25f70fd44a = L.marker(
[51.4776708, 0.190836226],
{}
).addTo(map_0202d86c3b67eefbcf56518fc8940ba3);
var popup_c9c8817b040bb8cbfe8ec8244ebc6e0a = L.popup({"maxWidth": "100%"});
var html_143f8d3075f6cc3c882b41e92e17586c = $(`<div id="html_143f8d3075f6cc3c882b41e92e17586c" style="width: 100.0%; height: 100.0%;">SiteCode: BX4, Bexley - Erith, PM25,StartDate: 2009/9/23 0:00, EndDate: 2014/12/19 0:00</div>`)[0];
popup_c9c8817b040bb8cbfe8ec8244ebc6e0a.setContent(html_143f8d3075f6cc3c882b41e92e17586c);
marker_5b7fb58e626559d43242fb25f70fd44a.bindPopup(popup_c9c8817b040bb8cbfe8ec8244ebc6e0a)
;
var marker_e39856fc0aed645c590890537ead6192 = L.marker(
[51.4776708, 0.190836226],
{}
).addTo(map_0202d86c3b67eefbcf56518fc8940ba3);
var popup_b647d9b813232e28cf581d3164aa342c = L.popup({"maxWidth": "100%"});
var html_f1c232ea7587f31e0002ebbcaefc3649 = $(`<div id="html_f1c232ea7587f31e0002ebbcaefc3649" style="width: 100.0%; height: 100.0%;">SiteCode: BQ6, Bexley - Manor Road East Gravimetric, PM10,StartDate: 2010/2/12 0:00, EndDate: 2014/10/28 0:00</div>`)[0];
popup_b647d9b813232e28cf581d3164aa342c.setContent(html_f1c232ea7587f31e0002ebbcaefc3649);
marker_e39856fc0aed645c590890537ead6192.bindPopup(popup_b647d9b813232e28cf581d3164aa342c)
;
var marker_91632167bc85a47aaad1936ed94fd1a2 = L.marker(
[51.47819351, 0.187404884],
{}
).addTo(map_0202d86c3b67eefbcf56518fc8940ba3);
var popup_7f0f595ab3369fb72a48cb169599eb82 = L.popup({"maxWidth": "100%"});
var html_436f18dbd35e83cc48a4bd8271b46aef = $(`<div id="html_436f18dbd35e83cc48a4bd8271b46aef" style="width: 100.0%; height: 100.0%;">SiteCode: BQ5, Bexley - Manor Road West Gravimetric, PM10,StartDate: 2010/2/12 0:00, EndDate: 2014/10/28 0:00</div>`)[0];
popup_7f0f595ab3369fb72a48cb169599eb82.setContent(html_436f18dbd35e83cc48a4bd8271b46aef);
marker_91632167bc85a47aaad1936ed94fd1a2.bindPopup(popup_7f0f595ab3369fb72a48cb169599eb82)
;
var marker_acdb657665bec39df966c256d419a9e5 = L.marker(
[51.46598327, 0.184877127],
{}
).addTo(map_0202d86c3b67eefbcf56518fc8940ba3);
var popup_6609eac3e3a0c3e5cc804ca0f40df2ea = L.popup({"maxWidth": "100%"});
var html_64fb1569018643037edb461808575121 = $(`<div id="html_64fb1569018643037edb461808575121" style="width: 100.0%; height: 100.0%;">SiteCode: BX1, Bexley - Slade Green, CO,StartDate: 1996/1/1 0:00, EndDate: 2013/1/30 0:00</div>`)[0];
popup_6609eac3e3a0c3e5cc804ca0f40df2ea.setContent(html_64fb1569018643037edb461808575121);
marker_acdb657665bec39df966c256d419a9e5.bindPopup(popup_6609eac3e3a0c3e5cc804ca0f40df2ea)
;
var marker_4ed72ade2d8d31cda5cb725cc6ee949a = L.marker(
[51.46598327, 0.184877127],
{}
).addTo(map_0202d86c3b67eefbcf56518fc8940ba3);
var popup_babbfc1d7754a04718253bf148614bda = L.popup({"maxWidth": "100%"});
var html_7d0454415411b7b101d80e632d26eac4 = $(`<div id="html_7d0454415411b7b101d80e632d26eac4" style="width: 100.0%; height: 100.0%;">SiteCode: BX1, Bexley - Slade Green, NO2,StartDate: 2010/1/20 9:00, EndDate: </div>`)[0];
popup_babbfc1d7754a04718253bf148614bda.setContent(html_7d0454415411b7b101d80e632d26eac4);
marker_4ed72ade2d8d31cda5cb725cc6ee949a.bindPopup(popup_babbfc1d7754a04718253bf148614bda)
;
var marker_a771fff22aebfd2c1cf10f3f6be01f90 = L.marker(
[51.46598327, 0.184877127],
{}
).addTo(map_0202d86c3b67eefbcf56518fc8940ba3);
var popup_7de680990d810a5ccaf011ae93dc871c = L.popup({"maxWidth": "100%"});
var html_992bb77c5c8698c5ce4bad19bcb414c9 = $(`<div id="html_992bb77c5c8698c5ce4bad19bcb414c9" style="width: 100.0%; height: 100.0%;">SiteCode: BX1, Bexley - Slade Green, O3,StartDate: 1996/1/1 0:00, EndDate: </div>`)[0];
popup_7de680990d810a5ccaf011ae93dc871c.setContent(html_992bb77c5c8698c5ce4bad19bcb414c9);
marker_a771fff22aebfd2c1cf10f3f6be01f90.bindPopup(popup_7de680990d810a5ccaf011ae93dc871c)
;
var marker_ef2ea96fa929ff6b71dad1786a7635f9 = L.marker(
[51.46598327, 0.184877127],
{}
).addTo(map_0202d86c3b67eefbcf56518fc8940ba3);
var popup_95c83a20ae544658ef2b3ec6d2fd9335 = L.popup({"maxWidth": "100%"});
var html_ec1f93347419a924857230c62ff7ab9b = $(`<div id="html_ec1f93347419a924857230c62ff7ab9b" style="width: 100.0%; height: 100.0%;">SiteCode: BX1, Bexley - Slade Green, PM10,StartDate: 2012/4/12 12:00, EndDate: 2020/10/1 0:00</div>`)[0];
popup_95c83a20ae544658ef2b3ec6d2fd9335.setContent(html_ec1f93347419a924857230c62ff7ab9b);
marker_ef2ea96fa929ff6b71dad1786a7635f9.bindPopup(popup_95c83a20ae544658ef2b3ec6d2fd9335)
;
var marker_02550cec9b06d1cc001d18b9fd53f01a = L.marker(
[51.46598327, 0.184877127],
{}
).addTo(map_0202d86c3b67eefbcf56518fc8940ba3);
var popup_6b278c2d6240344d7778bc4e105b8868 = L.popup({"maxWidth": "100%"});
var html_2657056f5ebd553fe9890688c378924a = $(`<div id="html_2657056f5ebd553fe9890688c378924a" style="width: 100.0%; height: 100.0%;">SiteCode: BX1, Bexley - Slade Green, SO2,StartDate: 1996/1/1 0:00, EndDate: </div>`)[0];
popup_6b278c2d6240344d7778bc4e105b8868.setContent(html_2657056f5ebd553fe9890688c378924a);
marker_02550cec9b06d1cc001d18b9fd53f01a.bindPopup(popup_6b278c2d6240344d7778bc4e105b8868)
;
var marker_ee4392ea2767cbb535bda5602e6f7339 = L.marker(
[51.46598327, 0.184877127],
{}
).addTo(map_0202d86c3b67eefbcf56518fc8940ba3);
var popup_85e1320b55549918ee1ca227bc805a10 = L.popup({"maxWidth": "100%"});
var html_b4bb13b4e99d422ecbdee31ddd00381d = $(`<div id="html_b4bb13b4e99d422ecbdee31ddd00381d" style="width: 100.0%; height: 100.0%;">SiteCode: BX9, Bexley - Slade Green FDMS, PM25,StartDate: 2008/10/21 12:00, EndDate: 2020/10/1 0:00</div>`)[0];
popup_85e1320b55549918ee1ca227bc805a10.setContent(html_b4bb13b4e99d422ecbdee31ddd00381d);
marker_ee4392ea2767cbb535bda5602e6f7339.bindPopup(popup_85e1320b55549918ee1ca227bc805a10)
;
var marker_b843f48ed3934a0aa69e1f7cf8124560 = L.marker(
[51.46598327, 0.184877127],
{}
).addTo(map_0202d86c3b67eefbcf56518fc8940ba3);
var popup_d44565b38a64add35ca4293f9e2244b3 = L.popup({"maxWidth": "100%"});
var html_06d98b515f108132ab8badbcd8081fc0 = $(`<div id="html_06d98b515f108132ab8badbcd8081fc0" style="width: 100.0%; height: 100.0%;">SiteCode: BQ9, Bexley - Slade Green Fidas, PM10,StartDate: 2020/10/1 10:00, EndDate: </div>`)[0];
popup_d44565b38a64add35ca4293f9e2244b3.setContent(html_06d98b515f108132ab8badbcd8081fc0);
marker_b843f48ed3934a0aa69e1f7cf8124560.bindPopup(popup_d44565b38a64add35ca4293f9e2244b3)
;
var marker_84cfcb04acbd9894b6f66c20c9d3b9f1 = L.marker(
[51.46598327, 0.184877127],
{}
).addTo(map_0202d86c3b67eefbcf56518fc8940ba3);
var popup_aa5f5ca83b5ee3c5c34fb3781d1dbd66 = L.popup({"maxWidth": "100%"});
var html_3c43d05ab677336ea95403404424bc9b = $(`<div id="html_3c43d05ab677336ea95403404424bc9b" style="width: 100.0%; height: 100.0%;">SiteCode: BQ9, Bexley - Slade Green Fidas, PM25,StartDate: 2020/10/1 10:00, EndDate: </div>`)[0];
popup_aa5f5ca83b5ee3c5c34fb3781d1dbd66.setContent(html_3c43d05ab677336ea95403404424bc9b);
marker_84cfcb04acbd9894b6f66c20c9d3b9f1.bindPopup(popup_aa5f5ca83b5ee3c5c34fb3781d1dbd66)
;
var marker_d6e5b668580d81484594dc31f740b67d = L.marker(
[51.457159, 0.195294],
{}
).addTo(map_0202d86c3b67eefbcf56518fc8940ba3);
var popup_e212ca95ecd397677747ad989ac5ede1 = L.popup({"maxWidth": "100%"});
var html_bb308bfe3c843f22ec410df35f01a6b7 = $(`<div id="html_bb308bfe3c843f22ec410df35f01a6b7" style="width: 100.0%; height: 100.0%;">SiteCode: BX7, Bexley - Thames Road North, NO2,StartDate: 2008/1/1 0:00, EndDate: 2010/3/23 0:00</div>`)[0];
popup_e212ca95ecd397677747ad989ac5ede1.setContent(html_bb308bfe3c843f22ec410df35f01a6b7);
marker_d6e5b668580d81484594dc31f740b67d.bindPopup(popup_e212ca95ecd397677747ad989ac5ede1)
;
var marker_515b3d9c127a5bd2a5c0d1fea8426459 = L.marker(
[51.457159, 0.195294],
{}
).addTo(map_0202d86c3b67eefbcf56518fc8940ba3);
var popup_f70e6ddb70c79e13f98b6c9ce1634bb3 = L.popup({"maxWidth": "100%"});
var html_95a83fd636bed4d187956cba68608bea = $(`<div id="html_95a83fd636bed4d187956cba68608bea" style="width: 100.0%; height: 100.0%;">SiteCode: BX7, Bexley - Thames Road North, O3,StartDate: 2004/6/10 11:00, EndDate: 2010/3/23 0:00</div>`)[0];
popup_f70e6ddb70c79e13f98b6c9ce1634bb3.setContent(html_95a83fd636bed4d187956cba68608bea);
marker_515b3d9c127a5bd2a5c0d1fea8426459.bindPopup(popup_f70e6ddb70c79e13f98b6c9ce1634bb3)
;
var marker_fb6548ea96ec2a15a35ab26f748d2712 = L.marker(
[51.457159, 0.195294],
{}
).addTo(map_0202d86c3b67eefbcf56518fc8940ba3);
var popup_17a875ec219ec98bd843537ee798385c = L.popup({"maxWidth": "100%"});
var html_22a706c77d130557e288bdd5f358b8ee = $(`<div id="html_22a706c77d130557e288bdd5f358b8ee" style="width: 100.0%; height: 100.0%;">SiteCode: BX7, Bexley - Thames Road North, PM10,StartDate: 2004/4/8 0:00, EndDate: 2010/3/23 0:00</div>`)[0];
popup_17a875ec219ec98bd843537ee798385c.setContent(html_22a706c77d130557e288bdd5f358b8ee);
marker_fb6548ea96ec2a15a35ab26f748d2712.bindPopup(popup_17a875ec219ec98bd843537ee798385c)
;
var marker_21675490c8838294ee2648c3164910f6 = L.marker(
[51.457159, 0.195294],
{}
).addTo(map_0202d86c3b67eefbcf56518fc8940ba3);