-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmap_kl.html
3863 lines (1850 loc) · 199 KB
/
map_kl.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>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<script>
L_NO_TOUCH = false;
L_DISABLE_3D = false;
</script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.js"></script>
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.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://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.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://rawcdn.githack.com/python-visualization/folium/master/folium/templates/leaflet.awesome.rotate.css"/>
<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>
<meta name="viewport" content="width=device-width,
initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<style>
#map_5c96b7ad39df4b24ae59412e27cd0957 {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
</head>
<body>
<div class="folium-map" id="map_5c96b7ad39df4b24ae59412e27cd0957" ></div>
</body>
<script>
var map_5c96b7ad39df4b24ae59412e27cd0957 = L.map(
"map_5c96b7ad39df4b24ae59412e27cd0957",
{
center: [17.38878595, 78.46106473453146],
crs: L.CRS.EPSG3857,
zoom: 11,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_cdd53e3ef1f84b1089a6afb6dd8b1d92 = L.tileLayer(
"https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png",
{"attribution": "Data by \u003ca href=\"http://openstreetmap.org\"\u003eOpenStreetMap\u003c/a\u003e, under \u003ca href=\"http://www.openstreetmap.org/copyright\"\u003eODbL\u003c/a\u003e.", "detectRetina": false, "maxNativeZoom": 18, "maxZoom": 18, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abc", "tms": false}
).addTo(map_5c96b7ad39df4b24ae59412e27cd0957);
var circle_marker_34c024a407da42ac90386e0a6f1f1c3d = L.circleMarker(
[17.455470000000048, 78.54389000000003],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5c96b7ad39df4b24ae59412e27cd0957);
var popup_e6778d586c8f4de39a645f4f6c26a7bc = L.popup({"maxWidth": "100%"});
var html_156d661c14294a058ef58d732b60ec8a = $(`<div id="html_156d661c14294a058ef58d732b60ec8a" style="width: 100.0%; height: 100.0%;">A. S. Rao Nagar</div>`)[0];
popup_e6778d586c8f4de39a645f4f6c26a7bc.setContent(html_156d661c14294a058ef58d732b60ec8a);
circle_marker_34c024a407da42ac90386e0a6f1f1c3d.bindPopup(popup_e6778d586c8f4de39a645f4f6c26a7bc)
;
var circle_marker_61371cfe22b648829ba13ae3ea2aa453 = L.circleMarker(
[17.392977027745946, 78.45686724051741],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5c96b7ad39df4b24ae59412e27cd0957);
var popup_37a5cda4a9664088839f24da9ca730e2 = L.popup({"maxWidth": "100%"});
var html_bdab42d44f844ed294f6a3d69fc0c09a = $(`<div id="html_bdab42d44f844ed294f6a3d69fc0c09a" style="width: 100.0%; height: 100.0%;">A.C. Guards</div>`)[0];
popup_37a5cda4a9664088839f24da9ca730e2.setContent(html_bdab42d44f844ed294f6a3d69fc0c09a);
circle_marker_61371cfe22b648829ba13ae3ea2aa453.bindPopup(popup_37a5cda4a9664088839f24da9ca730e2)
;
var circle_marker_a919d383e0ee4435b26539ddc2616bd3 = L.circleMarker(
[17.337650000000053, 78.56414000000007],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5c96b7ad39df4b24ae59412e27cd0957);
var popup_e5060dff792844b7b16a88045f7e0479 = L.popup({"maxWidth": "100%"});
var html_e978760cc3574ad183e06752d7d94e31 = $(`<div id="html_e978760cc3574ad183e06752d7d94e31" style="width: 100.0%; height: 100.0%;">Abhyudaya Nagar</div>`)[0];
popup_e5060dff792844b7b16a88045f7e0479.setContent(html_e978760cc3574ad183e06752d7d94e31);
circle_marker_a919d383e0ee4435b26539ddc2616bd3.bindPopup(popup_e5060dff792844b7b16a88045f7e0479)
;
var circle_marker_ad30a129a4b74e589160839393c7b50f = L.circleMarker(
[17.389800000000037, 78.47658000000007],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5c96b7ad39df4b24ae59412e27cd0957);
var popup_1953498ec51e46da9bcd626640a59111 = L.popup({"maxWidth": "100%"});
var html_437604f0f74249109a76dd6bdaf0aaca = $(`<div id="html_437604f0f74249109a76dd6bdaf0aaca" style="width: 100.0%; height: 100.0%;">Abids</div>`)[0];
popup_1953498ec51e46da9bcd626640a59111.setContent(html_437604f0f74249109a76dd6bdaf0aaca);
circle_marker_ad30a129a4b74e589160839393c7b50f.bindPopup(popup_1953498ec51e46da9bcd626640a59111)
;
var circle_marker_3b49c60b1dee43669feb7697d37f2b0c = L.circleMarker(
[17.410610000000077, 78.51513000000006],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5c96b7ad39df4b24ae59412e27cd0957);
var popup_d8db54481e50401ea93dfc97cec24d10 = L.popup({"maxWidth": "100%"});
var html_5945cc33efd24bf49e75337fe3bc35fe = $(`<div id="html_5945cc33efd24bf49e75337fe3bc35fe" style="width: 100.0%; height: 100.0%;">Adikmet</div>`)[0];
popup_d8db54481e50401ea93dfc97cec24d10.setContent(html_5945cc33efd24bf49e75337fe3bc35fe);
circle_marker_3b49c60b1dee43669feb7697d37f2b0c.bindPopup(popup_d8db54481e50401ea93dfc97cec24d10)
;
var circle_marker_311d1670e887477eb7a03a8d64e78547 = L.circleMarker(
[17.37751000000003, 78.48005000000006],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5c96b7ad39df4b24ae59412e27cd0957);
var popup_853872087eb140409e8c41e1039ab628 = L.popup({"maxWidth": "100%"});
var html_191eed2c7de64a67a71d64e47b035580 = $(`<div id="html_191eed2c7de64a67a71d64e47b035580" style="width: 100.0%; height: 100.0%;">Afzal Gunj</div>`)[0];
popup_853872087eb140409e8c41e1039ab628.setContent(html_191eed2c7de64a67a71d64e47b035580);
circle_marker_311d1670e887477eb7a03a8d64e78547.bindPopup(popup_853872087eb140409e8c41e1039ab628)
;
var circle_marker_1506d0a9d22a4b9a8576898061d515f4 = L.circleMarker(
[17.387364823969637, 78.4669870622138],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5c96b7ad39df4b24ae59412e27cd0957);
var popup_66ced8abcf9348c5bbcd91eb8cfe62ca = L.popup({"maxWidth": "100%"});
var html_c864cd1177c94b0d9e3d4e53a934ac1e = $(`<div id="html_c864cd1177c94b0d9e3d4e53a934ac1e" style="width: 100.0%; height: 100.0%;">Aghapura</div>`)[0];
popup_66ced8abcf9348c5bbcd91eb8cfe62ca.setContent(html_c864cd1177c94b0d9e3d4e53a934ac1e);
circle_marker_1506d0a9d22a4b9a8576898061d515f4.bindPopup(popup_66ced8abcf9348c5bbcd91eb8cfe62ca)
;
var circle_marker_8d1ea0f2e78b4d41bd517b4a7a543b55 = L.circleMarker(
[17.346330000000023, 78.47254000000004],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5c96b7ad39df4b24ae59412e27cd0957);
var popup_61fc1a8582f14e7da75d4ae03720490b = L.popup({"maxWidth": "100%"});
var html_1cb4bb43df764a8b9cb7b97d0c13d0fc = $(`<div id="html_1cb4bb43df764a8b9cb7b97d0c13d0fc" style="width: 100.0%; height: 100.0%;">Aliabad, Hyderabad</div>`)[0];
popup_61fc1a8582f14e7da75d4ae03720490b.setContent(html_1cb4bb43df764a8b9cb7b97d0c13d0fc);
circle_marker_8d1ea0f2e78b4d41bd517b4a7a543b55.bindPopup(popup_61fc1a8582f14e7da75d4ae03720490b)
;
var circle_marker_e4eb0fd7dc634c91a2dd7a165e1409ce = L.circleMarker(
[17.36068000000006, 78.47998000000007],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5c96b7ad39df4b24ae59412e27cd0957);
var popup_d747dab2e09f472a9f2f34514b8ec75d = L.popup({"maxWidth": "100%"});
var html_28e6266fcd4f4555b0c93a7259d1c7c4 = $(`<div id="html_28e6266fcd4f4555b0c93a7259d1c7c4" style="width: 100.0%; height: 100.0%;">Alijah Kotla</div>`)[0];
popup_d747dab2e09f472a9f2f34514b8ec75d.setContent(html_28e6266fcd4f4555b0c93a7259d1c7c4);
circle_marker_e4eb0fd7dc634c91a2dd7a165e1409ce.bindPopup(popup_d747dab2e09f472a9f2f34514b8ec75d)
;
var circle_marker_f03983aeedc540a5ac0964941b011835 = L.circleMarker(
[17.503370000000075, 78.41602000000006],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5c96b7ad39df4b24ae59412e27cd0957);
var popup_bfc2dc677db74c88b87d92e495e60642 = L.popup({"maxWidth": "100%"});
var html_7b9f4b302a9446bcb3858b5ae3b0ac4d = $(`<div id="html_7b9f4b302a9446bcb3858b5ae3b0ac4d" style="width: 100.0%; height: 100.0%;">Allwyn Colony</div>`)[0];
popup_bfc2dc677db74c88b87d92e495e60642.setContent(html_7b9f4b302a9446bcb3858b5ae3b0ac4d);
circle_marker_f03983aeedc540a5ac0964941b011835.bindPopup(popup_bfc2dc677db74c88b87d92e495e60642)
;
var circle_marker_792e81a62fb64d12bf42b10923ce50d1 = L.circleMarker(
[17.535430000000076, 78.54427000000004],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5c96b7ad39df4b24ae59412e27cd0957);
var popup_7d7327099f74415a8d2846f3c247802e = L.popup({"maxWidth": "100%"});
var html_85fab0e012494110a604d64cf4757c7f = $(`<div id="html_85fab0e012494110a604d64cf4757c7f" style="width: 100.0%; height: 100.0%;">Alwal</div>`)[0];
popup_7d7327099f74415a8d2846f3c247802e.setContent(html_85fab0e012494110a604d64cf4757c7f);
circle_marker_792e81a62fb64d12bf42b10923ce50d1.bindPopup(popup_7d7327099f74415a8d2846f3c247802e)
;
var circle_marker_06d976ba5f544113afc7ee1c5653059e = L.circleMarker(
[17.385820000000024, 78.51836000000003],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5c96b7ad39df4b24ae59412e27cd0957);
var popup_a65d8643ee21416ab6c382aee58a58d5 = L.popup({"maxWidth": "100%"});
var html_061dc70ada1c48818c11c880c25ef681 = $(`<div id="html_061dc70ada1c48818c11c880c25ef681" style="width: 100.0%; height: 100.0%;">Amberpet</div>`)[0];
popup_a65d8643ee21416ab6c382aee58a58d5.setContent(html_061dc70ada1c48818c11c880c25ef681);
circle_marker_06d976ba5f544113afc7ee1c5653059e.bindPopup(popup_a65d8643ee21416ab6c382aee58a58d5)
;
var circle_marker_ff629a543ed54835a5e71909b3afa7a5 = L.circleMarker(
[17.435350000000028, 78.44861000000003],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5c96b7ad39df4b24ae59412e27cd0957);
var popup_063c9b7e2ca84e9d99132402a32a8c40 = L.popup({"maxWidth": "100%"});
var html_833fa5f6c99f4bf19a6438b76eab17db = $(`<div id="html_833fa5f6c99f4bf19a6438b76eab17db" style="width: 100.0%; height: 100.0%;">Ameerpet</div>`)[0];
popup_063c9b7e2ca84e9d99132402a32a8c40.setContent(html_833fa5f6c99f4bf19a6438b76eab17db);
circle_marker_ff629a543ed54835a5e71909b3afa7a5.bindPopup(popup_063c9b7e2ca84e9d99132402a32a8c40)
;
var circle_marker_6e496e4851254bf5ba64fa0d2f61b58d = L.circleMarker(
[17.40784000000002, 78.49150000000003],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5c96b7ad39df4b24ae59412e27cd0957);
var popup_c3d4a2cd96c6493ab32b907b2b8a180b = L.popup({"maxWidth": "100%"});
var html_ecbaedaaf69d4444a29ac372c6d00c86 = $(`<div id="html_ecbaedaaf69d4444a29ac372c6d00c86" style="width: 100.0%; height: 100.0%;">Ashok Nagar, Hyderabad</div>`)[0];
popup_c3d4a2cd96c6493ab32b907b2b8a180b.setContent(html_ecbaedaaf69d4444a29ac372c6d00c86);
circle_marker_6e496e4851254bf5ba64fa0d2f61b58d.bindPopup(popup_c3d4a2cd96c6493ab32b907b2b8a180b)
;
var circle_marker_4d0689dad30e4791960a26f11b77dda9 = L.circleMarker(
[17.385140000000035, 78.44738000000007],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5c96b7ad39df4b24ae59412e27cd0957);
var popup_e36e8c882aad40e2af0e31ebcb6ae318 = L.popup({"maxWidth": "100%"});
var html_64b93a681b14442a9f573a7e5083b599 = $(`<div id="html_64b93a681b14442a9f573a7e5083b599" style="width: 100.0%; height: 100.0%;">Asif Nagar</div>`)[0];
popup_e36e8c882aad40e2af0e31ebcb6ae318.setContent(html_64b93a681b14442a9f573a7e5083b599);
circle_marker_4d0689dad30e4791960a26f11b77dda9.bindPopup(popup_e36e8c882aad40e2af0e31ebcb6ae318)
;
var circle_marker_e7cabe97985540839d6803bc8b1d07db = L.circleMarker(
[17.369170000000054, 78.43683000000004],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5c96b7ad39df4b24ae59412e27cd0957);
var popup_53a6a5835ad64841ac3097b273123d42 = L.popup({"maxWidth": "100%"});
var html_dcf9e75b7864407aa5f17b003a946bfd = $(`<div id="html_dcf9e75b7864407aa5f17b003a946bfd" style="width: 100.0%; height: 100.0%;">Attapur</div>`)[0];
popup_53a6a5835ad64841ac3097b273123d42.setContent(html_dcf9e75b7864407aa5f17b003a946bfd);
circle_marker_e7cabe97985540839d6803bc8b1d07db.bindPopup(popup_53a6a5835ad64841ac3097b273123d42)
;
var circle_marker_4be4d7b15ffc41c9ba0f2b9741e602ca = L.circleMarker(
[17.40710000000007, 78.50233000000003],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5c96b7ad39df4b24ae59412e27cd0957);
var popup_b1337e3a42d2473c81ad784b3b821b26 = L.popup({"maxWidth": "100%"});
var html_1c449640d8bf443aa428046ced0c8b6d = $(`<div id="html_1c449640d8bf443aa428046ced0c8b6d" style="width: 100.0%; height: 100.0%;">Azamabad, Hyderabad</div>`)[0];
popup_b1337e3a42d2473c81ad784b3b821b26.setContent(html_1c449640d8bf443aa428046ced0c8b6d);
circle_marker_4be4d7b15ffc41c9ba0f2b9741e602ca.bindPopup(popup_b1337e3a42d2473c81ad784b3b821b26)
;
var circle_marker_f19416f9dca74cad9223f0208d5a02f0 = L.circleMarker(
[17.372720000000072, 78.49047000000007],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5c96b7ad39df4b24ae59412e27cd0957);
var popup_b4566452b61a4ea8a7883f8384b9c529 = L.popup({"maxWidth": "100%"});
var html_2c0132423825440b92e1a3725abe1ac7 = $(`<div id="html_2c0132423825440b92e1a3725abe1ac7" style="width: 100.0%; height: 100.0%;">Azampura</div>`)[0];
popup_b4566452b61a4ea8a7883f8384b9c529.setContent(html_2c0132423825440b92e1a3725abe1ac7);
circle_marker_f19416f9dca74cad9223f0208d5a02f0.bindPopup(popup_b4566452b61a4ea8a7883f8384b9c529)
;
var circle_marker_989d3c34a4904ce98ba86551d902726e = L.circleMarker(
[17.38897000000003, 78.48681000000005],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5c96b7ad39df4b24ae59412e27cd0957);
var popup_98d189bd811c4410bcdd2945dcc98bb8 = L.popup({"maxWidth": "100%"});
var html_50f71e346f224e7dba46d3f5aad8d006 = $(`<div id="html_50f71e346f224e7dba46d3f5aad8d006" style="width: 100.0%; height: 100.0%;">Badichowdi</div>`)[0];
popup_98d189bd811c4410bcdd2945dcc98bb8.setContent(html_50f71e346f224e7dba46d3f5aad8d006);
circle_marker_989d3c34a4904ce98ba86551d902726e.bindPopup(popup_98d189bd811c4410bcdd2945dcc98bb8)
;
var circle_marker_2cdc3b20779e4c81b534d1593adb8fdb = L.circleMarker(
[17.39931000000007, 78.49964000000006],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5c96b7ad39df4b24ae59412e27cd0957);
var popup_352a6eaa2de74227b7695cf1a23fc758 = L.popup({"maxWidth": "100%"});
var html_7d17315866d149569e6780bda4d7a35b = $(`<div id="html_7d17315866d149569e6780bda4d7a35b" style="width: 100.0%; height: 100.0%;">Bagh Lingampally</div>`)[0];
popup_352a6eaa2de74227b7695cf1a23fc758.setContent(html_7d17315866d149569e6780bda4d7a35b);
circle_marker_2cdc3b20779e4c81b534d1593adb8fdb.bindPopup(popup_352a6eaa2de74227b7695cf1a23fc758)
;
var circle_marker_182b30da7ff6480ea003038cac9ed193 = L.circleMarker(
[17.339920000000063, 78.54553000000004],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5c96b7ad39df4b24ae59412e27cd0957);
var popup_173763619ec242c9808264c28474d219 = L.popup({"maxWidth": "100%"});
var html_9bcd9a1d95c54a298276a41b2cc79ee2 = $(`<div id="html_9bcd9a1d95c54a298276a41b2cc79ee2" style="width: 100.0%; height: 100.0%;">Bairamalguda</div>`)[0];
popup_173763619ec242c9808264c28474d219.setContent(html_9bcd9a1d95c54a298276a41b2cc79ee2);
circle_marker_182b30da7ff6480ea003038cac9ed193.bindPopup(popup_173763619ec242c9808264c28474d219)
;
var circle_marker_bdd75dfc99d94b01915302154db70cea = L.circleMarker(
[17.448510000000056, 78.44924000000003],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5c96b7ad39df4b24ae59412e27cd0957);
var popup_c648c00a2b2f4f3ab3aeabb444c60677 = L.popup({"maxWidth": "100%"});
var html_3102ad9026034163be15eb38ec3bc0c4 = $(`<div id="html_3102ad9026034163be15eb38ec3bc0c4" style="width: 100.0%; height: 100.0%;">Balkampet</div>`)[0];
popup_c648c00a2b2f4f3ab3aeabb444c60677.setContent(html_3102ad9026034163be15eb38ec3bc0c4);
circle_marker_bdd75dfc99d94b01915302154db70cea.bindPopup(popup_c648c00a2b2f4f3ab3aeabb444c60677)
;
var circle_marker_d6830d79ec7b4045b545afff2dcc8df7 = L.circleMarker(
[17.415350000000046, 78.43435000000005],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5c96b7ad39df4b24ae59412e27cd0957);
var popup_861dd2793389476eaf187cf500f6d699 = L.popup({"maxWidth": "100%"});
var html_dbc9e014086b44e2b31fb30117a1b5ce = $(`<div id="html_dbc9e014086b44e2b31fb30117a1b5ce" style="width: 100.0%; height: 100.0%;">Banjara Hills</div>`)[0];
popup_861dd2793389476eaf187cf500f6d699.setContent(html_dbc9e014086b44e2b31fb30117a1b5ce);
circle_marker_d6830d79ec7b4045b545afff2dcc8df7.bindPopup(popup_861dd2793389476eaf187cf500f6d699)
;
var circle_marker_3f4fca65c5194f98b36f66cb9765c1da = L.circleMarker(
[17.38859199570786, 78.47665099785392],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5c96b7ad39df4b24ae59412e27cd0957);
var popup_5c148578799f42f794e4763b145a4a98 = L.popup({"maxWidth": "100%"});
var html_cdfbae09b462426c90afe3849157bba9 = $(`<div id="html_cdfbae09b462426c90afe3849157bba9" style="width: 100.0%; height: 100.0%;">Bank Street, Hyderabad</div>`)[0];
popup_5c148578799f42f794e4763b145a4a98.setContent(html_cdfbae09b462426c90afe3849157bba9);
circle_marker_3f4fca65c5194f98b36f66cb9765c1da.bindPopup(popup_5c148578799f42f794e4763b145a4a98)
;
var circle_marker_13eb71823305497da02d48405611ffa8 = L.circleMarker(
[17.31906174984278, 78.47990793172261],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5c96b7ad39df4b24ae59412e27cd0957);
var popup_9adbae44eaca4f7d93710fd4cd7a0e7d = L.popup({"maxWidth": "100%"});
var html_74a4d96f77d942459874f7f54a6c8e08 = $(`<div id="html_74a4d96f77d942459874f7f54a6c8e08" style="width: 100.0%; height: 100.0%;">Barkas, Hyderabad</div>`)[0];
popup_9adbae44eaca4f7d93710fd4cd7a0e7d.setContent(html_74a4d96f77d942459874f7f54a6c8e08);
circle_marker_13eb71823305497da02d48405611ffa8.bindPopup(popup_9adbae44eaca4f7d93710fd4cd7a0e7d)
;
var circle_marker_92bd9e57ebee44d388d12174380a3414 = L.circleMarker(
[17.393210000000067, 78.49922000000004],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5c96b7ad39df4b24ae59412e27cd0957);
var popup_12ea23647ce54826aa85b2fb833540fc = L.popup({"maxWidth": "100%"});
var html_1fd254d141f148c5bf10d765e84126a9 = $(`<div id="html_1fd254d141f148c5bf10d765e84126a9" style="width: 100.0%; height: 100.0%;">Barkatpura</div>`)[0];
popup_12ea23647ce54826aa85b2fb833540fc.setContent(html_1fd254d141f148c5bf10d765e84126a9);
circle_marker_92bd9e57ebee44d388d12174380a3414.bindPopup(popup_12ea23647ce54826aa85b2fb833540fc)
;
var circle_marker_853fd80916434f308c6626a07f6167eb = L.circleMarker(
[17.40211000000005, 78.47770000000008],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5c96b7ad39df4b24ae59412e27cd0957);
var popup_4f73a4d2f8b34a449f75a282ee014b56 = L.popup({"maxWidth": "100%"});
var html_47fac6822d2d48618afe5303fa060952 = $(`<div id="html_47fac6822d2d48618afe5303fa060952" style="width: 100.0%; height: 100.0%;">Basheerbagh</div>`)[0];
popup_4f73a4d2f8b34a449f75a282ee014b56.setContent(html_47fac6822d2d48618afe5303fa060952);
circle_marker_853fd80916434f308c6626a07f6167eb.bindPopup(popup_4f73a4d2f8b34a449f75a282ee014b56)
;
var circle_marker_7b4366fb2314469eac36a93f592822bf = L.circleMarker(
[17.398102938723884, 78.46271999999999],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5c96b7ad39df4b24ae59412e27cd0957);
var popup_3e1c97b542d44300922016645e551d99 = L.popup({"maxWidth": "100%"});
var html_5f4edb9db3064a0d909dbe0c68350887 = $(`<div id="html_5f4edb9db3064a0d909dbe0c68350887" style="width: 100.0%; height: 100.0%;">Bazarghat</div>`)[0];
popup_3e1c97b542d44300922016645e551d99.setContent(html_5f4edb9db3064a0d909dbe0c68350887);
circle_marker_7b4366fb2314469eac36a93f592822bf.bindPopup(popup_3e1c97b542d44300922016645e551d99)
;
var circle_marker_cfd20318c2144d188be26297de02ec17 = L.circleMarker(
[17.373500000000035, 78.46905000000004],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5c96b7ad39df4b24ae59412e27cd0957);
var popup_95674a0f92fe4afe83d33b692e76b6e3 = L.popup({"maxWidth": "100%"});
var html_0c53c5b4c452408c9c585b14c4c34a91 = $(`<div id="html_0c53c5b4c452408c9c585b14c4c34a91" style="width: 100.0%; height: 100.0%;">Begum Bazaar</div>`)[0];
popup_95674a0f92fe4afe83d33b692e76b6e3.setContent(html_0c53c5b4c452408c9c585b14c4c34a91);
circle_marker_cfd20318c2144d188be26297de02ec17.bindPopup(popup_95674a0f92fe4afe83d33b692e76b6e3)
;
var circle_marker_569740b58251441d9dd9c0482c9cf07b = L.circleMarker(
[17.447290000000066, 78.45396000000005],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5c96b7ad39df4b24ae59412e27cd0957);
var popup_f1d21a3d197d45ba8865be15a5fca9fb = L.popup({"maxWidth": "100%"});
var html_8f346bf6adae480b8451e9eec4725f4b = $(`<div id="html_8f346bf6adae480b8451e9eec4725f4b" style="width: 100.0%; height: 100.0%;">Begumpet</div>`)[0];
popup_f1d21a3d197d45ba8865be15a5fca9fb.setContent(html_8f346bf6adae480b8451e9eec4725f4b);
circle_marker_569740b58251441d9dd9c0482c9cf07b.bindPopup(popup_f1d21a3d197d45ba8865be15a5fca9fb)
;
var circle_marker_a7da6c6057b24e03aedaf3ec882c092b = L.circleMarker(
[17.52834000000007, 78.52504000000005],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5c96b7ad39df4b24ae59412e27cd0957);
var popup_9a139b87efdd452f9c38e53f8578730a = L.popup({"maxWidth": "100%"});
var html_cd2362ab8c8b41349ef42d047687b234 = $(`<div id="html_cd2362ab8c8b41349ef42d047687b234" style="width: 100.0%; height: 100.0%;">Bharat Nagar</div>`)[0];
popup_9a139b87efdd452f9c38e53f8578730a.setContent(html_cd2362ab8c8b41349ef42d047687b234);
circle_marker_a7da6c6057b24e03aedaf3ec882c092b.bindPopup(popup_9a139b87efdd452f9c38e53f8578730a)
;
var circle_marker_6c34b3ca107944ae8f51683aac39b0d8 = L.circleMarker(
[17.505990000000054, 78.30454000000003],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5c96b7ad39df4b24ae59412e27cd0957);
var popup_c5061f9082b84ccc8213c7f8a1c3d5ae = L.popup({"maxWidth": "100%"});
var html_d2f5afc8d18b480782c2d66413ff4038 = $(`<div id="html_d2f5afc8d18b480782c2d66413ff4038" style="width: 100.0%; height: 100.0%;">BHEL Township, Hyderabad</div>`)[0];
popup_c5061f9082b84ccc8213c7f8a1c3d5ae.setContent(html_d2f5afc8d18b480782c2d66413ff4038);
circle_marker_6c34b3ca107944ae8f51683aac39b0d8.bindPopup(popup_c5061f9082b84ccc8213c7f8a1c3d5ae)
;
var circle_marker_14359b21fdaa44e38528329f2b49190b = L.circleMarker(
[17.443340000000035, 78.45254000000006],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5c96b7ad39df4b24ae59412e27cd0957);
var popup_21267c29f7b3483bb6476142eff9fb20 = L.popup({"maxWidth": "100%"});
var html_148d1a97aa6e48049cb628ec8b417ced = $(`<div id="html_148d1a97aa6e48049cb628ec8b417ced" style="width: 100.0%; height: 100.0%;">BJR Nagar</div>`)[0];
popup_21267c29f7b3483bb6476142eff9fb20.setContent(html_148d1a97aa6e48049cb628ec8b417ced);
circle_marker_14359b21fdaa44e38528329f2b49190b.bindPopup(popup_21267c29f7b3483bb6476142eff9fb20)
;
var circle_marker_86e06848f1b94bc4b272996418eb2a47 = L.circleMarker(
[17.39137000000005, 78.48023000000006],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5c96b7ad39df4b24ae59412e27cd0957);
var popup_f7d2302490ac4539beeadfc321fd6d2a = L.popup({"maxWidth": "100%"});
var html_5bc86c23ffd141d48b1b8afea01c2fa4 = $(`<div id="html_5bc86c23ffd141d48b1b8afea01c2fa4" style="width: 100.0%; height: 100.0%;">Boggulkunta</div>`)[0];
popup_f7d2302490ac4539beeadfc321fd6d2a.setContent(html_5bc86c23ffd141d48b1b8afea01c2fa4);
circle_marker_86e06848f1b94bc4b272996418eb2a47.bindPopup(popup_f7d2302490ac4539beeadfc321fd6d2a)
;
var circle_marker_f662d18b213a4aebb2aa0216d993b7d2 = L.circleMarker(
[17.45270000000005, 78.41256000000004],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5c96b7ad39df4b24ae59412e27cd0957);
var popup_ab4b510c453e4b118f79bf770e8dff71 = L.popup({"maxWidth": "100%"});
var html_078289ad2d0b4b7e8318adc005174ee1 = $(`<div id="html_078289ad2d0b4b7e8318adc005174ee1" style="width: 100.0%; height: 100.0%;">Borabanda</div>`)[0];
popup_ab4b510c453e4b118f79bf770e8dff71.setContent(html_078289ad2d0b4b7e8318adc005174ee1);
circle_marker_f662d18b213a4aebb2aa0216d993b7d2.bindPopup(popup_ab4b510c453e4b118f79bf770e8dff71)
;
var circle_marker_aedf0d5f86c94387812dd7f33eea2ef3 = L.circleMarker(
[17.469280496483847, 78.49565155327014],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5c96b7ad39df4b24ae59412e27cd0957);
var popup_6f23d64254d24631a82afbc4210ac777 = L.popup({"maxWidth": "100%"});
var html_72a00bf7e7854d37916565c40e5cd4b0 = $(`<div id="html_72a00bf7e7854d37916565c40e5cd4b0" style="width: 100.0%; height: 100.0%;">Bowenpally</div>`)[0];
popup_6f23d64254d24631a82afbc4210ac777.setContent(html_72a00bf7e7854d37916565c40e5cd4b0);
circle_marker_aedf0d5f86c94387812dd7f33eea2ef3.bindPopup(popup_6f23d64254d24631a82afbc4210ac777)
;
var circle_marker_242daa18c57741a18d0b041ade2b00c5 = L.circleMarker(
[17.37805000000003, 78.51445000000007],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5c96b7ad39df4b24ae59412e27cd0957);
var popup_095510c507634b929a829f9efe28726e = L.popup({"maxWidth": "100%"});
var html_fe0f2e646c2644d18e2bf43a661397db = $(`<div id="html_fe0f2e646c2644d18e2bf43a661397db" style="width: 100.0%; height: 100.0%;">Brahman Vaadi</div>`)[0];
popup_095510c507634b929a829f9efe28726e.setContent(html_fe0f2e646c2644d18e2bf43a661397db);
circle_marker_242daa18c57741a18d0b041ade2b00c5.bindPopup(popup_095510c507634b929a829f9efe28726e)
;
var circle_marker_4a482ef041cc4715944ecace997c95cf = L.circleMarker(
[17.37733000000003, 78.48974000000004],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5c96b7ad39df4b24ae59412e27cd0957);
var popup_4f648cc49707490d8cc6319c388d43a3 = L.popup({"maxWidth": "100%"});
var html_8714ed024b39407ab0e478486937b6c6 = $(`<div id="html_8714ed024b39407ab0e478486937b6c6" style="width: 100.0%; height: 100.0%;">Chaderghat</div>`)[0];
popup_4f648cc49707490d8cc6319c388d43a3.setContent(html_8714ed024b39407ab0e478486937b6c6);
circle_marker_4a482ef041cc4715944ecace997c95cf.bindPopup(popup_4f648cc49707490d8cc6319c388d43a3)
;
var circle_marker_e4639f14d9d7452da277cd6f555029f4 = L.circleMarker(
[17.34767000000005, 78.51552000000004],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5c96b7ad39df4b24ae59412e27cd0957);
var popup_13dfb15b62504ba28c81451708edec3d = L.popup({"maxWidth": "100%"});
var html_5640071a897646ceaa8726deec744a8f = $(`<div id="html_5640071a897646ceaa8726deec744a8f" style="width: 100.0%; height: 100.0%;">Champapet</div>`)[0];
popup_13dfb15b62504ba28c81451708edec3d.setContent(html_5640071a897646ceaa8726deec744a8f);
circle_marker_e4639f14d9d7452da277cd6f555029f4.bindPopup(popup_13dfb15b62504ba28c81451708edec3d)
;
var circle_marker_dbb56c8dcf8a4c58a0d5c4972ff8dca8 = L.circleMarker(
[17.36918000000003, 78.49557000000004],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5c96b7ad39df4b24ae59412e27cd0957);
var popup_31d44c2de0ce45ba9e1ad2b4ef230a3b = L.popup({"maxWidth": "100%"});
var html_6166da0cd6624c9daf30a468b7b3a466 = $(`<div id="html_6166da0cd6624c9daf30a468b7b3a466" style="width: 100.0%; height: 100.0%;">Chanchalguda</div>`)[0];
popup_31d44c2de0ce45ba9e1ad2b4ef230a3b.setContent(html_6166da0cd6624c9daf30a468b7b3a466);
circle_marker_dbb56c8dcf8a4c58a0d5c4972ff8dca8.bindPopup(popup_31d44c2de0ce45ba9e1ad2b4ef230a3b)
;
var circle_marker_ea23a4f14348403ab786d7c8f0e22821 = L.circleMarker(
[17.322475573181325, 78.46904533327697],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5c96b7ad39df4b24ae59412e27cd0957);
var popup_323fc75347a3485ea24cbfd0b37fffda = L.popup({"maxWidth": "100%"});
var html_a02e1c18814749db9e07860a091c8182 = $(`<div id="html_a02e1c18814749db9e07860a091c8182" style="width: 100.0%; height: 100.0%;">Chandrayan Gutta</div>`)[0];
popup_323fc75347a3485ea24cbfd0b37fffda.setContent(html_a02e1c18814749db9e07860a091c8182);
circle_marker_ea23a4f14348403ab786d7c8f0e22821.bindPopup(popup_323fc75347a3485ea24cbfd0b37fffda)
;
var circle_marker_4e734d269b304d9c8bb868a97ed2f9d4 = L.circleMarker(
[17.370160000000055, 78.47805000000005],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5c96b7ad39df4b24ae59412e27cd0957);
var popup_b8b147bde71e4503b1a6696fe344aafe = L.popup({"maxWidth": "100%"});
var html_5985c78a23c1415ea2ae37028b176a49 = $(`<div id="html_5985c78a23c1415ea2ae37028b176a49" style="width: 100.0%; height: 100.0%;">Chatta Bazaar</div>`)[0];
popup_b8b147bde71e4503b1a6696fe344aafe.setContent(html_5985c78a23c1415ea2ae37028b176a49);
circle_marker_4e734d269b304d9c8bb868a97ed2f9d4.bindPopup(popup_b8b147bde71e4503b1a6696fe344aafe)
;
var circle_marker_744a6806a8a144968516dc18b338dab2 = L.circleMarker(
[17.466480000000047, 78.59999000000005],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5c96b7ad39df4b24ae59412e27cd0957);
var popup_2dd0e020ad3d4b07bd733826f659ecea = L.popup({"maxWidth": "100%"});
var html_6832b690a3b043bc92d851c79717fb30 = $(`<div id="html_6832b690a3b043bc92d851c79717fb30" style="width: 100.0%; height: 100.0%;">Cherlapally</div>`)[0];
popup_2dd0e020ad3d4b07bd733826f659ecea.setContent(html_6832b690a3b043bc92d851c79717fb30);
circle_marker_744a6806a8a144968516dc18b338dab2.bindPopup(popup_2dd0e020ad3d4b07bd733826f659ecea)
;
var circle_marker_0cbbadb0bda64bb886386e5a153ad1e1 = L.circleMarker(
[17.40301000000005, 78.49792000000008],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5c96b7ad39df4b24ae59412e27cd0957);
var popup_5bcea7b8deee42e99d33c467ee49b63d = L.popup({"maxWidth": "100%"});
var html_bd6d3fb596ad467fab493ebed9f14f95 = $(`<div id="html_bd6d3fb596ad467fab493ebed9f14f95" style="width: 100.0%; height: 100.0%;">Chikkadpally</div>`)[0];
popup_5bcea7b8deee42e99d33c467ee49b63d.setContent(html_bd6d3fb596ad467fab493ebed9f14f95);
circle_marker_0cbbadb0bda64bb886386e5a153ad1e1.bindPopup(popup_5bcea7b8deee42e99d33c467ee49b63d)
;
var circle_marker_b43cb90a0b9e4497842d9b662611e7a8 = L.circleMarker(
[17.426750000000027, 78.51229000000006],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5c96b7ad39df4b24ae59412e27cd0957);
var popup_6798bede83cc42cf895c545bfbe68d6c = L.popup({"maxWidth": "100%"});
var html_fe1a795f90284952ad086733e2ab292a = $(`<div id="html_fe1a795f90284952ad086733e2ab292a" style="width: 100.0%; height: 100.0%;">Chilkalguda</div>`)[0];
popup_6798bede83cc42cf895c545bfbe68d6c.setContent(html_fe1a795f90284952ad086733e2ab292a);
circle_marker_b43cb90a0b9e4497842d9b662611e7a8.bindPopup(popup_6798bede83cc42cf895c545bfbe68d6c)
;
var circle_marker_e2cc2f22124549309c0231a509ae2458 = L.circleMarker(
[17.406620000000032, 78.45659000000006],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5c96b7ad39df4b24ae59412e27cd0957);
var popup_071b6bbeba5f40329ef79584db6f4c2e = L.popup({"maxWidth": "100%"});
var html_7042616eafee42149bcaff4cbb7dd9c0 = $(`<div id="html_7042616eafee42149bcaff4cbb7dd9c0" style="width: 100.0%; height: 100.0%;">Chintal Basti</div>`)[0];
popup_071b6bbeba5f40329ef79584db6f4c2e.setContent(html_7042616eafee42149bcaff4cbb7dd9c0);
circle_marker_e2cc2f22124549309c0231a509ae2458.bindPopup(popup_071b6bbeba5f40329ef79584db6f4c2e)
;
var circle_marker_0f5535f8a3c14fc79d8d987f85d0c0a9 = L.circleMarker(
[17.33862000000005, 78.55741000000006],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5c96b7ad39df4b24ae59412e27cd0957);
var popup_74323eca53c54772b1b34b98242ab40d = L.popup({"maxWidth": "100%"});
var html_59b70c05b93c45c098ec5f5807f61a58 = $(`<div id="html_59b70c05b93c45c098ec5f5807f61a58" style="width: 100.0%; height: 100.0%;">Chintalakunta</div>`)[0];
popup_74323eca53c54772b1b34b98242ab40d.setContent(html_59b70c05b93c45c098ec5f5807f61a58);
circle_marker_0f5535f8a3c14fc79d8d987f85d0c0a9.bindPopup(popup_74323eca53c54772b1b34b98242ab40d)
;
var circle_marker_9a5fbdf4fe31473d9192255666e601c3 = L.circleMarker(
[17.366180000000043, 78.48736000000008],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5c96b7ad39df4b24ae59412e27cd0957);
var popup_c59607ebad2a466eb5e3c6b930b5cfea = L.popup({"maxWidth": "100%"});
var html_60e0ec7d6b2d407186c4ba88e7e9eb10 = $(`<div id="html_60e0ec7d6b2d407186c4ba88e7e9eb10" style="width: 100.0%; height: 100.0%;">Dabirpura</div>`)[0];
popup_c59607ebad2a466eb5e3c6b930b5cfea.setContent(html_60e0ec7d6b2d407186c4ba88e7e9eb10);
circle_marker_9a5fbdf4fe31473d9192255666e601c3.bindPopup(popup_c59607ebad2a466eb5e3c6b930b5cfea)
;
var circle_marker_96c5ad8e7d2c49a9af2b053e46281e86 = L.circleMarker(
[17.37200000000007, 78.48474000000004],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5c96b7ad39df4b24ae59412e27cd0957);
var popup_254131e9406e4c60878827f895f03f3b = L.popup({"maxWidth": "100%"});
var html_1f60849a7f874e1da1edfae0eaa9f3d2 = $(`<div id="html_1f60849a7f874e1da1edfae0eaa9f3d2" style="width: 100.0%; height: 100.0%;">Dar-ul-Shifa</div>`)[0];
popup_254131e9406e4c60878827f895f03f3b.setContent(html_1f60849a7f874e1da1edfae0eaa9f3d2);
circle_marker_96c5ad8e7d2c49a9af2b053e46281e86.bindPopup(popup_254131e9406e4c60878827f895f03f3b)
;
var circle_marker_8ca9484d86fb4b21884b511ed0e7b05f = L.circleMarker(
[17.374070000000074, 78.45992000000007],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5c96b7ad39df4b24ae59412e27cd0957);