-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmumbai_population_map_with_elevation.html
1248 lines (558 loc) · 60 KB
/
mumbai_population_map_with_elevation.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-glyphicons.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_51178e55c55eedd4ca37d99cd482b571 {
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_51178e55c55eedd4ca37d99cd482b571" ></div>
</body>
<script>
var map_51178e55c55eedd4ca37d99cd482b571 = L.map(
"map_51178e55c55eedd4ca37d99cd482b571",
{
center: [19.076, 72.8777],
crs: L.CRS.EPSG3857,
zoom: 11,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_85d5d146c5d800c79c8c193130dc25ee = 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_85d5d146c5d800c79c8c193130dc25ee.addTo(map_51178e55c55eedd4ca37d99cd482b571);
var circle_marker_1800d7eb3474b24dbc833f78832fa444 = L.circleMarker(
[18.915091, 72.8259691],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2.10847, "stroke": true, "weight": 3}
).addTo(map_51178e55c55eedd4ca37d99cd482b571);
var popup_f9f22aec901d15b9345a935dfc5fe310 = L.popup({"maxWidth": "100%"});
var html_bbb11bfc165db71e55847c7297f7556e = $(`<div id="html_bbb11bfc165db71e55847c7297f7556e" style="width: 100.0%; height: 100.0%;">Colaba (Population: 210847)</div>`)[0];
popup_f9f22aec901d15b9345a935dfc5fe310.setContent(html_bbb11bfc165db71e55847c7297f7556e);
circle_marker_1800d7eb3474b24dbc833f78832fa444.bindPopup(popup_f9f22aec901d15b9345a935dfc5fe310)
;
var circle_marker_42f5978495284c61716cfdcf44055ed6 = L.circleMarker(
[19.07283, 72.88261],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1.40633, "stroke": true, "weight": 3}
).addTo(map_51178e55c55eedd4ca37d99cd482b571);
var popup_da088b16c5ef91fb08ae731dd60c6b83 = L.popup({"maxWidth": "100%"});
var html_02a98cf4f9ce85bbcd4a245ab800b3d2 = $(`<div id="html_02a98cf4f9ce85bbcd4a245ab800b3d2" style="width: 100.0%; height: 100.0%;">Sanhurst Road (Population: 140633)</div>`)[0];
popup_da088b16c5ef91fb08ae731dd60c6b83.setContent(html_02a98cf4f9ce85bbcd4a245ab800b3d2);
circle_marker_42f5978495284c61716cfdcf44055ed6.bindPopup(popup_da088b16c5ef91fb08ae731dd60c6b83)
;
var circle_marker_9fa06342db5eda5653b6e12305984424 = L.circleMarker(
[18.945764, 72.8237193],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2.02922, "stroke": true, "weight": 3}
).addTo(map_51178e55c55eedd4ca37d99cd482b571);
var popup_0fde39822df7cd0b96eaeecbdefb28e4 = L.popup({"maxWidth": "100%"});
var html_20541f682dd6a655e81b0b29cd4ec97b = $(`<div id="html_20541f682dd6a655e81b0b29cd4ec97b" style="width: 100.0%; height: 100.0%;">Marine Lines (Population: 202922)</div>`)[0];
popup_0fde39822df7cd0b96eaeecbdefb28e4.setContent(html_20541f682dd6a655e81b0b29cd4ec97b);
circle_marker_9fa06342db5eda5653b6e12305984424.bindPopup(popup_0fde39822df7cd0b96eaeecbdefb28e4)
;
var circle_marker_c0fc17655b77366e5b003c71598b56a4 = L.circleMarker(
[18.9633549, 72.8158261],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.82841, "stroke": true, "weight": 3}
).addTo(map_51178e55c55eedd4ca37d99cd482b571);
var popup_744abfc2b293178efa7c08b380c408e5 = L.popup({"maxWidth": "100%"});
var html_939c0f0b1a0ec6b5c7cdbd9e1d5ebf85 = $(`<div id="html_939c0f0b1a0ec6b5c7cdbd9e1d5ebf85" style="width: 100.0%; height: 100.0%;">Grant Road (Population: 382841)</div>`)[0];
popup_744abfc2b293178efa7c08b380c408e5.setContent(html_939c0f0b1a0ec6b5c7cdbd9e1d5ebf85);
circle_marker_c0fc17655b77366e5b003c71598b56a4.bindPopup(popup_744abfc2b293178efa7c08b380c408e5)
;
var circle_marker_07c0ed446a11d04a2e37c52af4ba2d8e = L.circleMarker(
[18.9766219, 72.8327936],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.40335, "stroke": true, "weight": 3}
).addTo(map_51178e55c55eedd4ca37d99cd482b571);
var popup_d668de407a7de709ccdbcdaf886cb293 = L.popup({"maxWidth": "100%"});
var html_bedf76a167c94b884ac06e6c8c6afb99 = $(`<div id="html_bedf76a167c94b884ac06e6c8c6afb99" style="width: 100.0%; height: 100.0%;">Byculla (Population: 440335)</div>`)[0];
popup_d668de407a7de709ccdbcdaf886cb293.setContent(html_bedf76a167c94b884ac06e6c8c6afb99);
circle_marker_07c0ed446a11d04a2e37c52af4ba2d8e.bindPopup(popup_d668de407a7de709ccdbcdaf886cb293)
;
var circle_marker_f15b9c72933e5adefba600f015d8aa23 = L.circleMarker(
[19.0084268, 72.842505],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.96122, "stroke": true, "weight": 3}
).addTo(map_51178e55c55eedd4ca37d99cd482b571);
var popup_09db9ef3ce6884e3c477faa547e48028 = L.popup({"maxWidth": "100%"});
var html_ca65246b2553b1a3dae5a3b297c3908c = $(`<div id="html_ca65246b2553b1a3dae5a3b297c3908c" style="width: 100.0%; height: 100.0%;">Parel (Population: 396122)</div>`)[0];
popup_09db9ef3ce6884e3c477faa547e48028.setContent(html_ca65246b2553b1a3dae5a3b297c3908c);
circle_marker_f15b9c72933e5adefba600f015d8aa23.bindPopup(popup_09db9ef3ce6884e3c477faa547e48028)
;
var circle_marker_35538bf06215fe13bc92b0c41b782500 = L.circleMarker(
[19.0274356, 72.8501467],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5.24393, "stroke": true, "weight": 3}
).addTo(map_51178e55c55eedd4ca37d99cd482b571);
var popup_3dc5df50e723cb9d508e3043e069d7ab = L.popup({"maxWidth": "100%"});
var html_9be3331e1ca42500b65c50b4562efdda = $(`<div id="html_9be3331e1ca42500b65c50b4562efdda" style="width: 100.0%; height: 100.0%;">Matunga (Population: 524393)</div>`)[0];
popup_3dc5df50e723cb9d508e3043e069d7ab.setContent(html_9be3331e1ca42500b65c50b4562efdda);
circle_marker_35538bf06215fe13bc92b0c41b782500.bindPopup(popup_3dc5df50e723cb9d508e3043e069d7ab)
;
var circle_marker_5f0739306fb946cd45385469fde81439 = L.circleMarker(
[18.9271683, 72.8310962],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.57931, "stroke": true, "weight": 3}
).addTo(map_51178e55c55eedd4ca37d99cd482b571);
var popup_e77cb7615b0128fc861fec9ea90a3644 = L.popup({"maxWidth": "100%"});
var html_e6d1da576414f7273bbecfc11c85162a = $(`<div id="html_e6d1da576414f7273bbecfc11c85162a" style="width: 100.0%; height: 100.0%;">Elphinstone (Population: 457931)</div>`)[0];
popup_e77cb7615b0128fc861fec9ea90a3644.setContent(html_e6d1da576414f7273bbecfc11c85162a);
circle_marker_5f0739306fb946cd45385469fde81439.bindPopup(popup_e77cb7615b0128fc861fec9ea90a3644)
;
var circle_marker_5253ef19192fa54afc656042beb84e75 = L.circleMarker(
[19.07283, 72.88261],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5.82007, "stroke": true, "weight": 3}
).addTo(map_51178e55c55eedd4ca37d99cd482b571);
var popup_c28ebccab07d9f403b82087e21d1b836 = L.popup({"maxWidth": "100%"});
var html_f21b3cd0817d2b1dffc108a421761087 = $(`<div id="html_f21b3cd0817d2b1dffc108a421761087" style="width: 100.0%; height: 100.0%;">Dadar/Plaza (Population: 582007)</div>`)[0];
popup_c28ebccab07d9f403b82087e21d1b836.setContent(html_f21b3cd0817d2b1dffc108a421761087);
circle_marker_5253ef19192fa54afc656042beb84e75.bindPopup(popup_c28ebccab07d9f403b82087e21d1b836)
;
var circle_marker_7f8106d59870f3525ad9b8dde1aa25d6 = L.circleMarker(
[19.0750197, 72.8356392],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5.80835, "stroke": true, "weight": 3}
).addTo(map_51178e55c55eedd4ca37d99cd482b571);
var popup_2fb45b99dbd2ab196d8fc58da539877f = L.popup({"maxWidth": "100%"});
var html_8f0c7e00163a38a716cb802384c0b46a = $(`<div id="html_8f0c7e00163a38a716cb802384c0b46a" style="width: 100.0%; height: 100.0%;">Khar/Santacruz (Population: 580835)</div>`)[0];
popup_2fb45b99dbd2ab196d8fc58da539877f.setContent(html_8f0c7e00163a38a716cb802384c0b46a);
circle_marker_7f8106d59870f3525ad9b8dde1aa25d6.bindPopup(popup_2fb45b99dbd2ab196d8fc58da539877f)
;
var circle_marker_e491e8b860c8aad0d4789d7c48e39d41 = L.circleMarker(
[19.0549792, 72.8402203],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.37391, "stroke": true, "weight": 3}
).addTo(map_51178e55c55eedd4ca37d99cd482b571);
var popup_549cfe09e649401f2a4bb044209de044 = L.popup({"maxWidth": "100%"});
var html_60d3faa1fe26a9213e45048c73e9e124 = $(`<div id="html_60d3faa1fe26a9213e45048c73e9e124" style="width: 100.0%; height: 100.0%;">Bandra (Population: 337391)</div>`)[0];
popup_549cfe09e649401f2a4bb044209de044.setContent(html_60d3faa1fe26a9213e45048c73e9e124);
circle_marker_e491e8b860c8aad0d4789d7c48e39d41.bindPopup(popup_549cfe09e649401f2a4bb044209de044)
;
var circle_marker_b714e855ca6d0ce9ab7c926f953c8b62 = L.circleMarker(
[19.1158835, 72.854202],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8.10002, "stroke": true, "weight": 3}
).addTo(map_51178e55c55eedd4ca37d99cd482b571);
var popup_bb5c65e5a0b69945f4032147d064ab90 = L.popup({"maxWidth": "100%"});
var html_4d1ec25d45b32ec6968dd3da846d178d = $(`<div id="html_4d1ec25d45b32ec6968dd3da846d178d" style="width: 100.0%; height: 100.0%;">Andheri (East) (Population: 810002)</div>`)[0];
popup_bb5c65e5a0b69945f4032147d064ab90.setContent(html_4d1ec25d45b32ec6968dd3da846d178d);
circle_marker_b714e855ca6d0ce9ab7c926f953c8b62.bindPopup(popup_bb5c65e5a0b69945f4032147d064ab90)
;
var circle_marker_bffdc926125e38ca8a120fbf224d14fb = L.circleMarker(
[19.1172495, 72.833968],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 7.0068, "stroke": true, "weight": 3}
).addTo(map_51178e55c55eedd4ca37d99cd482b571);
var popup_a4df73eb12d765eae5b815e9cd8eb07f = L.popup({"maxWidth": "100%"});
var html_91a48bd6152c705758d58eeec980e2a1 = $(`<div id="html_91a48bd6152c705758d58eeec980e2a1" style="width: 100.0%; height: 100.0%;">Andheri (West) (Population: 700680)</div>`)[0];
popup_a4df73eb12d765eae5b815e9cd8eb07f.setContent(html_91a48bd6152c705758d58eeec980e2a1);
circle_marker_bffdc926125e38ca8a120fbf224d14fb.bindPopup(popup_a4df73eb12d765eae5b815e9cd8eb07f)
;
var circle_marker_0a6f5616f1c5b359468bd561ca34d84b = L.circleMarker(
[19.0652797, 72.8793805],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 7.78218, "stroke": true, "weight": 3}
).addTo(map_51178e55c55eedd4ca37d99cd482b571);
var popup_61bbb449e6afb4801ebf3b468e3b883b = L.popup({"maxWidth": "100%"});
var html_04e324664c0a892485a088c662e213dd = $(`<div id="html_04e324664c0a892485a088c662e213dd" style="width: 100.0%; height: 100.0%;">Kurla (Population: 778218)</div>`)[0];
popup_61bbb449e6afb4801ebf3b468e3b883b.setContent(html_04e324664c0a892485a088c662e213dd);
circle_marker_0a6f5616f1c5b359468bd561ca34d84b.bindPopup(popup_61bbb449e6afb4801ebf3b468e3b883b)
;
var circle_marker_a419510c90ce9a6dd6d9faff96644a0f = L.circleMarker(
[19.0730526, 72.8699382],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 6.7485, "stroke": true, "weight": 3}
).addTo(map_51178e55c55eedd4ca37d99cd482b571);
var popup_d7f52607677cfa30595006c40a7cf29d = L.popup({"maxWidth": "100%"});
var html_374b623752fcc0e47d6d41543e68e3e5 = $(`<div id="html_374b623752fcc0e47d6d41543e68e3e5" style="width: 100.0%; height: 100.0%;">Chembur East (Population: 674850)</div>`)[0];
popup_d7f52607677cfa30595006c40a7cf29d.setContent(html_374b623752fcc0e47d6d41543e68e3e5);
circle_marker_a419510c90ce9a6dd6d9faff96644a0f.bindPopup(popup_d7f52607677cfa30595006c40a7cf29d)
;
var circle_marker_d1fe1ec49f3d8516a28cdef5a50f5017 = L.circleMarker(
[19.0755028, 72.8782407],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.1404, "stroke": true, "weight": 3}
).addTo(map_51178e55c55eedd4ca37d99cd482b571);
var popup_87be3989a345a9e16e8186a3d794eb2e = L.popup({"maxWidth": "100%"});
var html_13591abdcd34d3bfdadb39a8149fb7d0 = $(`<div id="html_13591abdcd34d3bfdadb39a8149fb7d0" style="width: 100.0%; height: 100.0%;">Chembur West (Population: 414040)</div>`)[0];
popup_87be3989a345a9e16e8186a3d794eb2e.setContent(html_13591abdcd34d3bfdadb39a8149fb7d0);
circle_marker_d1fe1ec49f3d8516a28cdef5a50f5017.bindPopup(popup_87be3989a345a9e16e8186a3d794eb2e)
;
var circle_marker_c33f4876cf82fd79e5e75d0eaab4d01a = L.circleMarker(
[19.0856928, 72.9083668],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 6.19556, "stroke": true, "weight": 3}
).addTo(map_51178e55c55eedd4ca37d99cd482b571);
var popup_e6f902221fc41c33c1e3984f940dd093 = L.popup({"maxWidth": "100%"});
var html_0e89aa957e29a931af91a682db7271ae = $(`<div id="html_0e89aa957e29a931af91a682db7271ae" style="width: 100.0%; height: 100.0%;">Ghatkopar (Population: 619556)</div>`)[0];
popup_e6f902221fc41c33c1e3984f940dd093.setContent(html_0e89aa957e29a931af91a682db7271ae);
circle_marker_c33f4876cf82fd79e5e75d0eaab4d01a.bindPopup(popup_e6f902221fc41c33c1e3984f940dd093)
;
var circle_marker_a22b9ec18a7d60b4f3d868349087fee7 = L.circleMarker(
[19.1648661, 72.8496929],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.37849, "stroke": true, "weight": 3}
).addTo(map_51178e55c55eedd4ca37d99cd482b571);
var popup_567f636187e961e979fc2d03c1a003b6 = L.popup({"maxWidth": "100%"});
var html_10efa3d334633a04a90914ea2b181573 = $(`<div id="html_10efa3d334633a04a90914ea2b181573" style="width: 100.0%; height: 100.0%;">Goregaon (Population: 437849)</div>`)[0];
popup_567f636187e961e979fc2d03c1a003b6.setContent(html_10efa3d334633a04a90914ea2b181573);
circle_marker_a22b9ec18a7d60b4f3d868349087fee7.bindPopup(popup_567f636187e961e979fc2d03c1a003b6)
;
var circle_marker_6ff938677b76b43e674d4f9de83a4104 = L.circleMarker(
[19.1867193, 72.8485884],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 7.96775, "stroke": true, "weight": 3}
).addTo(map_51178e55c55eedd4ca37d99cd482b571);
var popup_727f81eb06d55133cdc1d5dddcc0e12f = L.popup({"maxWidth": "100%"});
var html_9731a851e12625ff66baf7bec1e1cb15 = $(`<div id="html_9731a851e12625ff66baf7bec1e1cb15" style="width: 100.0%; height: 100.0%;">Malad (Population: 796775)</div>`)[0];
popup_727f81eb06d55133cdc1d5dddcc0e12f.setContent(html_9731a851e12625ff66baf7bec1e1cb15);
circle_marker_6ff938677b76b43e674d4f9de83a4104.bindPopup(popup_727f81eb06d55133cdc1d5dddcc0e12f)
;
var circle_marker_dcfcede6b2210db9ccbbe2c6ac994d2a = L.circleMarker(
[19.07283, 72.88261],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5.89886, "stroke": true, "weight": 3}
).addTo(map_51178e55c55eedd4ca37d99cd482b571);
var popup_705b744b5b66d81b4427d38680d3cc97 = L.popup({"maxWidth": "100%"});
var html_48b34ecbafc321b8a370d0bcc8b29e51 = $(`<div id="html_48b34ecbafc321b8a370d0bcc8b29e51" style="width: 100.0%; height: 100.0%;">Kandivalli (Population: 589886)</div>`)[0];
popup_705b744b5b66d81b4427d38680d3cc97.setContent(html_48b34ecbafc321b8a370d0bcc8b29e51);
circle_marker_dcfcede6b2210db9ccbbe2c6ac994d2a.bindPopup(popup_705b744b5b66d81b4427d38680d3cc97)
;
var circle_marker_698fc74ddce6f31a927a55b24bf89c36 = L.circleMarker(
[19.2313925, 72.8408607],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5.13077, "stroke": true, "weight": 3}
).addTo(map_51178e55c55eedd4ca37d99cd482b571);
var popup_2e9476dc00034dd4d28a632be3924232 = L.popup({"maxWidth": "100%"});
var html_03980c6e9f9032e20df1efe1bc32657a = $(`<div id="html_03980c6e9f9032e20df1efe1bc32657a" style="width: 100.0%; height: 100.0%;">Borivali West (Population: 513077)</div>`)[0];
popup_2e9476dc00034dd4d28a632be3924232.setContent(html_03980c6e9f9032e20df1efe1bc32657a);
circle_marker_698fc74ddce6f31a927a55b24bf89c36.bindPopup(popup_2e9476dc00034dd4d28a632be3924232)
;
var circle_marker_62970a12761a99c2d9767361d5892057 = L.circleMarker(
[19.07283, 72.88261],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.63827, "stroke": true, "weight": 3}
).addTo(map_51178e55c55eedd4ca37d99cd482b571);
var popup_ba65efbb3e83134ca98fea6ae2b88ee7 = L.popup({"maxWidth": "100%"});
var html_d1ad21717524f0ecdf1ccd0588fc9ab8 = $(`<div id="html_d1ad21717524f0ecdf1ccd0588fc9ab8" style="width: 100.0%; height: 100.0%;">Dahiser (Population: 363827)</div>`)[0];
popup_ba65efbb3e83134ca98fea6ae2b88ee7.setContent(html_d1ad21717524f0ecdf1ccd0588fc9ab8);
circle_marker_62970a12761a99c2d9767361d5892057.bindPopup(popup_ba65efbb3e83134ca98fea6ae2b88ee7)
;
var circle_marker_b0beb31ed5cc6057e5b2f66a3a4e00ea = L.circleMarker(
[19.1438684, 72.9384327],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 6.91227, "stroke": true, "weight": 3}
).addTo(map_51178e55c55eedd4ca37d99cd482b571);
var popup_0f47ed13a1de5bdf0895c3cdace577f6 = L.popup({"maxWidth": "100%"});
var html_51dfbb487536bde97c889bb7b44d50bb = $(`<div id="html_51dfbb487536bde97c889bb7b44d50bb" style="width: 100.0%; height: 100.0%;">Bhandup (Population: 691227)</div>`)[0];
popup_0f47ed13a1de5bdf0895c3cdace577f6.setContent(html_51dfbb487536bde97c889bb7b44d50bb);
circle_marker_b0beb31ed5cc6057e5b2f66a3a4e00ea.bindPopup(popup_0f47ed13a1de5bdf0895c3cdace577f6)
;
var circle_marker_89c068f87ac24830c15e1c57aee8e7db = L.circleMarker(
[19.1722904, 72.9564695],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.30195, "stroke": true, "weight": 3}
).addTo(map_51178e55c55eedd4ca37d99cd482b571);
var popup_7088f8378c2f2a5b09709a9255440c29 = L.popup({"maxWidth": "100%"});
var html_609e95c2485df66d320f231be6b986a9 = $(`<div id="html_609e95c2485df66d320f231be6b986a9" style="width: 100.0%; height: 100.0%;">Mulund (Population: 330195)</div>`)[0];
popup_7088f8378c2f2a5b09709a9255440c29.setContent(html_609e95c2485df66d320f231be6b986a9);
circle_marker_89c068f87ac24830c15e1c57aee8e7db.bindPopup(popup_7088f8378c2f2a5b09709a9255440c29)
;
var circle_marker_5068f5929fba4241ca44e20a1197c1cb = L.circleMarker(
[19.136923120058864, 72.81396991208156],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9.0, "stroke": true, "weight": 3}
).addTo(map_51178e55c55eedd4ca37d99cd482b571);
var popup_7481e8f63a746e3e602d5f63c3530996 = L.popup({"maxWidth": "100%"});
var html_c44bdb0ab100cb37751b905f8929959d = $(`<div id="html_c44bdb0ab100cb37751b905f8929959d" style="width: 100.0%; height: 100.0%;">Elevation: 9.0 m</div>`)[0];
popup_7481e8f63a746e3e602d5f63c3530996.setContent(html_c44bdb0ab100cb37751b905f8929959d);
circle_marker_5068f5929fba4241ca44e20a1197c1cb.bindPopup(popup_7481e8f63a746e3e602d5f63c3530996)
;
var circle_marker_89a86edd59353f2a63e8430dc1dfa365 = L.circleMarker(
[19.136923120058864, 72.82484771489055],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 6.0, "stroke": true, "weight": 3}
).addTo(map_51178e55c55eedd4ca37d99cd482b571);
var popup_673f993be569927f613cce6d18960b5b = L.popup({"maxWidth": "100%"});
var html_d917a503883760192deaed48e5b56807 = $(`<div id="html_d917a503883760192deaed48e5b56807" style="width: 100.0%; height: 100.0%;">Elevation: 6.0 m</div>`)[0];
popup_673f993be569927f613cce6d18960b5b.setContent(html_d917a503883760192deaed48e5b56807);
circle_marker_89a86edd59353f2a63e8430dc1dfa365.bindPopup(popup_673f993be569927f613cce6d18960b5b)
;
var circle_marker_dcff9fb888e1a61796c37454a1f49777 = L.circleMarker(
[19.13692312005887, 72.83572551769956],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 7.0, "stroke": true, "weight": 3}
).addTo(map_51178e55c55eedd4ca37d99cd482b571);
var popup_52f89043f4b1fb463ea7752f824153da = L.popup({"maxWidth": "100%"});
var html_f09d9bae3a1129b663b534387ba32755 = $(`<div id="html_f09d9bae3a1129b663b534387ba32755" style="width: 100.0%; height: 100.0%;">Elevation: 7.0 m</div>`)[0];
popup_52f89043f4b1fb463ea7752f824153da.setContent(html_f09d9bae3a1129b663b534387ba32755);
circle_marker_dcff9fb888e1a61796c37454a1f49777.bindPopup(popup_52f89043f4b1fb463ea7752f824153da)
;
var circle_marker_3310bfbc35297d34b65b996076280fb3 = L.circleMarker(
[19.136923120058864, 72.84660332050854],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 14.0, "stroke": true, "weight": 3}
).addTo(map_51178e55c55eedd4ca37d99cd482b571);
var popup_a160a338f9b7fd9d3d99753680456c0a = L.popup({"maxWidth": "100%"});
var html_8d385eacb0e9a9723b1346a7d4108695 = $(`<div id="html_8d385eacb0e9a9723b1346a7d4108695" style="width: 100.0%; height: 100.0%;">Elevation: 14.0 m</div>`)[0];
popup_a160a338f9b7fd9d3d99753680456c0a.setContent(html_8d385eacb0e9a9723b1346a7d4108695);
circle_marker_3310bfbc35297d34b65b996076280fb3.bindPopup(popup_a160a338f9b7fd9d3d99753680456c0a)
;
var circle_marker_a0f2d8c5359b18159c20213c995ac8b0 = L.circleMarker(
[19.127834116457148, 72.82484771489055],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8.0, "stroke": true, "weight": 3}
).addTo(map_51178e55c55eedd4ca37d99cd482b571);
var popup_febcac7afef47e4042acda5edaed50da = L.popup({"maxWidth": "100%"});
var html_27dffb0dfc20d962d95c3836c442ab80 = $(`<div id="html_27dffb0dfc20d962d95c3836c442ab80" style="width: 100.0%; height: 100.0%;">Elevation: 8.0 m</div>`)[0];
popup_febcac7afef47e4042acda5edaed50da.setContent(html_27dffb0dfc20d962d95c3836c442ab80);
circle_marker_a0f2d8c5359b18159c20213c995ac8b0.bindPopup(popup_febcac7afef47e4042acda5edaed50da)
;
var circle_marker_671dd06dc8b3beed38cb2d70c8a49c1b = L.circleMarker(
[19.127834116457148, 72.83572551769956],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9.0, "stroke": true, "weight": 3}
).addTo(map_51178e55c55eedd4ca37d99cd482b571);
var popup_7971852154bd173b534b4246f04be021 = L.popup({"maxWidth": "100%"});
var html_399aeb445ec9c5bab1e772526d268022 = $(`<div id="html_399aeb445ec9c5bab1e772526d268022" style="width: 100.0%; height: 100.0%;">Elevation: 9.0 m</div>`)[0];
popup_7971852154bd173b534b4246f04be021.setContent(html_399aeb445ec9c5bab1e772526d268022);
circle_marker_671dd06dc8b3beed38cb2d70c8a49c1b.bindPopup(popup_7971852154bd173b534b4246f04be021)
;
var circle_marker_86d9e1c29b0cb3669795334c9f7ba169 = L.circleMarker(
[19.123289424868545, 72.84660332050854],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 13.0, "stroke": true, "weight": 3}
).addTo(map_51178e55c55eedd4ca37d99cd482b571);
var popup_8321cefc290eb1ec83a112815131fdd3 = L.popup({"maxWidth": "100%"});
var html_a9b54594fdbd33f13020837642ea1206 = $(`<div id="html_a9b54594fdbd33f13020837642ea1206" style="width: 100.0%; height: 100.0%;">Elevation: 13.0 m</div>`)[0];
popup_8321cefc290eb1ec83a112815131fdd3.setContent(html_a9b54594fdbd33f13020837642ea1206);
circle_marker_86d9e1c29b0cb3669795334c9f7ba169.bindPopup(popup_8321cefc290eb1ec83a112815131fdd3)
;
var circle_marker_c32b3decc269b42149b00f577a485b6e = L.circleMarker(
[19.11874460678848, 72.82484771489055],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_51178e55c55eedd4ca37d99cd482b571);
var popup_5e54a0e837cdd2e8c560608b7ff597df = L.popup({"maxWidth": "100%"});
var html_e2fd1e8f5ccd6acc00c4df4fdf572c8f = $(`<div id="html_e2fd1e8f5ccd6acc00c4df4fdf572c8f" style="width: 100.0%; height: 100.0%;">Elevation: 2.0 m</div>`)[0];
popup_5e54a0e837cdd2e8c560608b7ff597df.setContent(html_e2fd1e8f5ccd6acc00c4df4fdf572c8f);
circle_marker_c32b3decc269b42149b00f577a485b6e.bindPopup(popup_5e54a0e837cdd2e8c560608b7ff597df)
;
var circle_marker_fa38ad35c76de9e94d7d1b22396a2886 = L.circleMarker(
[19.11874460678848, 72.83572551769956],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 11.0, "stroke": true, "weight": 3}
).addTo(map_51178e55c55eedd4ca37d99cd482b571);
var popup_7d1f51fdf5e263ae14838ff58d4f00c8 = L.popup({"maxWidth": "100%"});
var html_fea37ba3d3aab191265f0b001272dc05 = $(`<div id="html_fea37ba3d3aab191265f0b001272dc05" style="width: 100.0%; height: 100.0%;">Elevation: 11.0 m</div>`)[0];
popup_7d1f51fdf5e263ae14838ff58d4f00c8.setContent(html_fea37ba3d3aab191265f0b001272dc05);
circle_marker_fa38ad35c76de9e94d7d1b22396a2886.bindPopup(popup_7d1f51fdf5e263ae14838ff58d4f00c8)
;
var circle_marker_d4de1fdc9201c3f35b5e48b2a04822f7 = L.circleMarker(
[19.1096545912552, 72.82484771489055],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_51178e55c55eedd4ca37d99cd482b571);
var popup_b906ef2a295372f9da48214bd125e497 = L.popup({"maxWidth": "100%"});
var html_5ef078eb8120ecdea33173b814dabac4 = $(`<div id="html_5ef078eb8120ecdea33173b814dabac4" style="width: 100.0%; height: 100.0%;">Elevation: -3.0 m</div>`)[0];
popup_b906ef2a295372f9da48214bd125e497.setContent(html_5ef078eb8120ecdea33173b814dabac4);
circle_marker_d4de1fdc9201c3f35b5e48b2a04822f7.bindPopup(popup_b906ef2a295372f9da48214bd125e497)
;
var circle_marker_ffbff3cac72e24caca6404bceea383fc = L.circleMarker(
[19.1096545912552, 72.83572551769956],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10.0, "stroke": true, "weight": 3}
).addTo(map_51178e55c55eedd4ca37d99cd482b571);
var popup_f98cc68743c0f01ebe03fc8d146c3fc6 = L.popup({"maxWidth": "100%"});
var html_83b7c1aa8b827ad06526bc754ab062ad = $(`<div id="html_83b7c1aa8b827ad06526bc754ab062ad" style="width: 100.0%; height: 100.0%;">Elevation: 10.0 m</div>`)[0];
popup_f98cc68743c0f01ebe03fc8d146c3fc6.setContent(html_83b7c1aa8b827ad06526bc754ab062ad);
circle_marker_ffbff3cac72e24caca6404bceea383fc.bindPopup(popup_f98cc68743c0f01ebe03fc8d146c3fc6)
;
var circle_marker_8bc724327f081d6eb445980aefe4c296 = L.circleMarker(
[19.1096545912552, 72.84660332050855],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 14.0, "stroke": true, "weight": 3}
).addTo(map_51178e55c55eedd4ca37d99cd482b571);
var popup_6ced48ff6901beee67040670c564e87d = L.popup({"maxWidth": "100%"});
var html_f0f0693f4978b9652aa3534c163180ce = $(`<div id="html_f0f0693f4978b9652aa3534c163180ce" style="width: 100.0%; height: 100.0%;">Elevation: 14.0 m</div>`)[0];
popup_6ced48ff6901beee67040670c564e87d.setContent(html_f0f0693f4978b9652aa3534c163180ce);
circle_marker_8bc724327f081d6eb445980aefe4c296.bindPopup(popup_6ced48ff6901beee67040670c564e87d)
;
var circle_marker_f874d4a1c0eca92cc974c071313f859f = L.circleMarker(
[19.10056407005971, 72.83572551769956],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 12.0, "stroke": true, "weight": 3}
).addTo(map_51178e55c55eedd4ca37d99cd482b571);
var popup_23af2ac02edb74182267f484e1f19c3a = L.popup({"maxWidth": "100%"});
var html_32d52f8a4b1d377fa7a2c233539c1c1e = $(`<div id="html_32d52f8a4b1d377fa7a2c233539c1c1e" style="width: 100.0%; height: 100.0%;">Elevation: 12.0 m</div>`)[0];
popup_23af2ac02edb74182267f484e1f19c3a.setContent(html_32d52f8a4b1d377fa7a2c233539c1c1e);
circle_marker_f874d4a1c0eca92cc974c071313f859f.bindPopup(popup_23af2ac02edb74182267f484e1f19c3a)
;
var circle_marker_ee3155271576289506db9ff68b2bf5a2 = L.circleMarker(
[19.10056407005971, 72.84660332050854],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 15.0, "stroke": true, "weight": 3}
).addTo(map_51178e55c55eedd4ca37d99cd482b571);
var popup_062e7822d9aa34e1fab13ccaab1a94d4 = L.popup({"maxWidth": "100%"});
var html_f990f12854df040c9ae12e8e97409ecd = $(`<div id="html_f990f12854df040c9ae12e8e97409ecd" style="width: 100.0%; height: 100.0%;">Elevation: 15.0 m</div>`)[0];
popup_062e7822d9aa34e1fab13ccaab1a94d4.setContent(html_f990f12854df040c9ae12e8e97409ecd);
circle_marker_ee3155271576289506db9ff68b2bf5a2.bindPopup(popup_062e7822d9aa34e1fab13ccaab1a94d4)
;
var circle_marker_79d2ed244ea8009ac81ac2192f769fd2 = L.circleMarker(
[19.091473043404484, 72.83572551769956],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_51178e55c55eedd4ca37d99cd482b571);
var popup_ac2f0041c0ca335c17eb2e7423e3d76f = L.popup({"maxWidth": "100%"});
var html_b6a534aebcd9f623005097029e20367a = $(`<div id="html_b6a534aebcd9f623005097029e20367a" style="width: 100.0%; height: 100.0%;">Elevation: 3.0 m</div>`)[0];
popup_ac2f0041c0ca335c17eb2e7423e3d76f.setContent(html_b6a534aebcd9f623005097029e20367a);
circle_marker_79d2ed244ea8009ac81ac2192f769fd2.bindPopup(popup_ac2f0041c0ca335c17eb2e7423e3d76f)
;
var circle_marker_ed528f828b409b8ef0d4dc4b95133d4f = L.circleMarker(
[19.09147304340449, 72.84660332050854],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 12.0, "stroke": true, "weight": 3}
).addTo(map_51178e55c55eedd4ca37d99cd482b571);
var popup_22e361e676209d32366739d1292aa7fb = L.popup({"maxWidth": "100%"});
var html_9b8421980a5b0b019afcab20c9794cd4 = $(`<div id="html_9b8421980a5b0b019afcab20c9794cd4" style="width: 100.0%; height: 100.0%;">Elevation: 12.0 m</div>`)[0];
popup_22e361e676209d32366739d1292aa7fb.setContent(html_9b8421980a5b0b019afcab20c9794cd4);
circle_marker_ed528f828b409b8ef0d4dc4b95133d4f.bindPopup(popup_22e361e676209d32366739d1292aa7fb)
;
var circle_marker_4e160a27c4eb9844a7f3fed61e40ddfb = L.circleMarker(
[19.082381511492063, 72.83572551769956],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9.0, "stroke": true, "weight": 3}
).addTo(map_51178e55c55eedd4ca37d99cd482b571);
var popup_349f334727c5b347a6ae95e6f7e6d4b6 = L.popup({"maxWidth": "100%"});
var html_415163fa5c5af18cde0c974c4471df33 = $(`<div id="html_415163fa5c5af18cde0c974c4471df33" style="width: 100.0%; height: 100.0%;">Elevation: 9.0 m</div>`)[0];
popup_349f334727c5b347a6ae95e6f7e6d4b6.setContent(html_415163fa5c5af18cde0c974c4471df33);
circle_marker_4e160a27c4eb9844a7f3fed61e40ddfb.bindPopup(popup_349f334727c5b347a6ae95e6f7e6d4b6)
;
var circle_marker_06de3f7d62d426903820b3aec42a6c69 = L.circleMarker(
[19.07328947452504, 72.83572551769956],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 13.0, "stroke": true, "weight": 3}
).addTo(map_51178e55c55eedd4ca37d99cd482b571);
var popup_cfacd1399da3f12b8c4c1d853a7b78fe = L.popup({"maxWidth": "100%"});
var html_aaa3f1e1138789c3969c18e6ad5528ce = $(`<div id="html_aaa3f1e1138789c3969c18e6ad5528ce" style="width: 100.0%; height: 100.0%;">Elevation: 13.0 m</div>`)[0];
popup_cfacd1399da3f12b8c4c1d853a7b78fe.setContent(html_aaa3f1e1138789c3969c18e6ad5528ce);
circle_marker_06de3f7d62d426903820b3aec42a6c69.bindPopup(popup_cfacd1399da3f12b8c4c1d853a7b78fe)
;
var circle_marker_39179789c6401240e65b8dab01f7090b = L.circleMarker(
[19.07328947452504, 72.84660332050854],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 7.0, "stroke": true, "weight": 3}
).addTo(map_51178e55c55eedd4ca37d99cd482b571);
var popup_c490e0aaf582dddcb747434bd2dbcbec = L.popup({"maxWidth": "100%"});
var html_0510c1fd5f066d9ff55d39760d45e8f0 = $(`<div id="html_0510c1fd5f066d9ff55d39760d45e8f0" style="width: 100.0%; height: 100.0%;">Elevation: 7.0 m</div>`)[0];
popup_c490e0aaf582dddcb747434bd2dbcbec.setContent(html_0510c1fd5f066d9ff55d39760d45e8f0);
circle_marker_39179789c6401240e65b8dab01f7090b.bindPopup(popup_c490e0aaf582dddcb747434bd2dbcbec)
;
var circle_marker_3efc146e3480482d57833098d9c75a50 = L.circleMarker(
[19.06419693270607, 72.82484771489055],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_51178e55c55eedd4ca37d99cd482b571);
var popup_e092e2c67c47c9dcc89fbb9944014227 = L.popup({"maxWidth": "100%"});
var html_ed87fcaa3c8bb102f0790f2a636a3a8b = $(`<div id="html_ed87fcaa3c8bb102f0790f2a636a3a8b" style="width: 100.0%; height: 100.0%;">Elevation: -1.0 m</div>`)[0];
popup_e092e2c67c47c9dcc89fbb9944014227.setContent(html_ed87fcaa3c8bb102f0790f2a636a3a8b);
circle_marker_3efc146e3480482d57833098d9c75a50.bindPopup(popup_e092e2c67c47c9dcc89fbb9944014227)
;
var circle_marker_f39d7456c0bf897af9aa920c6a4fde6f = L.circleMarker(
[19.06419693270607, 72.83572551769956],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9.0, "stroke": true, "weight": 3}
).addTo(map_51178e55c55eedd4ca37d99cd482b571);