-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmap.html
845 lines (488 loc) · 40.8 KB
/
map.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
<!DOCTYPE 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-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://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_656114b05ecb4027af9e4c8678b58d59 {
position: relative;
width: 75.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet-ant-path.min.js"></script>
</head>
<body>
<div class="folium-map" id="map_656114b05ecb4027af9e4c8678b58d59" ></div>
</body>
<script>
var map_656114b05ecb4027af9e4c8678b58d59 = L.map(
"map_656114b05ecb4027af9e4c8678b58d59",
{
center: [24.904678, 67.137966],
crs: L.CRS.EPSG3857,
zoom: 18,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_0b63359d5f1349ffb9e4e88499ea4403 = L.tileLayer(
"https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png",
{"attribution": "Data by \u0026copy; \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_656114b05ecb4027af9e4c8678b58d59);
ant_path_d00127123f3943f1904daac77f1546d5 = L.polyline.antPath(
[[24.904168006780303, 67.13839530944824], [24.904258020328015, 67.13839262723923]],
{"bubblingMouseEvents": true, "color": "#0000FF", "dashArray": [10, 20], "dashOffset": null, "delay": 400, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "hardwareAcceleration": false, "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "paused": false, "pulseColor": "#FFFFFF", "reverse": false, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_656114b05ecb4027af9e4c8678b58d59);
function geo_json_eaddef74f64c4416a97aefd292e096b9_onEachFeature(feature, layer) {
layer.on({
});
};
var geo_json_eaddef74f64c4416a97aefd292e096b9 = L.geoJson(null, {
onEachFeature: geo_json_eaddef74f64c4416a97aefd292e096b9_onEachFeature,
});
function geo_json_eaddef74f64c4416a97aefd292e096b9_add (data) {
geo_json_eaddef74f64c4416a97aefd292e096b9
.addData(data)
.addTo(map_656114b05ecb4027af9e4c8678b58d59);
}
geo_json_eaddef74f64c4416a97aefd292e096b9_add({"features": [{"geometry": {"coordinates": [[[67.13860988616943, 24.905559560233588], [67.13874399662018, 24.905559560233588], [67.13874399662018, 24.905671467696735], [67.13860988616943, 24.905671467696735], [67.13860988616943, 24.905559560233588]]], "type": "Polygon"}, "properties": {"fill": "#555555", "fill-opacity": 0.5, "name ": "Washroom 1", "stroke": "#555555", "stroke-opacity": 1, "stroke-width": 2}, "type": "Feature"}, {"geometry": {"coordinates": [[[67.1381002664566, 24.905773643987498], [67.13824510574341, 24.905773643987498], [67.13824510574341, 24.90590987891024], [67.1381002664566, 24.90590987891024], [67.1381002664566, 24.905773643987498]]], "type": "Polygon"}, "properties": {"fill": "#555555", "fill-opacity": 0.5, "name ": "Music Room", "stroke": "#555555", "stroke-opacity": 1, "stroke-width": 2}, "type": "Feature"}, {"geometry": {"coordinates": [[[67.13716685771942, 24.90550603923707], [67.13755309581755, 24.90550603923707], [67.13755309581755, 24.90575418184339], [67.13716685771942, 24.90575418184339], [67.13716685771942, 24.90550603923707]]], "type": "Polygon"}, "properties": {"fill": "#555555", "fill-opacity": 0.5, "name ": "Learn Courtyard", "stroke": "#555555", "stroke-opacity": 1, "stroke-width": 2}, "type": "Feature"}, {"geometry": {"coordinates": [[[67.13708102703094, 24.905895282318582], [67.13727414608002, 24.905895282318582], [67.13727414608002, 24.906026651581474], [67.13708102703094, 24.906026651581474], [67.13708102703094, 24.905895282318582]]], "type": "Polygon"}, "properties": {"fill": "#555555", "fill-opacity": 0.5, "name": "Female Lounge", "stroke": "#555555", "stroke-opacity": 1, "stroke-width": 2}, "type": "Feature"}, {"geometry": {"coordinates": [[[67.13674843311308, 24.905549829145045], [67.13690400123596, 24.905549829145045], [67.13690400123596, 24.90566173661702], [67.13674843311308, 24.90566173661702], [67.13674843311308, 24.905549829145045]]], "type": "Polygon"}, "properties": {"fill": "#555555", "fill-opacity": 0.5, "name": "W-002", "stroke": "#555555", "stroke-opacity": 1, "stroke-width": 2}, "type": "Feature"}, {"geometry": {"coordinates": [[[67.13674306869507, 24.905384400522333], [67.13690400123596, 24.905384400522333], [67.13690400123596, 24.905476845956482], [67.13674306869507, 24.905476845956482], [67.13674306869507, 24.905384400522333]]], "type": "Polygon"}, "properties": {"fill": "#555555", "fill-opacity": 0.5, "name": "W-003", "stroke": "#555555", "stroke-opacity": 1, "stroke-width": 2}, "type": "Feature"}, {"geometry": {"coordinates": [[[67.13674843311308, 24.90517031609313], [67.13690936565398, 24.90517031609313], [67.13690936565398, 24.905282223909268], [67.13674843311308, 24.905282223909268], [67.13674843311308, 24.90517031609313]]], "type": "Polygon"}, "properties": {"fill": "#555555", "fill-opacity": 0.5, "name": "Washroom 3", "stroke": "#555555", "stroke-opacity": 1, "stroke-width": 2}, "type": "Feature"}, {"geometry": {"coordinates": [[[67.13696837425232, 24.904946500156413], [67.13711857795715, 24.904946500156413], [67.13711857795715, 24.90505840817552], [67.13696837425232, 24.90505840817552], [67.13696837425232, 24.904946500156413]]], "type": "Polygon"}, "properties": {"fill": "#555555", "fill-opacity": 0.5, "name": "C-025", "stroke": "#555555", "stroke-opacity": 1, "stroke-width": 2}, "type": "Feature"}, {"geometry": {"coordinates": [[[67.13673233985901, 24.904747011696777], [67.13688790798187, 24.904747011696777], [67.13688790798187, 24.904868651039788], [67.13673233985901, 24.904868651039788], [67.13673233985901, 24.904747011696777]]], "type": "Polygon"}, "properties": {"fill": "#555555", "fill-opacity": 0.5, "name ": "W-004", "stroke": "#555555", "stroke-opacity": 1, "stroke-width": 2}, "type": "Feature"}, {"geometry": {"coordinates": [[[67.13695228099823, 24.904343168218112], [67.13746726512909, 24.904343168218112], [67.13746726512909, 24.90469835592598], [67.13695228099823, 24.90469835592598], [67.13695228099823, 24.904343168218112]]], "type": "Polygon"}, "properties": {"fill": "#555555", "fill-opacity": 0.5, "name": "Amphitheatre", "stroke": "#555555", "stroke-opacity": 1, "stroke-width": 2}, "type": "Feature"}, {"geometry": {"coordinates": [[[67.13832557201385, 24.904046366746677], [67.13852405548096, 24.904046366746677], [67.13852405548096, 24.904168006780303], [67.13832557201385, 24.904168006780303], [67.13832557201385, 24.904046366746677]]], "type": "Polygon"}, "properties": {"fill": "#555555", "fill-opacity": 0.5, "name": "Dhabba", "stroke": "#555555", "stroke-opacity": 1, "stroke-width": 2}, "type": "Feature"}, {"geometry": {"coordinates": [[[67.1383148431778, 24.903817683158852], [67.13853478431702, 24.903817683158852], [67.13853478431702, 24.903934457809843], [67.1383148431778, 24.903934457809843], [67.1383148431778, 24.903817683158852]]], "type": "Polygon"}, "properties": {"fill": "#555555", "fill-opacity": 0.5, "name": "Garden", "stroke": "#555555", "stroke-opacity": 1, "stroke-width": 2}, "type": "Feature"}, {"geometry": {"coordinates": [[[67.1383148431778, 24.904255587530287], [67.13845431804657, 24.904255587530287], [67.13845431804657, 24.90436749617591], [67.1383148431778, 24.90436749617591], [67.1383148431778, 24.904255587530287]]], "type": "Polygon"}, "properties": {"fill": "#555555", "fill-opacity": 0.5, "name": "Dukaan", "stroke": "#555555", "stroke-opacity": 1, "stroke-width": 2}, "type": "Feature"}, {"geometry": {"coordinates": [[[67.1373599767685, 24.903048913948464], [67.13832020759583, 24.903048913948464], [67.13832020759583, 24.903423567896056], [67.1373599767685, 24.903423567896056], [67.1373599767685, 24.903048913948464]]], "type": "Polygon"}, "properties": {"fill": "#555555", "fill-opacity": 0.5, "name": "Courts", "stroke": "#555555", "stroke-opacity": 1, "stroke-width": 2}, "type": "Feature"}, {"geometry": {"coordinates": [[[67.13847577571869, 24.905763912915823], [67.1386581659317, 24.905763912915823], [67.1386581659317, 24.905885551256503], [67.13847577571869, 24.905885551256503], [67.13847577571869, 24.905763912915823]]], "type": "Polygon"}, "properties": {"fill": "#555555", "fill-opacity": 0.5, "name": "Linux Lab ", "stroke": "#555555", "stroke-opacity": 1, "stroke-width": 2}, "type": "Feature"}, {"geometry": {"coordinates": [[[67.13846504688263, 24.90530655168196], [67.13866353034973, 24.90530655168196], [67.13866353034973, 24.905437921571597], [67.13846504688263, 24.905437921571597], [67.13846504688263, 24.90530655168196]]], "type": "Polygon"}, "properties": {"fill": "#555555", "fill-opacity": 0.5, "name": "E-010", "stroke": "#555555", "stroke-opacity": 1, "stroke-width": 2}, "type": "Feature"}, {"geometry": {"coordinates": [[[67.13847041130066, 24.905102198242318], [67.13866353034973, 24.905102198242318], [67.13866353034973, 24.905214106120233], [67.13847041130066, 24.905214106120233], [67.13847041130066, 24.905102198242318]]], "type": "Polygon"}, "properties": {"fill": "#555555", "fill-opacity": 0.5, "name": "E-011", "stroke": "#555555", "stroke-opacity": 1, "stroke-width": 2}, "type": "Feature"}, {"geometry": {"coordinates": [[[67.13847041130066, 24.904888113323562], [67.13866889476776, 24.904888113323562], [67.13866889476776, 24.905009752527494], [67.13847041130066, 24.905009752527494], [67.13847041130066, 24.904888113323562]]], "type": "Polygon"}, "properties": {"fill": "#555555", "fill-opacity": 0.5, "name": "E-012", "stroke": "#555555", "stroke-opacity": 1, "stroke-width": 2}, "type": "Feature"}, {"geometry": {"coordinates": [[[67.13758528232574, 24.90411448518027], [67.13774621486664, 24.90411448518027], [67.13774621486664, 24.90423612514677], [67.13758528232574, 24.90423612514677], [67.13758528232574, 24.90411448518027]]], "type": "Polygon"}, "properties": {"fill": "#555555", "fill-opacity": 0.5, "name": "C-015", "stroke": "#555555", "stroke-opacity": 1, "stroke-width": 2}, "type": "Feature"}, {"geometry": {"coordinates": [[[67.13821291923523, 24.904411286487893], [67.138352394104, 24.904411286487893], [67.138352394104, 24.90465456571588], [67.13821291923523, 24.90465456571588], [67.13821291923523, 24.904411286487893]]], "type": "Polygon"}, "properties": {"fill": "#555555", "fill-opacity": 0.5, "name": "Tapal Cafeteria", "stroke": "#555555", "stroke-opacity": 1, "stroke-width": 2}, "type": "Feature"}, {"geometry": {"coordinates": [[[67.13780522346497, 24.90575418184339], [67.1379768848419, 24.90575418184339], [67.1379768848419, 24.90591960997039], [67.13780522346497, 24.90591960997039], [67.13780522346497, 24.90575418184339]]], "type": "Polygon"}, "properties": {"fill": "#555555", "fill-opacity": 0.5, "nae": "C-001", "stroke": "#555555", "stroke-opacity": 1, "stroke-width": 2}, "type": "Feature"}, {"geometry": {"coordinates": [[[67.13752627372742, 24.90476160842426], [67.13769257068634, 24.90476160842426], [67.13769257068634, 24.904888113323562], [67.13752627372742, 24.904888113323562], [67.13752627372742, 24.90476160842426]]], "type": "Polygon"}, "properties": {"fill": "#555555", "fill-opacity": 0.5, "name": "Washroom 2", "stroke": "#555555", "stroke-opacity": 1, "stroke-width": 2}, "type": "Feature"}, {"geometry": {"coordinates": [[[67.13782131671906, 24.905092467117694], [67.13799834251404, 24.905092467117694], [67.13799834251404, 24.905238433906334], [67.13782131671906, 24.905238433906334], [67.13782131671906, 24.905092467117694]]], "type": "Polygon"}, "properties": {"fill": "#555555", "fill-opacity": 0.5, "name": "C-007", "stroke": "#555555", "stroke-opacity": 1, "stroke-width": 2}, "type": "Feature"}, {"geometry": {"coordinates": [[[67.13781595230101, 24.90542332492409], [67.13798224925995, 24.90542332492409], [67.13798224925995, 24.905549829145045], [67.13781595230101, 24.905549829145045], [67.13781595230101, 24.90542332492409]]], "type": "Polygon"}, "properties": {"fill": "#555555", "fill-opacity": 0.5, "name": "C-004", "stroke": "#555555", "stroke-opacity": 1, "stroke-width": 2}, "type": "Feature"}, {"geometry": {"coordinates": [[[67.1364963054657, 24.90409988837625], [67.13681817054749, 24.90409988837625], [67.13681817054749, 24.90426531872089], [67.1364963054657, 24.90426531872089], [67.1364963054657, 24.90409988837625]]], "type": "Polygon"}, "properties": {"fill": "#555555", "fill-opacity": 0.5, "name": "Swimming Pool", "stroke": "#555555", "stroke-opacity": 1, "stroke-width": 2}, "type": "Feature"}, {"geometry": {"coordinates": [[[67.1368932723999, 24.90409988837625], [67.13721513748169, 24.90409988837625], [67.13721513748169, 24.904255587530287], [67.1368932723999, 24.904255587530287], [67.1368932723999, 24.90409988837625]]], "type": "Polygon"}, "properties": {"fill": "#555555", "fill-opacity": 0.5, "name": "Table Tennis", "stroke": "#555555", "stroke-opacity": 1, "stroke-width": 2}, "type": "Feature"}, {"geometry": {"coordinates": [[[67.13735461235046, 24.90394905463345], [67.13749408721924, 24.90394905463345], [67.13749408721924, 24.904240990742938], [67.13735461235046, 24.904240990742938], [67.13735461235046, 24.90394905463345]]], "type": "Polygon"}, "properties": {"fill": "#555555", "fill-opacity": 0.5, "name": "Lockers", "stroke": "#555555", "stroke-opacity": 1, "stroke-width": 2}, "type": "Feature"}, {"geometry": {"coordinates": [[[67.13737070560455, 24.90366684907113], [67.13771939277649, 24.90366684907113], [67.13771939277649, 24.90379335509266], [67.13737070560455, 24.90379335509266], [67.13737070560455, 24.90366684907113]]], "type": "Polygon"}, "properties": {"fill": "#555555", "fill-opacity": 0.5, "name": "Gym", "stroke": "#555555", "stroke-opacity": 1, "stroke-width": 2}, "type": "Feature"}], "type": "FeatureCollection"});
var marker_52f8fe15ba01467c906cd4a04df7c9dc = L.marker(
[24.904576716415114, 67.13723123073576],
{}
).addTo(map_656114b05ecb4027af9e4c8678b58d59);
var popup_55da5c969ac04aa2bc2579212da07432 = L.popup({"maxWidth": "100%"});
var html_e4ebb40b48184b449b7f15dcbd47137d = $(`<div id="html_e4ebb40b48184b449b7f15dcbd47137d" style="width: 100.0%; height: 100.0%;">Amphitheatre</div>`)[0];
popup_55da5c969ac04aa2bc2579212da07432.setContent(html_e4ebb40b48184b449b7f15dcbd47137d);
marker_52f8fe15ba01467c906cd4a04df7c9dc.bindPopup(popup_55da5c969ac04aa2bc2579212da07432)
;
marker_52f8fe15ba01467c906cd4a04df7c9dc.bindTooltip(
`<div>
Click
</div>`,
{"sticky": true}
);
var marker_bb34631780e44a8e9fefca1542693655 = L.marker(
[24.90585635806568, 67.13789105415344],
{}
).addTo(map_656114b05ecb4027af9e4c8678b58d59);
var popup_effdcb4c19e149919feec136050dda55 = L.popup({"maxWidth": "100%"});
var html_f90ec7bf582b4fd1bed3a2bf289c522e = $(`<div id="html_f90ec7bf582b4fd1bed3a2bf289c522e" style="width: 100.0%; height: 100.0%;">C-001</div>`)[0];
popup_effdcb4c19e149919feec136050dda55.setContent(html_f90ec7bf582b4fd1bed3a2bf289c522e);
marker_bb34631780e44a8e9fefca1542693655.bindPopup(popup_effdcb4c19e149919feec136050dda55)
;
marker_bb34631780e44a8e9fefca1542693655.bindTooltip(
`<div>
Click
</div>`,
{"sticky": true}
);
var marker_07ae03edd8a044368e475dbc4b5e4d84 = L.marker(
[24.90550603923707, 67.1379017829895],
{}
).addTo(map_656114b05ecb4027af9e4c8678b58d59);
var popup_ee823e559ffb4b4a959e42ecf5280d1b = L.popup({"maxWidth": "100%"});
var html_42937f26d0ec4c8cbe2d30f429c21dd2 = $(`<div id="html_42937f26d0ec4c8cbe2d30f429c21dd2" style="width: 100.0%; height: 100.0%;">C-004</div>`)[0];
popup_ee823e559ffb4b4a959e42ecf5280d1b.setContent(html_42937f26d0ec4c8cbe2d30f429c21dd2);
marker_07ae03edd8a044368e475dbc4b5e4d84.bindPopup(popup_ee823e559ffb4b4a959e42ecf5280d1b)
;
marker_07ae03edd8a044368e475dbc4b5e4d84.bindTooltip(
`<div>
Click
</div>`,
{"sticky": true}
);
var marker_2962c6a31474408792d5204e81731aff = L.marker(
[24.905180047211598, 67.13791251182556],
{}
).addTo(map_656114b05ecb4027af9e4c8678b58d59);
var popup_cc1bd907637c48e0afcc0e37062b008b = L.popup({"maxWidth": "100%"});
var html_0e5029b7a6744814a0c8747a7fc3e993 = $(`<div id="html_0e5029b7a6744814a0c8747a7fc3e993" style="width: 100.0%; height: 100.0%;">C-007</div>`)[0];
popup_cc1bd907637c48e0afcc0e37062b008b.setContent(html_0e5029b7a6744814a0c8747a7fc3e993);
marker_2962c6a31474408792d5204e81731aff.bindPopup(popup_cc1bd907637c48e0afcc0e37062b008b)
;
marker_2962c6a31474408792d5204e81731aff.bindTooltip(
`<div>
Click
</div>`,
{"sticky": true}
);
var marker_f40ac1adfb47447db48708ae845a78a2 = L.marker(
[24.904182603576277, 67.13767111301422],
{}
).addTo(map_656114b05ecb4027af9e4c8678b58d59);
var popup_f4977d03c4ac4bdd90da2de52015d563 = L.popup({"maxWidth": "100%"});
var html_b77146c5a7be4764bb8e3df0212d5807 = $(`<div id="html_b77146c5a7be4764bb8e3df0212d5807" style="width: 100.0%; height: 100.0%;">C-015</div>`)[0];
popup_f4977d03c4ac4bdd90da2de52015d563.setContent(html_b77146c5a7be4764bb8e3df0212d5807);
marker_f40ac1adfb47447db48708ae845a78a2.bindPopup(popup_f4977d03c4ac4bdd90da2de52015d563)
;
marker_f40ac1adfb47447db48708ae845a78a2.bindTooltip(
`<div>
Click
</div>`,
{"sticky": true}
);
var marker_aca568b4e6354c7b8480514f79c051b0 = L.marker(
[24.90501948365863, 67.13704884052277],
{}
).addTo(map_656114b05ecb4027af9e4c8678b58d59);
var popup_d48113f357c246238130c8be351ea3df = L.popup({"maxWidth": "100%"});
var html_e9b240f9ef3944988abc3c679086d1c8 = $(`<div id="html_e9b240f9ef3944988abc3c679086d1c8" style="width: 100.0%; height: 100.0%;">C-025</div>`)[0];
popup_d48113f357c246238130c8be351ea3df.setContent(html_e9b240f9ef3944988abc3c679086d1c8);
marker_aca568b4e6354c7b8480514f79c051b0.bindPopup(popup_d48113f357c246238130c8be351ea3df)
;
marker_aca568b4e6354c7b8480514f79c051b0.bindTooltip(
`<div>
Click
</div>`,
{"sticky": true}
);
var marker_1abb324131b742da9677148e8674495b = L.marker(
[24.90324353951772, 67.1378642320633],
{}
).addTo(map_656114b05ecb4027af9e4c8678b58d59);
var popup_d4dd8997b0034e868b51650d2108b616 = L.popup({"maxWidth": "100%"});
var html_fbc46c6ff64b44edad93876a4bb8b0e0 = $(`<div id="html_fbc46c6ff64b44edad93876a4bb8b0e0" style="width: 100.0%; height: 100.0%;">Courts</div>`)[0];
popup_d4dd8997b0034e868b51650d2108b616.setContent(html_fbc46c6ff64b44edad93876a4bb8b0e0);
marker_1abb324131b742da9677148e8674495b.bindPopup(popup_d4dd8997b0034e868b51650d2108b616)
;
marker_1abb324131b742da9677148e8674495b.bindTooltip(
`<div>
Click
</div>`,
{"sticky": true}
);
var marker_cb556847f51f4be980dddbfbfababbab = L.marker(
[24.904333437033642, 67.13842213153839],
{}
).addTo(map_656114b05ecb4027af9e4c8678b58d59);
var popup_a526dc287d284409a5e73022949eb706 = L.popup({"maxWidth": "100%"});
var html_47dcad605b984a03b5143f6c70547454 = $(`<div id="html_47dcad605b984a03b5143f6c70547454" style="width: 100.0%; height: 100.0%;">Dukaan</div>`)[0];
popup_a526dc287d284409a5e73022949eb706.setContent(html_47dcad605b984a03b5143f6c70547454);
marker_cb556847f51f4be980dddbfbfababbab.bindPopup(popup_a526dc287d284409a5e73022949eb706)
;
marker_cb556847f51f4be980dddbfbfababbab.bindTooltip(
`<div>
Click
</div>`,
{"sticky": true}
);
var marker_8d1409b7090547e88efa00bf7ddc7176 = L.marker(
[24.904129081982582, 67.13849186897278],
{}
).addTo(map_656114b05ecb4027af9e4c8678b58d59);
var popup_fa7633eeeb57439d8ca0719c59496c10 = L.popup({"maxWidth": "100%"});
var html_a7905149e391407ab7fa6cf8fd6be335 = $(`<div id="html_a7905149e391407ab7fa6cf8fd6be335" style="width: 100.0%; height: 100.0%;">Dhabba</div>`)[0];
popup_fa7633eeeb57439d8ca0719c59496c10.setContent(html_a7905149e391407ab7fa6cf8fd6be335);
marker_8d1409b7090547e88efa00bf7ddc7176.bindPopup(popup_fa7633eeeb57439d8ca0719c59496c10)
;
marker_8d1409b7090547e88efa00bf7ddc7176.bindTooltip(
`<div>
Click
</div>`,
{"sticky": true}
);
var marker_2b294a814fc544659286a0883245badf = L.marker(
[24.905398997174423, 67.13861525058746],
{}
).addTo(map_656114b05ecb4027af9e4c8678b58d59);
var popup_b03da895d6434302bfeb27f200749009 = L.popup({"maxWidth": "100%"});
var html_a27eda42a6ca485f8515810ca33987ed = $(`<div id="html_a27eda42a6ca485f8515810ca33987ed" style="width: 100.0%; height: 100.0%;">E-010</div>`)[0];
popup_b03da895d6434302bfeb27f200749009.setContent(html_a27eda42a6ca485f8515810ca33987ed);
marker_2b294a814fc544659286a0883245badf.bindPopup(popup_b03da895d6434302bfeb27f200749009)
;
marker_2b294a814fc544659286a0883245badf.bindTooltip(
`<div>
Click
</div>`,
{"sticky": true}
);
var marker_988297f27e414990b830272160079531 = L.marker(
[24.905180047211598, 67.13862597942352],
{}
).addTo(map_656114b05ecb4027af9e4c8678b58d59);
var popup_91293d4c016e4c97ac5d002f96cc4bde = L.popup({"maxWidth": "100%"});
var html_60cd3eec7ebb422b82738a4f4759c59c = $(`<div id="html_60cd3eec7ebb422b82738a4f4759c59c" style="width: 100.0%; height: 100.0%;">E-011</div>`)[0];
popup_91293d4c016e4c97ac5d002f96cc4bde.setContent(html_60cd3eec7ebb422b82738a4f4759c59c);
marker_988297f27e414990b830272160079531.bindPopup(popup_91293d4c016e4c97ac5d002f96cc4bde)
;
marker_988297f27e414990b830272160079531.bindTooltip(
`<div>
Click
</div>`,
{"sticky": true}
);
var marker_0d4dd76a69f4423f9bd877af10376a0b = L.marker(
[24.90497082799529, 67.13863670825958],
{}
).addTo(map_656114b05ecb4027af9e4c8678b58d59);
var popup_48485868d0c742a8a6b5e4148a92f2c2 = L.popup({"maxWidth": "100%"});
var html_b027bbb74a56467f94e3dda9aad563a0 = $(`<div id="html_b027bbb74a56467f94e3dda9aad563a0" style="width: 100.0%; height: 100.0%;">E-012</div>`)[0];
popup_48485868d0c742a8a6b5e4148a92f2c2.setContent(html_b027bbb74a56467f94e3dda9aad563a0);
marker_0d4dd76a69f4423f9bd877af10376a0b.bindPopup(popup_48485868d0c742a8a6b5e4148a92f2c2)
;
marker_0d4dd76a69f4423f9bd877af10376a0b.bindTooltip(
`<div>
Click
</div>`,
{"sticky": true}
);
var marker_102f4bb2bb1b49ebaada27c9b0001a67 = L.marker(
[24.905963399731597, 67.13717758655548],
{}
).addTo(map_656114b05ecb4027af9e4c8678b58d59);
var popup_da83a178365047b78e86dd976b46f557 = L.popup({"maxWidth": "100%"});
var html_5d10738f31a144439d1785efc3ac39a2 = $(`<div id="html_5d10738f31a144439d1785efc3ac39a2" style="width: 100.0%; height: 100.0%;">Female Lounge</div>`)[0];
popup_da83a178365047b78e86dd976b46f557.setContent(html_5d10738f31a144439d1785efc3ac39a2);
marker_102f4bb2bb1b49ebaada27c9b0001a67.bindPopup(popup_da83a178365047b78e86dd976b46f557)
;
marker_102f4bb2bb1b49ebaada27c9b0001a67.bindTooltip(
`<div>
Click
</div>`,
{"sticky": true}
);
var marker_8a168e2c788b4f2d9b3e4c33bd7b5189 = L.marker(
[24.903905264157455, 67.13850796222687],
{}
).addTo(map_656114b05ecb4027af9e4c8678b58d59);
var popup_3222fa38f24c473a860dee94634d9ad8 = L.popup({"maxWidth": "100%"});
var html_8fc87130502a41c4a503de171c2a13ce = $(`<div id="html_8fc87130502a41c4a503de171c2a13ce" style="width: 100.0%; height: 100.0%;">Garden</div>`)[0];
popup_3222fa38f24c473a860dee94634d9ad8.setContent(html_8fc87130502a41c4a503de171c2a13ce);
marker_8a168e2c788b4f2d9b3e4c33bd7b5189.bindPopup(popup_3222fa38f24c473a860dee94634d9ad8)
;
marker_8a168e2c788b4f2d9b3e4c33bd7b5189.bindTooltip(
`<div>
Click
</div>`,
{"sticky": true}
);
var marker_7d22d73b01bd453cbb51aafc371b3608 = L.marker(
[24.903739833330164, 67.13755309581755],
{}
).addTo(map_656114b05ecb4027af9e4c8678b58d59);
var popup_fb5692d0a85040a083fe6d3361d767a7 = L.popup({"maxWidth": "100%"});
var html_75116c4e7c1b45d0946590027e21489d = $(`<div id="html_75116c4e7c1b45d0946590027e21489d" style="width: 100.0%; height: 100.0%;">Gym</div>`)[0];
popup_fb5692d0a85040a083fe6d3361d767a7.setContent(html_75116c4e7c1b45d0946590027e21489d);
marker_7d22d73b01bd453cbb51aafc371b3608.bindPopup(popup_fb5692d0a85040a083fe6d3361d767a7)
;
marker_7d22d73b01bd453cbb51aafc371b3608.bindTooltip(
`<div>
Click
</div>`,
{"sticky": true}
);
var marker_94ed592709b841ccb31e2c2b797e0352 = L.marker(
[24.905632543373248, 67.13737607002258],
{}
).addTo(map_656114b05ecb4027af9e4c8678b58d59);
var popup_c027d702705343bc8fbf5bc26281f51a = L.popup({"maxWidth": "100%"});
var html_0fbae83e6c5a4790888ce52f0981e435 = $(`<div id="html_0fbae83e6c5a4790888ce52f0981e435" style="width: 100.0%; height: 100.0%;">Learn Courtyard</div>`)[0];
popup_c027d702705343bc8fbf5bc26281f51a.setContent(html_0fbae83e6c5a4790888ce52f0981e435);
marker_94ed592709b841ccb31e2c2b797e0352.bindPopup(popup_c027d702705343bc8fbf5bc26281f51a)
;
marker_94ed592709b841ccb31e2c2b797e0352.bindTooltip(
`<div>
Click
</div>`,
{"sticky": true}
);
var marker_efb9b99b8dcc490f826270425f16a661 = L.marker(
[24.905846627000518, 67.13857233524323],
{}
).addTo(map_656114b05ecb4027af9e4c8678b58d59);
var popup_63df2b20e66645dab78bd4cd89cdc4b3 = L.popup({"maxWidth": "100%"});
var html_3ca2c0cfb2f045aa929d8e5afe44d9f8 = $(`<div id="html_3ca2c0cfb2f045aa929d8e5afe44d9f8" style="width: 100.0%; height: 100.0%;">Linux Lab</div>`)[0];
popup_63df2b20e66645dab78bd4cd89cdc4b3.setContent(html_3ca2c0cfb2f045aa929d8e5afe44d9f8);
marker_efb9b99b8dcc490f826270425f16a661.bindPopup(popup_63df2b20e66645dab78bd4cd89cdc4b3)
;
marker_efb9b99b8dcc490f826270425f16a661.bindTooltip(
`<div>
Click
</div>`,
{"sticky": true}
);
var marker_e6efe365358942d2baafacb6e8188aa4 = L.marker(
[24.90413881318318, 67.13742434978485],
{}
).addTo(map_656114b05ecb4027af9e4c8678b58d59);
var popup_85b1bfb0b8b8409b85001d99d3be4f5f = L.popup({"maxWidth": "100%"});
var html_f703ae9150114812ab40bbb428df51f2 = $(`<div id="html_f703ae9150114812ab40bbb428df51f2" style="width: 100.0%; height: 100.0%;">Lockers</div>`)[0];
popup_85b1bfb0b8b8409b85001d99d3be4f5f.setContent(html_f703ae9150114812ab40bbb428df51f2);
marker_e6efe365358942d2baafacb6e8188aa4.bindPopup(popup_85b1bfb0b8b8409b85001d99d3be4f5f)
;
marker_e6efe365358942d2baafacb6e8188aa4.bindTooltip(
`<div>
Click
</div>`,
{"sticky": true}
);
var marker_7c3f2f91249d4cd59b246868bf8ad2c2 = L.marker(
[24.90585635806568, 67.13817536830902],
{}
).addTo(map_656114b05ecb4027af9e4c8678b58d59);
var popup_37eeb06525114dd580ef549580fde8a4 = L.popup({"maxWidth": "100%"});
var html_de8d9de23ee349819292f362afd9477f = $(`<div id="html_de8d9de23ee349819292f362afd9477f" style="width: 100.0%; height: 100.0%;">Music Room</div>`)[0];
popup_37eeb06525114dd580ef549580fde8a4.setContent(html_de8d9de23ee349819292f362afd9477f);
marker_7c3f2f91249d4cd59b246868bf8ad2c2.bindPopup(popup_37eeb06525114dd580ef549580fde8a4)
;
marker_7c3f2f91249d4cd59b246868bf8ad2c2.bindTooltip(
`<div>
Click
</div>`,
{"sticky": true}
);
var marker_cb6f37b1036f4ab581c68fce0464582d = L.marker(
[24.90419233477263, 67.13666260242462],
{}
).addTo(map_656114b05ecb4027af9e4c8678b58d59);
var popup_e6d75dabdf944011b467acafba38efb5 = L.popup({"maxWidth": "100%"});
var html_3f8b6411ce084f54be831d6ece733659 = $(`<div id="html_3f8b6411ce084f54be831d6ece733659" style="width: 100.0%; height: 100.0%;">Swimming Pool</div>`)[0];
popup_e6d75dabdf944011b467acafba38efb5.setContent(html_3f8b6411ce084f54be831d6ece733659);
marker_cb6f37b1036f4ab581c68fce0464582d.bindPopup(popup_e6d75dabdf944011b467acafba38efb5)
;
marker_cb6f37b1036f4ab581c68fce0464582d.bindTooltip(
`<div>
Click
</div>`,
{"sticky": true}
);
var marker_f6ac0a34181c4f308e4a9637db164fc3 = L.marker(
[24.90419233477263, 67.13705956935883],
{}
).addTo(map_656114b05ecb4027af9e4c8678b58d59);
var popup_d0d4edb518c442ecb2ca45f235d78ca2 = L.popup({"maxWidth": "100%"});
var html_926ed35073e943398db8d11364c7c01e = $(`<div id="html_926ed35073e943398db8d11364c7c01e" style="width: 100.0%; height: 100.0%;">Table Tennis</div>`)[0];
popup_d0d4edb518c442ecb2ca45f235d78ca2.setContent(html_926ed35073e943398db8d11364c7c01e);
marker_f6ac0a34181c4f308e4a9637db164fc3.bindPopup(popup_d0d4edb518c442ecb2ca45f235d78ca2)
;
marker_f6ac0a34181c4f308e4a9637db164fc3.bindTooltip(
`<div>
Click
</div>`,
{"sticky": true}
);
var marker_d54ba465f9d94ed080426529812e0111 = L.marker(
[24.90454752291466, 67.13828265666962],
{}
).addTo(map_656114b05ecb4027af9e4c8678b58d59);
var popup_fd3537aed8bb407b92fd66f40143ac5d = L.popup({"maxWidth": "100%"});
var html_8c78eea6544249b39d8c209bf5901315 = $(`<div id="html_8c78eea6544249b39d8c209bf5901315" style="width: 100.0%; height: 100.0%;">Tapal Cafeteria</div>`)[0];
popup_fd3537aed8bb407b92fd66f40143ac5d.setContent(html_8c78eea6544249b39d8c209bf5901315);
marker_d54ba465f9d94ed080426529812e0111.bindPopup(popup_fd3537aed8bb407b92fd66f40143ac5d)
;
marker_d54ba465f9d94ed080426529812e0111.bindTooltip(
`<div>
Click
</div>`,
{"sticky": true}
);
var marker_ad3e06fedc8b4d85b5d5c448e96f2aeb = L.marker(
[24.90482486089012, 67.13681280612946],
{}
).addTo(map_656114b05ecb4027af9e4c8678b58d59);
var popup_e52d2f35bf23428497932a4b8b4ff70c = L.popup({"maxWidth": "100%"});
var html_6e5144fb0ee642c09e1fd40d0d95cc86 = $(`<div id="html_6e5144fb0ee642c09e1fd40d0d95cc86" style="width: 100.0%; height: 100.0%;">W-004</div>`)[0];
popup_e52d2f35bf23428497932a4b8b4ff70c.setContent(html_6e5144fb0ee642c09e1fd40d0d95cc86);
marker_ad3e06fedc8b4d85b5d5c448e96f2aeb.bindPopup(popup_e52d2f35bf23428497932a4b8b4ff70c)
;
marker_ad3e06fedc8b4d85b5d5c448e96f2aeb.bindTooltip(
`<div>
Click
</div>`,
{"sticky": true}
);
var marker_fb30b9cc9c92479d857f01af088324d5 = L.marker(
[24.90563740891435, 67.1367859840393],
{}
).addTo(map_656114b05ecb4027af9e4c8678b58d59);
var popup_3228446019af48799135e909784ebb3b = L.popup({"maxWidth": "100%"});
var html_0acfbacbaf69430e82e806a1aebd9a06 = $(`<div id="html_0acfbacbaf69430e82e806a1aebd9a06" style="width: 100.0%; height: 100.0%;">W-002</div>`)[0];
popup_3228446019af48799135e909784ebb3b.setContent(html_0acfbacbaf69430e82e806a1aebd9a06);
marker_fb30b9cc9c92479d857f01af088324d5.bindPopup(popup_3228446019af48799135e909784ebb3b)
;
marker_fb30b9cc9c92479d857f01af088324d5.bindTooltip(
`<div>
Click
</div>`,
{"sticky": true}
);
var marker_e456cf9cc8ea45bab96d0f11f68b0573 = L.marker(
[24.905462249313576, 67.13676989078522],
{}
).addTo(map_656114b05ecb4027af9e4c8678b58d59);
var popup_e2f93ef700714329905673171cae47a8 = L.popup({"maxWidth": "100%"});
var html_260c42a88ec6410d90deb56afc8f565a = $(`<div id="html_260c42a88ec6410d90deb56afc8f565a" style="width: 100.0%; height: 100.0%;">W-003</div>`)[0];
popup_e2f93ef700714329905673171cae47a8.setContent(html_260c42a88ec6410d90deb56afc8f565a);
marker_e456cf9cc8ea45bab96d0f11f68b0573.bindPopup(popup_e2f93ef700714329905673171cae47a8)
;
marker_e456cf9cc8ea45bab96d0f11f68b0573.bindTooltip(
`<div>
Click
</div>`,
{"sticky": true}
);
var marker_5b818eb32dde4d2a809e6c5982325675 = L.marker(
[24.90562767783194, 67.13868498802185],
{}
).addTo(map_656114b05ecb4027af9e4c8678b58d59);
var popup_ccf3acf1bc374b58bd6e3ba48f113b57 = L.popup({"maxWidth": "100%"});
var html_95ff13ec4e9443cfa27f483637a7fb5b = $(`<div id="html_95ff13ec4e9443cfa27f483637a7fb5b" style="width: 100.0%; height: 100.0%;">Washroom 1</div>`)[0];
popup_ccf3acf1bc374b58bd6e3ba48f113b57.setContent(html_95ff13ec4e9443cfa27f483637a7fb5b);
marker_5b818eb32dde4d2a809e6c5982325675.bindPopup(popup_ccf3acf1bc374b58bd6e3ba48f113b57)
;
marker_5b818eb32dde4d2a809e6c5982325675.bindTooltip(
`<div>
Click
</div>`,
{"sticky": true}
);
var marker_347aee1346504593aec5e3bff1a59e08 = L.marker(
[24.904834592035836, 67.13761746883392],
{}
).addTo(map_656114b05ecb4027af9e4c8678b58d59);
var popup_386efca1c2304c6c838efbf3db07fe7d = L.popup({"maxWidth": "100%"});
var html_d6416d0626ef468fac065ca8d4a1a42d = $(`<div id="html_d6416d0626ef468fac065ca8d4a1a42d" style="width: 100.0%; height: 100.0%;">Washroom 2</div>`)[0];
popup_386efca1c2304c6c838efbf3db07fe7d.setContent(html_d6416d0626ef468fac065ca8d4a1a42d);
marker_347aee1346504593aec5e3bff1a59e08.bindPopup(popup_386efca1c2304c6c838efbf3db07fe7d)
;
marker_347aee1346504593aec5e3bff1a59e08.bindTooltip(
`<div>
Click
</div>`,
{"sticky": true}
);
var marker_be734a5c110a4b2bbef631067216c919 = L.marker(
[24.9052530305757, 67.13677525520325],
{}
).addTo(map_656114b05ecb4027af9e4c8678b58d59);
var popup_7d732af62d3e44a8a7fbb24c554241b0 = L.popup({"maxWidth": "100%"});
var html_5aa2783dc3f8465c9abafc8a0d90b711 = $(`<div id="html_5aa2783dc3f8465c9abafc8a0d90b711" style="width: 100.0%; height: 100.0%;">Washroom 3</div>`)[0];
popup_7d732af62d3e44a8a7fbb24c554241b0.setContent(html_5aa2783dc3f8465c9abafc8a0d90b711);
marker_be734a5c110a4b2bbef631067216c919.bindPopup(popup_7d732af62d3e44a8a7fbb24c554241b0)
;
marker_be734a5c110a4b2bbef631067216c919.bindTooltip(
`<div>
Click
</div>`,
{"sticky": true}
);
</script>