-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
6173 lines (4308 loc) · 194 KB
/
Copy pathindex.html
File metadata and controls
6173 lines (4308 loc) · 194 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<script>L_PREFER_CANVAS = false; L_NO_TOUCH = false; L_DISABLE_3D = false;</script>
<script src="https://cdn.jsdelivr.net/npm/leaflet@1.2.0/dist/leaflet.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.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/leaflet@1.2.0/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://rawgit.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>
<style> #map_efa52ebc0c1c48c0952c04c99ce6f25c {
position : relative;
width : 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
</head>
<body>
<div class="folium-map" id="map_efa52ebc0c1c48c0952c04c99ce6f25c" ></div>
</body>
<script>
var bounds = null;
var map_efa52ebc0c1c48c0952c04c99ce6f25c = L.map(
'map_efa52ebc0c1c48c0952c04c99ce6f25c',
{center: [15.2993,74.124],
zoom: 10,
maxBounds: bounds,
layers: [],
worldCopyJump: false,
crs: L.CRS.EPSG3857
});
var tile_layer_5c85be824ddf47d689a50a3576b5cb5c = L.tileLayer(
'https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png',
{
"attribution": null,
"detectRetina": false,
"maxZoom": 18,
"minZoom": 1,
"noWrap": false,
"subdomains": "abc"
}
).addTo(map_efa52ebc0c1c48c0952c04c99ce6f25c);
var feature_group_cb91d6b496464e2fa058e0c79559525a = L.featureGroup(
).addTo(map_efa52ebc0c1c48c0952c04c99ce6f25c);
var circle_marker_82764e45da07479e897ea7181ee3b0ac = L.circleMarker(
[15.274049,73.958568],
{
"bubblingMouseEvents": true,
"color": "grey",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "green",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 6,
"stroke": true,
"weight": 3
}
).addTo(feature_group_cb91d6b496464e2fa058e0c79559525a);
var popup_6295ceda6ae54c428c2e6c6e11ec6964 = L.popup({maxWidth: '300'});
var html_cdb4d4e536e34bdf9298ce289ba3d124 = $('<div id="html_cdb4d4e536e34bdf9298ce289ba3d124" style="width: 100.0%; height: 100.0%;">Aansav Realty & Infrastructure Pvt Ltd</div>')[0];
popup_6295ceda6ae54c428c2e6c6e11ec6964.setContent(html_cdb4d4e536e34bdf9298ce289ba3d124);
circle_marker_82764e45da07479e897ea7181ee3b0ac.bindPopup(popup_6295ceda6ae54c428c2e6c6e11ec6964);
var circle_marker_cf716cdd7037415da3836a4508bd499b = L.circleMarker(
[15.274049,73.958568],
{
"bubblingMouseEvents": true,
"color": "grey",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "green",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 6,
"stroke": true,
"weight": 3
}
).addTo(feature_group_cb91d6b496464e2fa058e0c79559525a);
var popup_a1dcf6c715c044778bd2dd4d1214a471 = L.popup({maxWidth: '300'});
var html_b65ef7b5812f484aae48f8885d8cc58e = $('<div id="html_b65ef7b5812f484aae48f8885d8cc58e" style="width: 100.0%; height: 100.0%;">Aansav realty and infrastructure Pvt.Ltd</div>')[0];
popup_a1dcf6c715c044778bd2dd4d1214a471.setContent(html_b65ef7b5812f484aae48f8885d8cc58e);
circle_marker_cf716cdd7037415da3836a4508bd499b.bindPopup(popup_a1dcf6c715c044778bd2dd4d1214a471);
var circle_marker_bc87c21036c449a2ae805f4045d5eb97 = L.circleMarker(
[15.511306,73.772651],
{
"bubblingMouseEvents": true,
"color": "grey",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "green",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 6,
"stroke": true,
"weight": 3
}
).addTo(feature_group_cb91d6b496464e2fa058e0c79559525a);
var popup_a6c61c9435884e0a855999526da12627 = L.popup({maxWidth: '300'});
var html_319f0a721d6e4ffbb2007f1f0b9de514 = $('<div id="html_319f0a721d6e4ffbb2007f1f0b9de514" style="width: 100.0%; height: 100.0%;">Acron Developers Pvt. Ltd.</div>')[0];
popup_a6c61c9435884e0a855999526da12627.setContent(html_319f0a721d6e4ffbb2007f1f0b9de514);
circle_marker_bc87c21036c449a2ae805f4045d5eb97.bindPopup(popup_a6c61c9435884e0a855999526da12627);
var circle_marker_b26bccec8e1744dea68da2a812de474d = L.circleMarker(
[15.4877586,73.8325828],
{
"bubblingMouseEvents": true,
"color": "grey",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "green",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 6,
"stroke": true,
"weight": 3
}
).addTo(feature_group_cb91d6b496464e2fa058e0c79559525a);
var popup_2cff1268be87402f967f3cfa5ff5fe12 = L.popup({maxWidth: '300'});
var html_95c2fac786a84250882ba7cdfeb1f485 = $('<div id="html_95c2fac786a84250882ba7cdfeb1f485" style="width: 100.0%; height: 100.0%;">Ajency.in</div>')[0];
popup_2cff1268be87402f967f3cfa5ff5fe12.setContent(html_95c2fac786a84250882ba7cdfeb1f485);
circle_marker_b26bccec8e1744dea68da2a812de474d.bindPopup(popup_2cff1268be87402f967f3cfa5ff5fe12);
var circle_marker_318013361a1b40079098f1f0911f4436 = L.circleMarker(
[15.487828,73.821024],
{
"bubblingMouseEvents": true,
"color": "grey",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "green",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 6,
"stroke": true,
"weight": 3
}
).addTo(feature_group_cb91d6b496464e2fa058e0c79559525a);
var popup_39954f19fc27471eb33e9af52877bc51 = L.popup({maxWidth: '300'});
var html_544444c90baa4ecd9387be8d3b3019df = $('<div id="html_544444c90baa4ecd9387be8d3b3019df" style="width: 100.0%; height: 100.0%;">Androcid</div>')[0];
popup_39954f19fc27471eb33e9af52877bc51.setContent(html_544444c90baa4ecd9387be8d3b3019df);
circle_marker_318013361a1b40079098f1f0911f4436.bindPopup(popup_39954f19fc27471eb33e9af52877bc51);
var circle_marker_dd0e21a81a374e508bdc9294f87c24b3 = L.circleMarker(
[15.4918632,73.8204753],
{
"bubblingMouseEvents": true,
"color": "grey",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "green",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 6,
"stroke": true,
"weight": 3
}
).addTo(feature_group_cb91d6b496464e2fa058e0c79559525a);
var popup_61bd31810d644e31814b85da3fb93c53 = L.popup({maxWidth: '300'});
var html_ee0867499c85404fa778b7b6592af6f6 = $('<div id="html_ee0867499c85404fa778b7b6592af6f6" style="width: 100.0%; height: 100.0%;">Apple Media</div>')[0];
popup_61bd31810d644e31814b85da3fb93c53.setContent(html_ee0867499c85404fa778b7b6592af6f6);
circle_marker_dd0e21a81a374e508bdc9294f87c24b3.bindPopup(popup_61bd31810d644e31814b85da3fb93c53);
var circle_marker_e341ce32f6e048aa94007a1f529af6f9 = L.circleMarker(
[15.564244,73.761793],
{
"bubblingMouseEvents": true,
"color": "grey",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "green",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 6,
"stroke": true,
"weight": 3
}
).addTo(feature_group_cb91d6b496464e2fa058e0c79559525a);
var popup_f21fbb3e22b44cfc903240252a64eace = L.popup({maxWidth: '300'});
var html_d2610476110e4d3a970f10d110b40e68 = $('<div id="html_d2610476110e4d3a970f10d110b40e68" style="width: 100.0%; height: 100.0%;">Appler</div>')[0];
popup_f21fbb3e22b44cfc903240252a64eace.setContent(html_d2610476110e4d3a970f10d110b40e68);
circle_marker_e341ce32f6e048aa94007a1f529af6f9.bindPopup(popup_f21fbb3e22b44cfc903240252a64eace);
var circle_marker_d5efb8b86cc04cefa3e3cd3bb3108e1f = L.circleMarker(
[15.485296,73.821385],
{
"bubblingMouseEvents": true,
"color": "grey",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "green",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 6,
"stroke": true,
"weight": 3
}
).addTo(feature_group_cb91d6b496464e2fa058e0c79559525a);
var popup_fe57750fece2404f925fa7484a483d1b = L.popup({maxWidth: '300'});
var html_a65cf19c37184647ae60a24b3038505b = $('<div id="html_a65cf19c37184647ae60a24b3038505b" style="width: 100.0%; height: 100.0%;">AR Solutions</div>')[0];
popup_fe57750fece2404f925fa7484a483d1b.setContent(html_a65cf19c37184647ae60a24b3038505b);
circle_marker_d5efb8b86cc04cefa3e3cd3bb3108e1f.bindPopup(popup_fe57750fece2404f925fa7484a483d1b);
var circle_marker_da3e87495ac54b4e8579a5f36f8b5b4a = L.circleMarker(
[15.262522,74.107166],
{
"bubblingMouseEvents": true,
"color": "grey",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "green",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 6,
"stroke": true,
"weight": 3
}
).addTo(feature_group_cb91d6b496464e2fa058e0c79559525a);
var popup_2450d1302fd04227830e6b6fd140d575 = L.popup({maxWidth: '300'});
var html_0c64cbb832474d86a2ac8ceb4b7ab02f = $('<div id="html_0c64cbb832474d86a2ac8ceb4b7ab02f" style="width: 100.0%; height: 100.0%;">Aspirations HR</div>')[0];
popup_2450d1302fd04227830e6b6fd140d575.setContent(html_0c64cbb832474d86a2ac8ceb4b7ab02f);
circle_marker_da3e87495ac54b4e8579a5f36f8b5b4a.bindPopup(popup_2450d1302fd04227830e6b6fd140d575);
var circle_marker_f79e203efd0a41f9ac07be56bae216ec = L.circleMarker(
[12.9100321,77.6520017],
{
"bubblingMouseEvents": true,
"color": "grey",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "green",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 6,
"stroke": true,
"weight": 3
}
).addTo(feature_group_cb91d6b496464e2fa058e0c79559525a);
var popup_dd6ba861aead434d94722861a6618bac = L.popup({maxWidth: '300'});
var html_7f7c0861f35c40d998c86c6a7acd3e41 = $('<div id="html_7f7c0861f35c40d998c86c6a7acd3e41" style="width: 100.0%; height: 100.0%;">Awign Enterprises Pvt Ltd</div>')[0];
popup_dd6ba861aead434d94722861a6618bac.setContent(html_7f7c0861f35c40d998c86c6a7acd3e41);
circle_marker_f79e203efd0a41f9ac07be56bae216ec.bindPopup(popup_dd6ba861aead434d94722861a6618bac);
var circle_marker_97f7b03810d94a8986b9d60c68fd2352 = L.circleMarker(
[15.5321189,73.8248118],
{
"bubblingMouseEvents": true,
"color": "grey",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "green",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 6,
"stroke": true,
"weight": 3
}
).addTo(feature_group_cb91d6b496464e2fa058e0c79559525a);
var popup_93792d3625a347a997a9466373d03a47 = L.popup({maxWidth: '300'});
var html_5b54c014211044d7bca099d96561ea36 = $('<div id="html_5b54c014211044d7bca099d96561ea36" style="width: 100.0%; height: 100.0%;">Beard Design</div>')[0];
popup_93792d3625a347a997a9466373d03a47.setContent(html_5b54c014211044d7bca099d96561ea36);
circle_marker_97f7b03810d94a8986b9d60c68fd2352.bindPopup(popup_93792d3625a347a997a9466373d03a47);
var circle_marker_917cfe12a110495fa4fa8212d3717ef0 = L.circleMarker(
[15.3653181,73.9340438],
{
"bubblingMouseEvents": true,
"color": "grey",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "green",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 6,
"stroke": true,
"weight": 3
}
).addTo(feature_group_cb91d6b496464e2fa058e0c79559525a);
var popup_29f81489c83948baabe395f6949b846c = L.popup({maxWidth: '300'});
var html_61aca3bc3b474aa398db99a8aecc3420 = $('<div id="html_61aca3bc3b474aa398db99a8aecc3420" style="width: 100.0%; height: 100.0%;">Bidchat</div>')[0];
popup_29f81489c83948baabe395f6949b846c.setContent(html_61aca3bc3b474aa398db99a8aecc3420);
circle_marker_917cfe12a110495fa4fa8212d3717ef0.bindPopup(popup_29f81489c83948baabe395f6949b846c);
var circle_marker_97dc9fc81f0f4bdf9d561aec4fff443c = L.circleMarker(
[15.296482,73.973768],
{
"bubblingMouseEvents": true,
"color": "grey",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "green",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 6,
"stroke": true,
"weight": 3
}
).addTo(feature_group_cb91d6b496464e2fa058e0c79559525a);
var popup_08f09758b26e45449886ccd4ed14ead2 = L.popup({maxWidth: '300'});
var html_454b3453d6ff49fb917056cb0ad8e22d = $('<div id="html_454b3453d6ff49fb917056cb0ad8e22d" style="width: 100.0%; height: 100.0%;">Bizfosys Technologies</div>')[0];
popup_08f09758b26e45449886ccd4ed14ead2.setContent(html_454b3453d6ff49fb917056cb0ad8e22d);
circle_marker_97dc9fc81f0f4bdf9d561aec4fff443c.bindPopup(popup_08f09758b26e45449886ccd4ed14ead2);
var circle_marker_47fef4b08f0f44388d38f1a3a97a71b3 = L.circleMarker(
[15.4874659,73.8242621],
{
"bubblingMouseEvents": true,
"color": "grey",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "green",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 6,
"stroke": true,
"weight": 3
}
).addTo(feature_group_cb91d6b496464e2fa058e0c79559525a);
var popup_49cc6c0a6a6b46ab8f772d8891367aa1 = L.popup({maxWidth: '300'});
var html_6f1b26370e1d45fc975d0c3991805d1a = $('<div id="html_6f1b26370e1d45fc975d0c3991805d1a" style="width: 100.0%; height: 100.0%;">BLITS Couriers and Xpress Services</div>')[0];
popup_49cc6c0a6a6b46ab8f772d8891367aa1.setContent(html_6f1b26370e1d45fc975d0c3991805d1a);
circle_marker_47fef4b08f0f44388d38f1a3a97a71b3.bindPopup(popup_49cc6c0a6a6b46ab8f772d8891367aa1);
var circle_marker_0189903dda2c4f749c58673ac1283fe5 = L.circleMarker(
[15.397273,73.809671],
{
"bubblingMouseEvents": true,
"color": "grey",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "green",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 6,
"stroke": true,
"weight": 3
}
).addTo(feature_group_cb91d6b496464e2fa058e0c79559525a);
var popup_ff72aa68b1fa49ef9ebf278c731b5951 = L.popup({maxWidth: '300'});
var html_babd1c1c7dfe44c593a2bb2b07e15733 = $('<div id="html_babd1c1c7dfe44c593a2bb2b07e15733" style="width: 100.0%; height: 100.0%;">BLITS Global Technologies Pvt Ltd</div>')[0];
popup_ff72aa68b1fa49ef9ebf278c731b5951.setContent(html_babd1c1c7dfe44c593a2bb2b07e15733);
circle_marker_0189903dda2c4f749c58673ac1283fe5.bindPopup(popup_ff72aa68b1fa49ef9ebf278c731b5951);
var circle_marker_887a8cefa69b4d43857394a4cb2d18c7 = L.circleMarker(
[15.5356179,73.8274889],
{
"bubblingMouseEvents": true,
"color": "grey",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "green",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 6,
"stroke": true,
"weight": 3
}
).addTo(feature_group_cb91d6b496464e2fa058e0c79559525a);
var popup_131bc93aa9ae4a2bbb8f2a5d9f472166 = L.popup({maxWidth: '300'});
var html_707df1b127494e8abb1014ccef6b8420 = $('<div id="html_707df1b127494e8abb1014ccef6b8420" style="width: 100.0%; height: 100.0%;">Blurb</div>')[0];
popup_131bc93aa9ae4a2bbb8f2a5d9f472166.setContent(html_707df1b127494e8abb1014ccef6b8420);
circle_marker_887a8cefa69b4d43857394a4cb2d18c7.bindPopup(popup_131bc93aa9ae4a2bbb8f2a5d9f472166);
var circle_marker_b87e4806c1fc412f90df6aa27670ba5f = L.circleMarker(
[15.4948825,73.8205582],
{
"bubblingMouseEvents": true,
"color": "grey",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "green",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 6,
"stroke": true,
"weight": 3
}
).addTo(feature_group_cb91d6b496464e2fa058e0c79559525a);
var popup_23b65e7c46964a18a2b2656f7d726a26 = L.popup({maxWidth: '300'});
var html_d1fbacbbcae547f0ac38f2cffd0e356c = $('<div id="html_d1fbacbbcae547f0ac38f2cffd0e356c" style="width: 100.0%; height: 100.0%;">Broadway Books</div>')[0];
popup_23b65e7c46964a18a2b2656f7d726a26.setContent(html_d1fbacbbcae547f0ac38f2cffd0e356c);
circle_marker_b87e4806c1fc412f90df6aa27670ba5f.bindPopup(popup_23b65e7c46964a18a2b2656f7d726a26);
var circle_marker_a76127b3c3254814b4bd615e2f019b57 = L.circleMarker(
[15.4948825,73.8205582],
{
"bubblingMouseEvents": true,
"color": "grey",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "green",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 6,
"stroke": true,
"weight": 3
}
).addTo(feature_group_cb91d6b496464e2fa058e0c79559525a);
var popup_f46a5c5d1cba4b229c6265640df43af8 = L.popup({maxWidth: '300'});
var html_3ce0c53d8fa2462e8f064a7820af08ff = $('<div id="html_3ce0c53d8fa2462e8f064a7820af08ff" style="width: 100.0%; height: 100.0%;">Broadway IT</div>')[0];
popup_f46a5c5d1cba4b229c6265640df43af8.setContent(html_3ce0c53d8fa2462e8f064a7820af08ff);
circle_marker_a76127b3c3254814b4bd615e2f019b57.bindPopup(popup_f46a5c5d1cba4b229c6265640df43af8);
var circle_marker_5813ee02861e48b78b5e2953f2f332a2 = L.circleMarker(
[15.5341815,73.8212986],
{
"bubblingMouseEvents": true,
"color": "grey",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "green",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 6,
"stroke": true,
"weight": 3
}
).addTo(feature_group_cb91d6b496464e2fa058e0c79559525a);
var popup_8e836c984bf94da2810f66a648961d5b = L.popup({maxWidth: '300'});
var html_2256613d9f9844589990e2021c2d17cb = $('<div id="html_2256613d9f9844589990e2021c2d17cb" style="width: 100.0%; height: 100.0%;">Browntape</div>')[0];
popup_8e836c984bf94da2810f66a648961d5b.setContent(html_2256613d9f9844589990e2021c2d17cb);
circle_marker_5813ee02861e48b78b5e2953f2f332a2.bindPopup(popup_8e836c984bf94da2810f66a648961d5b);
var circle_marker_32a9c4f152a24a27920ff1d8fd23b545 = L.circleMarker(
[15.5342182,73.8212794],
{
"bubblingMouseEvents": true,
"color": "grey",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "green",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 6,
"stroke": true,
"weight": 3
}
).addTo(feature_group_cb91d6b496464e2fa058e0c79559525a);
var popup_1b23c0457740434a91ae95f53ded9d64 = L.popup({maxWidth: '300'});
var html_cf3b9306829f4611a41eb7e0d418a5a7 = $('<div id="html_cf3b9306829f4611a41eb7e0d418a5a7" style="width: 100.0%; height: 100.0%;">Browntape eCommerce</div>')[0];
popup_1b23c0457740434a91ae95f53ded9d64.setContent(html_cf3b9306829f4611a41eb7e0d418a5a7);
circle_marker_32a9c4f152a24a27920ff1d8fd23b545.bindPopup(popup_1b23c0457740434a91ae95f53ded9d64);
var circle_marker_9c44bef358c34fa9be47d03313d39a54 = L.circleMarker(
[15.5341815,73.8212986],
{
"bubblingMouseEvents": true,
"color": "grey",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "green",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 6,
"stroke": true,
"weight": 3
}
).addTo(feature_group_cb91d6b496464e2fa058e0c79559525a);
var popup_33a82573459b4d4b878de549266f036c = L.popup({maxWidth: '300'});
var html_b569b9e9df334331948d11c3e5e16f55 = $('<div id="html_b569b9e9df334331948d11c3e5e16f55" style="width: 100.0%; height: 100.0%;">Browntape Technologies</div>')[0];
popup_33a82573459b4d4b878de549266f036c.setContent(html_b569b9e9df334331948d11c3e5e16f55);
circle_marker_9c44bef358c34fa9be47d03313d39a54.bindPopup(popup_33a82573459b4d4b878de549266f036c);
var circle_marker_c9f66ca7b20a4513ae3c79f50c5efaf3 = L.circleMarker(
[15.568523,74.0266943],
{
"bubblingMouseEvents": true,
"color": "grey",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "green",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 6,
"stroke": true,
"weight": 3
}
).addTo(feature_group_cb91d6b496464e2fa058e0c79559525a);
var popup_be7aeeabe3b1409d935a9d1cfb621450 = L.popup({maxWidth: '300'});
var html_9722a44f7efa4f2080520481be53b7db = $('<div id="html_9722a44f7efa4f2080520481be53b7db" style="width: 100.0%; height: 100.0%;">Business Etc.</div>')[0];
popup_be7aeeabe3b1409d935a9d1cfb621450.setContent(html_9722a44f7efa4f2080520481be53b7db);
circle_marker_c9f66ca7b20a4513ae3c79f50c5efaf3.bindPopup(popup_be7aeeabe3b1409d935a9d1cfb621450);
var circle_marker_2f1b2c35fc1e4d4b955233a5297c207a = L.circleMarker(
[15.455872,73.803191],
{
"bubblingMouseEvents": true,
"color": "grey",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "green",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 6,
"stroke": true,
"weight": 3
}
).addTo(feature_group_cb91d6b496464e2fa058e0c79559525a);
var popup_09a5e126bbf64b6c863bfc7d82665850 = L.popup({maxWidth: '300'});
var html_205e45d2e6e94deda1caf581c8a3a076 = $('<div id="html_205e45d2e6e94deda1caf581c8a3a076" style="width: 100.0%; height: 100.0%;">Citihomes Real Estate</div>')[0];
popup_09a5e126bbf64b6c863bfc7d82665850.setContent(html_205e45d2e6e94deda1caf581c8a3a076);
circle_marker_2f1b2c35fc1e4d4b955233a5297c207a.bindPopup(popup_09a5e126bbf64b6c863bfc7d82665850);
var circle_marker_ff7e9c0c2d8f467abdd43403b2f69a0a = L.circleMarker(
[15.296456,73.97373],
{
"bubblingMouseEvents": true,
"color": "grey",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "green",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 6,
"stroke": true,
"weight": 3
}
).addTo(feature_group_cb91d6b496464e2fa058e0c79559525a);
var popup_54866309d6e64b63a460fa13f40327b3 = L.popup({maxWidth: '300'});
var html_d259e2392d614b39b274a83320aa96ce = $('<div id="html_d259e2392d614b39b274a83320aa96ce" style="width: 100.0%; height: 100.0%;">CodeMax IT Solutions OPC</div>')[0];
popup_54866309d6e64b63a460fa13f40327b3.setContent(html_d259e2392d614b39b274a83320aa96ce);
circle_marker_ff7e9c0c2d8f467abdd43403b2f69a0a.bindPopup(popup_54866309d6e64b63a460fa13f40327b3);
var circle_marker_7f9efffe491249bb9e161665040dfc86 = L.circleMarker(
[15.296456,73.97373],
{
"bubblingMouseEvents": true,
"color": "grey",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "green",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 6,
"stroke": true,
"weight": 3
}
).addTo(feature_group_cb91d6b496464e2fa058e0c79559525a);
var popup_fd63be3d57dd4f5481ebb06f5eec7c06 = L.popup({maxWidth: '300'});
var html_ec3de855a27e4f8b8817d3c2a27f934b = $('<div id="html_ec3de855a27e4f8b8817d3c2a27f934b" style="width: 100.0%; height: 100.0%;">CodeMax IT Solutions OPC Pvt. Ltd.</div>')[0];
popup_fd63be3d57dd4f5481ebb06f5eec7c06.setContent(html_ec3de855a27e4f8b8817d3c2a27f934b);
circle_marker_7f9efffe491249bb9e161665040dfc86.bindPopup(popup_fd63be3d57dd4f5481ebb06f5eec7c06);
var circle_marker_50d07c2634374c21b3cde4a3fafa58bf = L.circleMarker(
[15.296456,73.97373],
{
"bubblingMouseEvents": true,
"color": "grey",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "green",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 6,
"stroke": true,
"weight": 3
}
).addTo(feature_group_cb91d6b496464e2fa058e0c79559525a);
var popup_1aca48d397f546f197b6d9bdaac93217 = L.popup({maxWidth: '300'});
var html_07f15918258d4042a33491711a395142 = $('<div id="html_07f15918258d4042a33491711a395142" style="width: 100.0%; height: 100.0%;">CodeMax IT Solutions Pvt. Ltd</div>')[0];
popup_1aca48d397f546f197b6d9bdaac93217.setContent(html_07f15918258d4042a33491711a395142);
circle_marker_50d07c2634374c21b3cde4a3fafa58bf.bindPopup(popup_1aca48d397f546f197b6d9bdaac93217);
var circle_marker_4a3be7547b2f4d81bc814b6e2aca136c = L.circleMarker(
[15.296456,73.97373],
{
"bubblingMouseEvents": true,
"color": "grey",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "green",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 6,
"stroke": true,
"weight": 3
}
).addTo(feature_group_cb91d6b496464e2fa058e0c79559525a);
var popup_71dcb5964cda4b7f921c86bb6ace3190 = L.popup({maxWidth: '300'});
var html_5927b36a42dd4b138b898751c53fd1b9 = $('<div id="html_5927b36a42dd4b138b898751c53fd1b9" style="width: 100.0%; height: 100.0%;">CodeMax IT Solutions Pvt. Ltd.</div>')[0];
popup_71dcb5964cda4b7f921c86bb6ace3190.setContent(html_5927b36a42dd4b138b898751c53fd1b9);
circle_marker_4a3be7547b2f4d81bc814b6e2aca136c.bindPopup(popup_71dcb5964cda4b7f921c86bb6ace3190);
var circle_marker_61ed75c8216e4dd58b30b294fb383a1a = L.circleMarker(
[15.486751,73.819924],
{
"bubblingMouseEvents": true,
"color": "grey",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "green",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 6,
"stroke": true,
"weight": 3
}
).addTo(feature_group_cb91d6b496464e2fa058e0c79559525a);
var popup_9bac2eec6617411e959c63f920d4a196 = L.popup({maxWidth: '300'});
var html_7f2e3489ad5842f6be79fe97a0e82a7a = $('<div id="html_7f2e3489ad5842f6be79fe97a0e82a7a" style="width: 100.0%; height: 100.0%;">Codeplay</div>')[0];
popup_9bac2eec6617411e959c63f920d4a196.setContent(html_7f2e3489ad5842f6be79fe97a0e82a7a);
circle_marker_61ed75c8216e4dd58b30b294fb383a1a.bindPopup(popup_9bac2eec6617411e959c63f920d4a196);
var circle_marker_d429760c2b02402e8e2fcd291d117e57 = L.circleMarker(
[15.2958242,73.9743837],
{
"bubblingMouseEvents": true,
"color": "grey",
"dashArray": null,
"dashOffset": null,
"fill": true,