-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmap_with_toggle_icons.html
3054 lines (1517 loc) · 426 KB
/
map_with_toggle_icons.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<script>
L_NO_TOUCH = false;
L_DISABLE_3D = false;
</script>
<style>html, body {width: 100%;height: 100%;margin: 0;padding: 0;}</style>
<style>#map {position:absolute;top:0;bottom:0;right:0;left:0;}</style>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.js"></script>
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/all.min.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css"/>
<meta name="viewport" content="width=device-width,
initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<style>
#map_72312ffaa53f74078a4ec80def83cc18 {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
.leaflet-container { font-size: 1rem; }
</style>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js"></script>
<script src="https://cdn.jsdelivr.net/gh/python-visualization/folium@main/folium/templates/leaflet_heat.min.js"></script>
</head>
<body>
<div class="folium-map" id="map_72312ffaa53f74078a4ec80def83cc18" ></div>
</body>
<script>
var map_72312ffaa53f74078a4ec80def83cc18 = L.map(
"map_72312ffaa53f74078a4ec80def83cc18",
{
center: [31.53685202562236, 34.49929741015027],
crs: L.CRS.EPSG3857,
zoom: 14,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_4a79045ecde46cef8abc6f3a8b2ac472 = L.tileLayer(
"https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png",
{"attribution": "Data by \u0026copy; \u003ca target=\"_blank\" href=\"http://openstreetmap.org\"\u003eOpenStreetMap\u003c/a\u003e, under \u003ca target=\"_blank\" 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_72312ffaa53f74078a4ec80def83cc18);
var color_map_d8e31ddffa5d88246a3e88ec0600c4cf = {};
color_map_d8e31ddffa5d88246a3e88ec0600c4cf.color = d3.scale.threshold()
.domain([1.0, 1.0080160320641283, 1.0160320641282565, 1.0240480961923848, 1.032064128256513, 1.0400801603206413, 1.0480961923847696, 1.0561122244488979, 1.0641282565130261, 1.0721442885771544, 1.0801603206412826, 1.088176352705411, 1.0961923847695392, 1.1042084168336674, 1.1122244488977957, 1.1202404809619237, 1.128256513026052, 1.1362725450901803, 1.1442885771543085, 1.1523046092184368, 1.160320641282565, 1.1683366733466933, 1.1763527054108216, 1.1843687374749499, 1.1923847695390781, 1.2004008016032064, 1.2084168336673347, 1.216432865731463, 1.2244488977955912, 1.2324649298597194, 1.2404809619238477, 1.248496993987976, 1.2565130260521042, 1.2645290581162325, 1.2725450901803608, 1.280561122244489, 1.2885771543086173, 1.2965931863727456, 1.3046092184368738, 1.3126252505010019, 1.3206412825651301, 1.3286573146292584, 1.3366733466933867, 1.344689378757515, 1.3527054108216432, 1.3607214428857715, 1.3687374749498997, 1.376753507014028, 1.3847695390781563, 1.3927855711422845, 1.4008016032064128, 1.408817635270541, 1.4168336673346693, 1.4248496993987976, 1.4328657314629258, 1.440881763527054, 1.4488977955911824, 1.4569138276553106, 1.464929859719439, 1.4729458917835672, 1.4809619238476954, 1.4889779559118237, 1.496993987975952, 1.5050100200400802, 1.5130260521042085, 1.5210420841683367, 1.529058116232465, 1.5370741482965933, 1.5450901803607215, 1.5531062124248498, 1.561122244488978, 1.5691382765531063, 1.5771543086172346, 1.5851703406813629, 1.5931863727454911, 1.6012024048096194, 1.6092184368737477, 1.6172344689378757, 1.625250501002004, 1.6332665330661322, 1.6412825651302605, 1.6492985971943888, 1.657314629258517, 1.6653306613226453, 1.6733466933867736, 1.6813627254509018, 1.68937875751503, 1.6973947895791583, 1.7054108216432866, 1.7134268537074149, 1.7214428857715431, 1.7294589178356712, 1.7374749498997994, 1.7454909819639277, 1.753507014028056, 1.7615230460921842, 1.7695390781563125, 1.7775551102204408, 1.785571142284569, 1.7935871743486973, 1.8016032064128256, 1.8096192384769538, 1.817635270541082, 1.8256513026052104, 1.8336673346693386, 1.8416833667334669, 1.8496993987975952, 1.8577154308617234, 1.8657314629258517, 1.87374749498998, 1.8817635270541082, 1.8897795591182365, 1.8977955911823647, 1.905811623246493, 1.9138276553106213, 1.9218436873747495, 1.9298597194388778, 1.937875751503006, 1.9458917835671343, 1.9539078156312626, 1.9619238476953909, 1.9699398797595191, 1.9779559118236474, 1.9859719438877756, 1.993987975951904, 2.0020040080160317, 2.0100200400801604, 2.0180360721442883, 2.026052104208417, 2.034068136272545, 2.0420841683366735, 2.0501002004008013, 2.05811623246493, 2.066132264529058, 2.0741482965931866, 2.0821643286573144, 2.090180360721443, 2.098196392785571, 2.1062124248496996, 2.1142284569138274, 2.122244488977956, 2.130260521042084, 2.1382765531062127, 2.1462925851703405, 2.154308617234469, 2.162324649298597, 2.1703406813627257, 2.1783567134268536, 2.1863727454909823, 2.19438877755511, 2.202404809619239, 2.2104208416833666, 2.2184368737474953, 2.226452905811623, 2.2344689378757514, 2.2424849699398797, 2.250501002004008, 2.258517034068136, 2.2665330661322645, 2.2745490981963927, 2.282565130260521, 2.2905811623246493, 2.2985971943887775, 2.306613226452906, 2.314629258517034, 2.3226452905811623, 2.3306613226452906, 2.338677354709419, 2.346693386773547, 2.3547094188376754, 2.3627254509018036, 2.370741482965932, 2.37875751503006, 2.3867735470941884, 2.3947895791583167, 2.402805611222445, 2.4108216432865732, 2.4188376753507015, 2.4268537074148298, 2.434869739478958, 2.4428857715430863, 2.4509018036072145, 2.4589178356713424, 2.466933867735471, 2.474949899799599, 2.4829659318637276, 2.4909819639278554, 2.498997995991984, 2.507014028056112, 2.5150300601202407, 2.5230460921843685, 2.531062124248497, 2.539078156312625, 2.5470941883767537, 2.5551102204408815, 2.5631262525050102, 2.571142284569138, 2.579158316633267, 2.5871743486973946, 2.5951903807615233, 2.603206412825651, 2.61122244488978, 2.6192384769539077, 2.6272545090180364, 2.635270541082164, 2.643286573146293, 2.6513026052104207, 2.6593186372745494, 2.6673346693386772, 2.6753507014028055, 2.6833667334669338, 2.691382765531062, 2.6993987975951903, 2.7074148296593186, 2.715430861723447, 2.723446893787575, 2.7314629258517034, 2.7394789579158316, 2.74749498997996, 2.755511022044088, 2.7635270541082164, 2.7715430861723447, 2.779559118236473, 2.787575150300601, 2.7955911823647295, 2.8036072144288577, 2.811623246492986, 2.8196392785571143, 2.8276553106212425, 2.835671342685371, 2.843687374749499, 2.8517034068136273, 2.8597194388777556, 2.867735470941884, 2.875751503006012, 2.8837675350701404, 2.8917835671342687, 2.8997995991983965, 2.907815631262525, 2.915831663326653, 2.9238476953907817, 2.9318637274549095, 2.9398797595190382, 2.947895791583166, 2.9559118236472948, 2.9639278557114226, 2.9719438877755513, 2.979959919839679, 2.987975951903808, 2.9959919839679356, 3.004008016032064, 3.012024048096192, 3.0200400801603204, 3.0280561122244487, 3.036072144288577, 3.0440881763527052, 3.0521042084168335, 3.0601202404809618, 3.06813627254509, 3.0761523046092183, 3.0841683366733466, 3.092184368737475, 3.100200400801603, 3.1082164328657313, 3.1162324649298596, 3.124248496993988, 3.132264529058116, 3.1402805611222444, 3.1482965931863727, 3.156312625250501, 3.164328657314629, 3.1723446893787575, 3.1803607214428857, 3.188376753507014, 3.1963927855711423, 3.2044088176352705, 3.212424849699399, 3.220440881763527, 3.2284569138276553, 3.2364729458917836, 3.244488977955912, 3.25250501002004, 3.2605210420841684, 3.2685370741482966, 3.276553106212425, 3.284569138276553, 3.2925851703406814, 3.3006012024048097, 3.308617234468938, 3.3166332665330662, 3.3246492985971945, 3.3326653306613228, 3.340681362725451, 3.3486973947895793, 3.3567134268537075, 3.364729458917836, 3.372745490981964, 3.3807615230460923, 3.3887775551102206, 3.396793587174349, 3.404809619238477, 3.4128256513026054, 3.4208416833667337, 3.428857715430862, 3.43687374749499, 3.444889779559118, 3.4529058116232463, 3.4609218436873745, 3.468937875751503, 3.476953907815631, 3.4849699398797593, 3.4929859719438876, 3.501002004008016, 3.509018036072144, 3.5170340681362724, 3.5250501002004007, 3.533066132264529, 3.541082164328657, 3.5490981963927855, 3.5571142284569137, 3.565130260521042, 3.5731462925851702, 3.5811623246492985, 3.5891783567134268, 3.597194388777555, 3.6052104208416833, 3.6132264529058116, 3.62124248496994, 3.629258517034068, 3.6372745490981964, 3.6452905811623246, 3.653306613226453, 3.661322645290581, 3.6693386773547094, 3.6773547094188377, 3.685370741482966, 3.693386773547094, 3.7014028056112225, 3.7094188376753507, 3.717434869739479, 3.7254509018036073, 3.7334669338677355, 3.741482965931864, 3.749498997995992, 3.7575150300601203, 3.7655310621242486, 3.773547094188377, 3.781563126252505, 3.7895791583166334, 3.7975951903807617, 3.80561122244489, 3.813627254509018, 3.8216432865731464, 3.8296593186372747, 3.837675350701403, 3.8456913827655312, 3.8537074148296595, 3.8617234468937878, 3.869739478957916, 3.8777555110220443, 3.8857715430861726, 3.8937875751503004, 3.9018036072144286, 3.909819639278557, 3.917835671342685, 3.9258517034068134, 3.9338677354709417, 3.94188376753507, 3.9498997995991982, 3.9579158316633265, 3.9659318637274548, 3.973947895791583, 3.9819639278557113, 3.9899799599198396, 3.997995991983968, 4.006012024048096, 4.014028056112224, 4.022044088176353, 4.030060120240481, 4.038076152304609, 4.046092184368737, 4.054108216432866, 4.062124248496994, 4.070140280561122, 4.07815631262525, 4.086172344689379, 4.094188376753507, 4.102204408817635, 4.110220440881763, 4.118236472945892, 4.1262525050100205, 4.134268537074148, 4.142284569138276, 4.150300601202405, 4.158316633266534, 4.166332665330661, 4.174348697394789, 4.182364729458918, 4.190380761523047, 4.198396793587174, 4.206412825651302, 4.214428857715431, 4.22244488977956, 4.2304609218436875, 4.238476953907815, 4.246492985971944, 4.254509018036073, 4.2625250501002006, 4.270541082164328, 4.278557114228457, 4.286573146292586, 4.294589178356714, 4.302605210420841, 4.31062124248497, 4.318637274549099, 4.326653306613227, 4.3346693386773545, 4.342685370741483, 4.350701402805611, 4.358717434869739, 4.3667334669338675, 4.374749498997996, 4.382765531062124, 4.390781563126252, 4.398797595190381, 4.406813627254509, 4.414829659318637, 4.422845691382765, 4.430861723446894, 4.438877755511022, 4.44689378757515, 4.454909819639278, 4.462925851703407, 4.470941883767535, 4.478957915831663, 4.486973947895791, 4.49498997995992, 4.5030060120240485, 4.511022044088176, 4.519038076152304, 4.527054108216433, 4.5350701402805615, 4.543086172344689, 4.551102204408817, 4.559118236472946, 4.567134268537075, 4.575150300601202, 4.58316633266533, 4.591182364729459, 4.599198396793588, 4.6072144288577155, 4.615230460921843, 4.623246492985972, 4.631262525050101, 4.6392785571142285, 4.647294589178356, 4.655310621242485, 4.663326653306614, 4.671342685370742, 4.679358717434869, 4.687374749498998, 4.695390781563127, 4.703406813627255, 4.7114228456913825, 4.719438877755511, 4.72745490981964, 4.735470941883768, 4.7434869739478955, 4.751503006012024, 4.759519038076153, 4.767535070140281, 4.775551102204409, 4.783567134268537, 4.791583166332665, 4.799599198396793, 4.807615230460922, 4.81563126252505, 4.823647294589178, 4.831663326653306, 4.839679358717435, 4.847695390781563, 4.855711422845691, 4.863727454909819, 4.871743486973948, 4.8797595190380765, 4.887775551102204, 4.895791583166332, 4.903807615230461, 4.9118236472945895, 4.919839679358717, 4.927855711422845, 4.935871743486974, 4.943887775551103, 4.95190380761523, 4.959919839679358, 4.967935871743487, 4.975951903807616, 4.9839679358717435, 4.991983967935871, 5.0])
.range(['#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fed976ff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#fd8d3cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#e31a1cff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff', '#800026ff']);
color_map_d8e31ddffa5d88246a3e88ec0600c4cf.x = d3.scale.linear()
.domain([1.0, 5.0])
.range([0, 450 - 50]);
color_map_d8e31ddffa5d88246a3e88ec0600c4cf.legend = L.control({position: 'topright'});
color_map_d8e31ddffa5d88246a3e88ec0600c4cf.legend.onAdd = function (map) {var div = L.DomUtil.create('div', 'legend'); return div};
color_map_d8e31ddffa5d88246a3e88ec0600c4cf.legend.addTo(map_72312ffaa53f74078a4ec80def83cc18);
color_map_d8e31ddffa5d88246a3e88ec0600c4cf.xAxis = d3.svg.axis()
.scale(color_map_d8e31ddffa5d88246a3e88ec0600c4cf.x)
.orient("top")
.tickSize(1)
.tickValues([1.0, 1.8, 2.6, 3.4, 4.2, 5.0]);
color_map_d8e31ddffa5d88246a3e88ec0600c4cf.svg = d3.select(".legend.leaflet-control").append("svg")
.attr("id", 'legend')
.attr("width", 450)
.attr("height", 40);
color_map_d8e31ddffa5d88246a3e88ec0600c4cf.g = color_map_d8e31ddffa5d88246a3e88ec0600c4cf.svg.append("g")
.attr("class", "key")
.attr("transform", "translate(25,16)");
color_map_d8e31ddffa5d88246a3e88ec0600c4cf.g.selectAll("rect")
.data(color_map_d8e31ddffa5d88246a3e88ec0600c4cf.color.range().map(function(d, i) {
return {
x0: i ? color_map_d8e31ddffa5d88246a3e88ec0600c4cf.x(color_map_d8e31ddffa5d88246a3e88ec0600c4cf.color.domain()[i - 1]) : color_map_d8e31ddffa5d88246a3e88ec0600c4cf.x.range()[0],
x1: i < color_map_d8e31ddffa5d88246a3e88ec0600c4cf.color.domain().length ? color_map_d8e31ddffa5d88246a3e88ec0600c4cf.x(color_map_d8e31ddffa5d88246a3e88ec0600c4cf.color.domain()[i]) : color_map_d8e31ddffa5d88246a3e88ec0600c4cf.x.range()[1],
z: d
};
}))
.enter().append("rect")
.attr("height", 40 - 30)
.attr("x", function(d) { return d.x0; })
.attr("width", function(d) { return d.x1 - d.x0; })
.style("fill", function(d) { return d.z; });
color_map_d8e31ddffa5d88246a3e88ec0600c4cf.g.call(color_map_d8e31ddffa5d88246a3e88ec0600c4cf.xAxis).append("text")
.attr("class", "caption")
.attr("y", 21)
.text("Damage Severity");
var feature_group_6c67d40fcdb8f6aad71138c9a654a66f = L.featureGroup(
{}
).addTo(map_72312ffaa53f74078a4ec80def83cc18);
var marker_1667da2a18dd362a3f8c8cf7fcd7e5a7 = L.marker(
[31.5352025, 34.5093914],
{}
).addTo(feature_group_6c67d40fcdb8f6aad71138c9a654a66f);
var icon_ed0c41d12af2306e0c9eb369269da435 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_1667da2a18dd362a3f8c8cf7fcd7e5a7.setIcon(icon_ed0c41d12af2306e0c9eb369269da435);
var popup_821a4406fd90d4ca5e3a02ffccebf803 = L.popup({"maxWidth": "100%"});
var html_4c035d87eccc64ae37305c290d1a62e9 = $(`<div id="html_4c035d87eccc64ae37305c290d1a62e9" style="width: 100.0%; height: 100.0%;">Indonesian Hospital</div>`)[0];
popup_821a4406fd90d4ca5e3a02ffccebf803.setContent(html_4c035d87eccc64ae37305c290d1a62e9);
marker_1667da2a18dd362a3f8c8cf7fcd7e5a7.bindPopup(popup_821a4406fd90d4ca5e3a02ffccebf803)
;
var marker_a9bdc88ab2779e3b645fa4642fdb0b9c = L.marker(
[31.5321531, 34.46137549999999],
{}
).addTo(feature_group_6c67d40fcdb8f6aad71138c9a654a66f);
var icon_fc9241b75213627047b4bb8a65566da2 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_a9bdc88ab2779e3b645fa4642fdb0b9c.setIcon(icon_fc9241b75213627047b4bb8a65566da2);
var popup_f9b4d0788bef7d93430d5ec1ab5b5015 = L.popup({"maxWidth": "100%"});
var html_4ab452ac354bd30bf05e9706c51b50e8 = $(`<div id="html_4ab452ac354bd30bf05e9706c51b50e8" style="width: 100.0%; height: 100.0%;">Ranteesi Specialist Hospital</div>`)[0];
popup_f9b4d0788bef7d93430d5ec1ab5b5015.setContent(html_4ab452ac354bd30bf05e9706c51b50e8);
marker_a9bdc88ab2779e3b645fa4642fdb0b9c.bindPopup(popup_f9b4d0788bef7d93430d5ec1ab5b5015)
;
var marker_8f0c035e89004c4b6494aa8287282dd7 = L.marker(
[31.5331953, 34.4587942],
{}
).addTo(feature_group_6c67d40fcdb8f6aad71138c9a654a66f);
var icon_ad6388a136dcabcecd53f98941d5c760 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_8f0c035e89004c4b6494aa8287282dd7.setIcon(icon_ad6388a136dcabcecd53f98941d5c760);
var popup_14a2e2d964a8b71963c2f1ec891019cf = L.popup({"maxWidth": "100%"});
var html_454db032599e4e1fda4c4e960b1e9edd = $(`<div id="html_454db032599e4e1fda4c4e960b1e9edd" style="width: 100.0%; height: 100.0%;">Victory Children's Hospital</div>`)[0];
popup_14a2e2d964a8b71963c2f1ec891019cf.setContent(html_454db032599e4e1fda4c4e960b1e9edd);
marker_8f0c035e89004c4b6494aa8287282dd7.bindPopup(popup_14a2e2d964a8b71963c2f1ec891019cf)
;
var marker_d2821f83268ee6d036346923704a94d6 = L.marker(
[31.51756469999999, 34.4595174],
{}
).addTo(feature_group_6c67d40fcdb8f6aad71138c9a654a66f);
var icon_fc1341dea9a190f309b7236466c8b97c = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_d2821f83268ee6d036346923704a94d6.setIcon(icon_fc1341dea9a190f309b7236466c8b97c);
var popup_f80675e797a35fe48b6974a33f2f33fa = L.popup({"maxWidth": "100%"});
var html_3b2d2d89d5f3b72a3a285abcf92555b5 = $(`<div id="html_3b2d2d89d5f3b72a3a285abcf92555b5" style="width: 100.0%; height: 100.0%;">مجمع الصحابة الطبي</div>`)[0];
popup_f80675e797a35fe48b6974a33f2f33fa.setContent(html_3b2d2d89d5f3b72a3a285abcf92555b5);
marker_d2821f83268ee6d036346923704a94d6.bindPopup(popup_f80675e797a35fe48b6974a33f2f33fa)
;
var marker_9314c489ad4eb0e0a9ab1b00118fc87f = L.marker(
[31.52001659999999, 34.4576618],
{}
).addTo(feature_group_6c67d40fcdb8f6aad71138c9a654a66f);
var icon_88c52e8d4a97b97b356e447018041e0b = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_9314c489ad4eb0e0a9ab1b00118fc87f.setIcon(icon_88c52e8d4a97b97b356e447018041e0b);
var popup_d4041c6324857c0ec01416f37713a0a5 = L.popup({"maxWidth": "100%"});
var html_03fe75ee60ed9da62bc58fbbc85d2577 = $(`<div id="html_03fe75ee60ed9da62bc58fbbc85d2577" style="width: 100.0%; height: 100.0%;">مركز البسمة للإخصاب وأطفال الأنابيب</div>`)[0];
popup_d4041c6324857c0ec01416f37713a0a5.setContent(html_03fe75ee60ed9da62bc58fbbc85d2577);
marker_9314c489ad4eb0e0a9ab1b00118fc87f.bindPopup(popup_d4041c6324857c0ec01416f37713a0a5)
;
var marker_21176a7fdf67ebe3cfd052b49c89eb94 = L.marker(
[31.5294965, 34.4526228],
{}
).addTo(feature_group_6c67d40fcdb8f6aad71138c9a654a66f);
var icon_28b80122ab1f9ecc9b2e966e733c0c39 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_21176a7fdf67ebe3cfd052b49c89eb94.setIcon(icon_28b80122ab1f9ecc9b2e966e733c0c39);
var popup_8881b69e3f5389d195eb30ba137ee34b = L.popup({"maxWidth": "100%"});
var html_32b0ac758a25eb19ce9e79d4a785a909 = $(`<div id="html_32b0ac758a25eb19ce9e79d4a785a909" style="width: 100.0%; height: 100.0%;">Al-Hayat Specialized Cardiac Catheterization Center</div>`)[0];
popup_8881b69e3f5389d195eb30ba137ee34b.setContent(html_32b0ac758a25eb19ce9e79d4a785a909);
marker_21176a7fdf67ebe3cfd052b49c89eb94.bindPopup(popup_8881b69e3f5389d195eb30ba137ee34b)
;
var marker_c505e858978fdc6051e6d8f9066eb996 = L.marker(
[31.5184511, 34.4466015],
{}
).addTo(feature_group_6c67d40fcdb8f6aad71138c9a654a66f);
var icon_98c566dcb21b5c62f91d9646c83deb93 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_c505e858978fdc6051e6d8f9066eb996.setIcon(icon_98c566dcb21b5c62f91d9646c83deb93);
var popup_a815ebb331e4304da4dcff4dc0a697e1 = L.popup({"maxWidth": "100%"});
var html_3061022825115c6c771b99c82117261d = $(`<div id="html_3061022825115c6c771b99c82117261d" style="width: 100.0%; height: 100.0%;">Global Dental Center</div>`)[0];
popup_a815ebb331e4304da4dcff4dc0a697e1.setContent(html_3061022825115c6c771b99c82117261d);
marker_c505e858978fdc6051e6d8f9066eb996.bindPopup(popup_a815ebb331e4304da4dcff4dc0a697e1)
;
var marker_6b5db3e64bd35376b7867578268f90e4 = L.marker(
[31.51750899999999, 34.4453996],
{}
).addTo(feature_group_6c67d40fcdb8f6aad71138c9a654a66f);
var icon_2a704af3dda78acfcd80520617e7516b = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_6b5db3e64bd35376b7867578268f90e4.setIcon(icon_2a704af3dda78acfcd80520617e7516b);
var popup_485a6bcd29395bf0745a39d05cafa50c = L.popup({"maxWidth": "100%"});
var html_822662b8e1a36b76934ca7f7614df346 = $(`<div id="html_822662b8e1a36b76934ca7f7614df346" style="width: 100.0%; height: 100.0%;">جمعية اصدقاء المريض الخيرية Patient Friend's Benevolent Society</div>`)[0];
popup_485a6bcd29395bf0745a39d05cafa50c.setContent(html_822662b8e1a36b76934ca7f7614df346);
marker_6b5db3e64bd35376b7867578268f90e4.bindPopup(popup_485a6bcd29395bf0745a39d05cafa50c)
;
var marker_abf4b450947e6f717b91e59c222e2bf1 = L.marker(
[31.5597971, 34.5652982],
{}
).addTo(feature_group_6c67d40fcdb8f6aad71138c9a654a66f);
var icon_c2ae631fc7406420f2c1fc8a50e9e380 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_abf4b450947e6f717b91e59c222e2bf1.setIcon(icon_c2ae631fc7406420f2c1fc8a50e9e380);
var popup_ff44e660190d8014da6ad947fd851381 = L.popup({"maxWidth": "100%"});
var html_65c23a137f0829d75a2e83772ca2d08c = $(`<div id="html_65c23a137f0829d75a2e83772ca2d08c" style="width: 100.0%; height: 100.0%;">כללית</div>`)[0];
popup_ff44e660190d8014da6ad947fd851381.setContent(html_65c23a137f0829d75a2e83772ca2d08c);
marker_abf4b450947e6f717b91e59c222e2bf1.bindPopup(popup_ff44e660190d8014da6ad947fd851381)
;
var marker_4a3f64e579532777032d8cdf36d4a75e = L.marker(
[31.5339406, 34.5067977],
{}
).addTo(feature_group_6c67d40fcdb8f6aad71138c9a654a66f);
var icon_0faafd9b444ed6756c46c3701773bd6e = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_4a3f64e579532777032d8cdf36d4a75e.setIcon(icon_0faafd9b444ed6756c46c3701773bd6e);
var popup_cbe1bc77704dcdf31c8116f4756a7ef4 = L.popup({"maxWidth": "100%"});
var html_ef971971ffb84ed847ce0bb5d03c87a3 = $(`<div id="html_ef971971ffb84ed847ce0bb5d03c87a3" style="width: 100.0%; height: 100.0%;">مستشفى العودة</div>`)[0];
popup_cbe1bc77704dcdf31c8116f4756a7ef4.setContent(html_ef971971ffb84ed847ce0bb5d03c87a3);
marker_4a3f64e579532777032d8cdf36d4a75e.bindPopup(popup_cbe1bc77704dcdf31c8116f4756a7ef4)
;
var marker_e7d298fce643e5afd42ec02bbc8282a3 = L.marker(
[31.546277, 34.5002604],
{}
).addTo(feature_group_6c67d40fcdb8f6aad71138c9a654a66f);
var icon_cf63526de09dc76d5209429e31ad56a2 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_e7d298fce643e5afd42ec02bbc8282a3.setIcon(icon_cf63526de09dc76d5209429e31ad56a2);
var popup_f593ba8453edb7f6a2e9f42d28b9939a = L.popup({"maxWidth": "100%"});
var html_14c350dce35bcfd9d64cb0925e7867d8 = $(`<div id="html_14c350dce35bcfd9d64cb0925e7867d8" style="width: 100.0%; height: 100.0%;">Hala AlShawa Medical Center</div>`)[0];
popup_f593ba8453edb7f6a2e9f42d28b9939a.setContent(html_14c350dce35bcfd9d64cb0925e7867d8);
marker_e7d298fce643e5afd42ec02bbc8282a3.bindPopup(popup_f593ba8453edb7f6a2e9f42d28b9939a)
;
var marker_846af04e10c299195b73bdff4e434457 = L.marker(
[31.5532226, 34.4938948],
{}
).addTo(feature_group_6c67d40fcdb8f6aad71138c9a654a66f);
var icon_47a038f060ac0787cb375c0c57d0e3f9 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_846af04e10c299195b73bdff4e434457.setIcon(icon_47a038f060ac0787cb375c0c57d0e3f9);
var popup_8c2113a8d0b1d9ddca64fcd424071192 = L.popup({"maxWidth": "100%"});
var html_c356ee27c8c0228db1833767d6709563 = $(`<div id="html_c356ee27c8c0228db1833767d6709563" style="width: 100.0%; height: 100.0%;">فلسطين إسلامية عربية</div>`)[0];
popup_8c2113a8d0b1d9ddca64fcd424071192.setContent(html_c356ee27c8c0228db1833767d6709563);
marker_846af04e10c299195b73bdff4e434457.bindPopup(popup_8c2113a8d0b1d9ddca64fcd424071192)
;
var marker_5776be725c9d116e7c8d032287dd2f08 = L.marker(
[31.53777520000001, 34.4786979],
{}
).addTo(feature_group_6c67d40fcdb8f6aad71138c9a654a66f);
var icon_d6e65f26d0da41ef137ef4e18c678d04 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_5776be725c9d116e7c8d032287dd2f08.setIcon(icon_d6e65f26d0da41ef137ef4e18c678d04);
var popup_02055d3bac441bd8825aae73af8a3c06 = L.popup({"maxWidth": "100%"});
var html_7a9d6d54c46a8c41ea7ca77987afe73a = $(`<div id="html_7a9d6d54c46a8c41ea7ca77987afe73a" style="width: 100.0%; height: 100.0%;">عيادة الصفطاوي</div>`)[0];
popup_02055d3bac441bd8825aae73af8a3c06.setContent(html_7a9d6d54c46a8c41ea7ca77987afe73a);
marker_5776be725c9d116e7c8d032287dd2f08.bindPopup(popup_02055d3bac441bd8825aae73af8a3c06)
;
var marker_7fdf5dabfed892d218ed4a64785233c0 = L.marker(
[31.52939599999999, 34.479741],
{}
).addTo(feature_group_6c67d40fcdb8f6aad71138c9a654a66f);
var icon_e58f7173eb3ee7a4dd1f22a141100f39 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_7fdf5dabfed892d218ed4a64785233c0.setIcon(icon_e58f7173eb3ee7a4dd1f22a141100f39);
var popup_e2930bad80c4cfab52daac773183a200 = L.popup({"maxWidth": "100%"});
var html_c442af751090c05ab9a1cd4e5b14fcc4 = $(`<div id="html_c442af751090c05ab9a1cd4e5b14fcc4" style="width: 100.0%; height: 100.0%;">مستشفى العودة</div>`)[0];
popup_e2930bad80c4cfab52daac773183a200.setContent(html_c442af751090c05ab9a1cd4e5b14fcc4);
marker_7fdf5dabfed892d218ed4a64785233c0.bindPopup(popup_e2930bad80c4cfab52daac773183a200)
;
var marker_7bef6d673824dda3876deb6df58aadba = L.marker(
[31.5479783, 34.5192012],
{}
).addTo(feature_group_6c67d40fcdb8f6aad71138c9a654a66f);
var icon_09856b1fbf0daa2a505d21fa9467dccd = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_7bef6d673824dda3876deb6df58aadba.setIcon(icon_09856b1fbf0daa2a505d21fa9467dccd);
var popup_b6002431c60df06e5250757c7b6f01bf = L.popup({"maxWidth": "100%"});
var html_87db68d931ab1092b5feb4082ef89bdd = $(`<div id="html_87db68d931ab1092b5feb4082ef89bdd" style="width: 100.0%; height: 100.0%;">مستشفي بلسم</div>`)[0];
popup_b6002431c60df06e5250757c7b6f01bf.setContent(html_87db68d931ab1092b5feb4082ef89bdd);
marker_7bef6d673824dda3876deb6df58aadba.bindPopup(popup_b6002431c60df06e5250757c7b6f01bf)
;
var marker_092439878c135656dcede18a66cf6dda = L.marker(
[31.5426974, 34.4706011],
{}
).addTo(feature_group_6c67d40fcdb8f6aad71138c9a654a66f);
var icon_968bb941117b77fd36058ed888835c78 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_092439878c135656dcede18a66cf6dda.setIcon(icon_968bb941117b77fd36058ed888835c78);
var popup_7c54ea4486f3312168cc22897ec1d386 = L.popup({"maxWidth": "100%"});
var html_ec82c57ecea547225abf86b4bbab9fce = $(`<div id="html_ec82c57ecea547225abf86b4bbab9fce" style="width: 100.0%; height: 100.0%;">مستشفى الكرامة التخصصي</div>`)[0];
popup_7c54ea4486f3312168cc22897ec1d386.setContent(html_ec82c57ecea547225abf86b4bbab9fce);
marker_092439878c135656dcede18a66cf6dda.bindPopup(popup_7c54ea4486f3312168cc22897ec1d386)
;
var marker_376fe0f8e671f81106c0d7258e611d42 = L.marker(
[31.53285409999999, 34.4700347],
{}
).addTo(feature_group_6c67d40fcdb8f6aad71138c9a654a66f);
var icon_ea8604a20558cbfa401f373efe907c3e = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_376fe0f8e671f81106c0d7258e611d42.setIcon(icon_ea8604a20558cbfa401f373efe907c3e);
var popup_3833eb1cd706fe6b31ee6a079247a63a = L.popup({"maxWidth": "100%"});
var html_cce2933ebd0fc6a51d72dea2801316f7 = $(`<div id="html_cce2933ebd0fc6a51d72dea2801316f7" style="width: 100.0%; height: 100.0%;">عيادة الشيخ رضوان</div>`)[0];
popup_3833eb1cd706fe6b31ee6a079247a63a.setContent(html_cce2933ebd0fc6a51d72dea2801316f7);
marker_376fe0f8e671f81106c0d7258e611d42.bindPopup(popup_3833eb1cd706fe6b31ee6a079247a63a)
;
var marker_c1d8550842af8f57812d7c72be932658 = L.marker(
[31.5355198, 34.4610061],
{}
).addTo(feature_group_6c67d40fcdb8f6aad71138c9a654a66f);
var icon_197558e1ca4163108dd5081a08ad16b2 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_c1d8550842af8f57812d7c72be932658.setIcon(icon_197558e1ca4163108dd5081a08ad16b2);
var popup_61385bc9f34447d52a61910c0953b1a9 = L.popup({"maxWidth": "100%"});
var html_4e2fef54543899d0e7d7e85342e443cc = $(`<div id="html_4e2fef54543899d0e7d7e85342e443cc" style="width: 100.0%; height: 100.0%;">مركز البسمه لطب وتقويم الأسنان</div>`)[0];
popup_61385bc9f34447d52a61910c0953b1a9.setContent(html_4e2fef54543899d0e7d7e85342e443cc);
marker_c1d8550842af8f57812d7c72be932658.bindPopup(popup_61385bc9f34447d52a61910c0953b1a9)
;
var marker_07070a44b43b7c8046c2e53eab740332 = L.marker(
[31.5392011, 34.5378469],
{}
).addTo(feature_group_6c67d40fcdb8f6aad71138c9a654a66f);
var icon_c878c71eaa376770fd7d12e0181a313a = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_07070a44b43b7c8046c2e53eab740332.setIcon(icon_c878c71eaa376770fd7d12e0181a313a);
var popup_92aa671ac6e57c0d1acf1cdbd288e1b8 = L.popup({"maxWidth": "100%"});
var html_8aed6e0ff1e5eceba46fe5b8e791846e = $(`<div id="html_8aed6e0ff1e5eceba46fe5b8e791846e" style="width: 100.0%; height: 100.0%;">مستشفي بيت حانون</div>`)[0];
popup_92aa671ac6e57c0d1acf1cdbd288e1b8.setContent(html_8aed6e0ff1e5eceba46fe5b8e791846e);
marker_07070a44b43b7c8046c2e53eab740332.bindPopup(popup_92aa671ac6e57c0d1acf1cdbd288e1b8)
;
var marker_0e942bc41f30b517d9a13db9410552ab = L.marker(
[31.5335083, 34.46005940000001],
{}
).addTo(feature_group_6c67d40fcdb8f6aad71138c9a654a66f);
var icon_8fc00d06fafb9428c9419a66ceed3b3b = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_0e942bc41f30b517d9a13db9410552ab.setIcon(icon_8fc00d06fafb9428c9419a66ceed3b3b);
var popup_7ce15e6bebb400ddda0f1f68285cedd7 = L.popup({"maxWidth": "100%"});
var html_e0dd30f21365830b694e8b905e4e6d9c = $(`<div id="html_e0dd30f21365830b694e8b905e4e6d9c" style="width: 100.0%; height: 100.0%;">Psychiatric Hospital, Al-Nasr Medical Complex</div>`)[0];
popup_7ce15e6bebb400ddda0f1f68285cedd7.setContent(html_e0dd30f21365830b694e8b905e4e6d9c);
marker_0e942bc41f30b517d9a13db9410552ab.bindPopup(popup_7ce15e6bebb400ddda0f1f68285cedd7)
;
var feature_group_b9859cee3169568a9278cf4595f3b5e5 = L.featureGroup(
{}
).addTo(map_72312ffaa53f74078a4ec80def83cc18);
var marker_3ee95462467b2ea983114906957137c8 = L.marker(
[31.5422251, 34.4951591],
{}
).addTo(feature_group_b9859cee3169568a9278cf4595f3b5e5);
var icon_5f07df73adca133924409286c192f5d0 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_3ee95462467b2ea983114906957137c8.setIcon(icon_5f07df73adca133924409286c192f5d0);
var popup_285c2a6d8c0f9d7097481e3cba001c83 = L.popup({"maxWidth": "100%"});
var html_9369ff2bba845c576ecbfea5fdf972c3 = $(`<div id="html_9369ff2bba845c576ecbfea5fdf972c3" style="width: 100.0%; height: 100.0%;">مدرسة الفاخورة</div>`)[0];
popup_285c2a6d8c0f9d7097481e3cba001c83.setContent(html_9369ff2bba845c576ecbfea5fdf972c3);
marker_3ee95462467b2ea983114906957137c8.bindPopup(popup_285c2a6d8c0f9d7097481e3cba001c83)
;
var marker_02e6a48883097f3219aa1a6f81e6942f = L.marker(
[31.5481466, 34.4904553],
{}
).addTo(feature_group_b9859cee3169568a9278cf4595f3b5e5);
var icon_d21b0b46f6d0b51925db9472638edb6d = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_02e6a48883097f3219aa1a6f81e6942f.setIcon(icon_d21b0b46f6d0b51925db9472638edb6d);
var popup_2499757995df066c7b77be30efe80a91 = L.popup({"maxWidth": "100%"});
var html_69bfef19bc9004637ae7a3148e41fc58 = $(`<div id="html_69bfef19bc9004637ae7a3148e41fc58" style="width: 100.0%; height: 100.0%;">مدرسة أبوعبيدة بن الجراح الثانوية للبنين</div>`)[0];
popup_2499757995df066c7b77be30efe80a91.setContent(html_69bfef19bc9004637ae7a3148e41fc58);
marker_02e6a48883097f3219aa1a6f81e6942f.bindPopup(popup_2499757995df066c7b77be30efe80a91)
;
var marker_02fcbc93f962cb09856a86729cb8557c = L.marker(
[31.53222679999999, 34.45745780000001],
{}
).addTo(feature_group_b9859cee3169568a9278cf4595f3b5e5);
var icon_aa0c44bb5ca31a2badbebc4138f8015d = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_02fcbc93f962cb09856a86729cb8557c.setIcon(icon_aa0c44bb5ca31a2badbebc4138f8015d);
var popup_1b55505625db17d5ed1ae4509f50ac5d = L.popup({"maxWidth": "100%"});
var html_cb929aac40fa6b7a0dd9b80280dff78c = $(`<div id="html_cb929aac40fa6b7a0dd9b80280dff78c" style="width: 100.0%; height: 100.0%;">مدرسة النصر الإسلامية النوذجية الخاصة</div>`)[0];
popup_1b55505625db17d5ed1ae4509f50ac5d.setContent(html_cb929aac40fa6b7a0dd9b80280dff78c);
marker_02fcbc93f962cb09856a86729cb8557c.bindPopup(popup_1b55505625db17d5ed1ae4509f50ac5d)
;
var marker_fe914688e1adea6acdeab69c4acb4723 = L.marker(
[31.5135879, 34.4553451],
{}
).addTo(feature_group_b9859cee3169568a9278cf4595f3b5e5);
var icon_215381968aa5b889f5dd72db8b86002b = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_fe914688e1adea6acdeab69c4acb4723.setIcon(icon_215381968aa5b889f5dd72db8b86002b);
var popup_57593193e5a7427f2bd9c00091262707 = L.popup({"maxWidth": "100%"});
var html_996ebb217a81d00d7d6b8aa23609fd15 = $(`<div id="html_996ebb217a81d00d7d6b8aa23609fd15" style="width: 100.0%; height: 100.0%;">Alqattan Center</div>`)[0];
popup_57593193e5a7427f2bd9c00091262707.setContent(html_996ebb217a81d00d7d6b8aa23609fd15);
marker_fe914688e1adea6acdeab69c4acb4723.bindPopup(popup_57593193e5a7427f2bd9c00091262707)
;
var marker_f4b6a132c484517ce04afb5609aaf2f0 = L.marker(
[31.5692871, 34.5343624],
{}
).addTo(feature_group_b9859cee3169568a9278cf4595f3b5e5);
var icon_6d0c5951d6cb9acf062f496e794f9a5a = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_f4b6a132c484517ce04afb5609aaf2f0.setIcon(icon_6d0c5951d6cb9acf062f496e794f9a5a);
var popup_d9f59f7c7d70057d87529e5309f46e71 = L.popup({"maxWidth": "100%"});
var html_0b6898c0a206200ababcebef92ac4d39 = $(`<div id="html_0b6898c0a206200ababcebef92ac4d39" style="width: 100.0%; height: 100.0%;">נתיב לשלום</div>`)[0];
popup_d9f59f7c7d70057d87529e5309f46e71.setContent(html_0b6898c0a206200ababcebef92ac4d39);
marker_f4b6a132c484517ce04afb5609aaf2f0.bindPopup(popup_d9f59f7c7d70057d87529e5309f46e71)
;
var marker_735d5b79c11a84c39ac8efba45806cff = L.marker(
[31.5024826, 34.45467939999999],
{}
).addTo(feature_group_b9859cee3169568a9278cf4595f3b5e5);
var icon_0fb3029f24de9d8f877ab2346ba45e04 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_735d5b79c11a84c39ac8efba45806cff.setIcon(icon_0fb3029f24de9d8f877ab2346ba45e04);
var popup_c062fa9945598ca96ec5062959ba3751 = L.popup({"maxWidth": "100%"});
var html_be93fa025863f2f1cba506daf05fd40c = $(`<div id="html_be93fa025863f2f1cba506daf05fd40c" style="width: 100.0%; height: 100.0%;">مدرسة الفلاح الابتدائية والاعدادية للاجئين</div>`)[0];
popup_c062fa9945598ca96ec5062959ba3751.setContent(html_be93fa025863f2f1cba506daf05fd40c);
marker_735d5b79c11a84c39ac8efba45806cff.bindPopup(popup_c062fa9945598ca96ec5062959ba3751)
;
var marker_d18648845eaf0727bb431e97de3c04c6 = L.marker(
[31.602749, 34.5423277],
{}
).addTo(feature_group_b9859cee3169568a9278cf4595f3b5e5);
var icon_84d16cd76d78c4ff11252e9e90a6f085 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_d18648845eaf0727bb431e97de3c04c6.setIcon(icon_84d16cd76d78c4ff11252e9e90a6f085);
var popup_832fc7d9b6f2b29d43ae8f14a52f2c13 = L.popup({"maxWidth": "100%"});
var html_2e94294120c4fe2a144cdeace92efb05 = $(`<div id="html_2e94294120c4fe2a144cdeace92efb05" style="width: 100.0%; height: 100.0%;">Eden Boarding School</div>`)[0];
popup_832fc7d9b6f2b29d43ae8f14a52f2c13.setContent(html_2e94294120c4fe2a144cdeace92efb05);
marker_d18648845eaf0727bb431e97de3c04c6.bindPopup(popup_832fc7d9b6f2b29d43ae8f14a52f2c13)
;
var marker_1ab0e111474deb502f9f870c9236e2f2 = L.marker(
[31.5923315, 34.5602739],
{}
).addTo(feature_group_b9859cee3169568a9278cf4595f3b5e5);
var icon_0f8939679786a583caa2be261450817a = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_1ab0e111474deb502f9f870c9236e2f2.setIcon(icon_0f8939679786a583caa2be261450817a);
var popup_4316715378d9cb376d7109e433811293 = L.popup({"maxWidth": "100%"});
var html_0a670abb0709d2c51071080d095dd7ef = $(`<div id="html_0a670abb0709d2c51071080d095dd7ef" style="width: 100.0%; height: 100.0%;">תיכון אזורי שקמה</div>`)[0];
popup_4316715378d9cb376d7109e433811293.setContent(html_0a670abb0709d2c51071080d095dd7ef);
marker_1ab0e111474deb502f9f870c9236e2f2.bindPopup(popup_4316715378d9cb376d7109e433811293)
;
var marker_69fbdbbad063d5f5de06c2cb3c0fa447 = L.marker(
[31.5923024, 34.56136999999999],
{}
).addTo(feature_group_b9859cee3169568a9278cf4595f3b5e5);
var icon_70e03fd132318c6a0370ca5e2c681128 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_69fbdbbad063d5f5de06c2cb3c0fa447.setIcon(icon_70e03fd132318c6a0370ca5e2c681128);
var popup_744c709c721a93e0e14e832d49f2c9a1 = L.popup({"maxWidth": "100%"});
var html_85d787e7a679c559d52d650c3c9a9f6f = $(`<div id="html_85d787e7a679c559d52d650c3c9a9f6f" style="width: 100.0%; height: 100.0%;">Hufem School</div>`)[0];
popup_744c709c721a93e0e14e832d49f2c9a1.setContent(html_85d787e7a679c559d52d650c3c9a9f6f);
marker_69fbdbbad063d5f5de06c2cb3c0fa447.bindPopup(popup_744c709c721a93e0e14e832d49f2c9a1)
;
var marker_e1bae090047539c98aeb960977a73438 = L.marker(
[31.53161, 34.5909938],
{}
).addTo(feature_group_b9859cee3169568a9278cf4595f3b5e5);
var icon_0347cfc2c7383404538f6e8d28cf5b42 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_e1bae090047539c98aeb960977a73438.setIcon(icon_0347cfc2c7383404538f6e8d28cf5b42);
var popup_32abec00691d69adea5d6501ff61d8f9 = L.popup({"maxWidth": "100%"});
var html_c2555a0d76914550fb573d3d1d631eff = $(`<div id="html_c2555a0d76914550fb573d3d1d631eff" style="width: 100.0%; height: 100.0%;">Guided imagery therapy center</div>`)[0];
popup_32abec00691d69adea5d6501ff61d8f9.setContent(html_c2555a0d76914550fb573d3d1d631eff);
marker_e1bae090047539c98aeb960977a73438.bindPopup(popup_32abec00691d69adea5d6501ff61d8f9)
;
var marker_83f936090d79575585422f473c561fa4 = L.marker(
[31.5241555, 34.5916661],
{}
).addTo(feature_group_b9859cee3169568a9278cf4595f3b5e5);
var icon_01044101f97bace7ecb6d53fd259cd3d = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_83f936090d79575585422f473c561fa4.setIcon(icon_01044101f97bace7ecb6d53fd259cd3d);
var popup_fc3f70714f29d3fe7f6d3ef00c9bb60b = L.popup({"maxWidth": "100%"});
var html_68452ca003ccd73356612e5b83e990df = $(`<div id="html_68452ca003ccd73356612e5b83e990df" style="width: 100.0%; height: 100.0%;">Sderot Hesder Yeshiva</div>`)[0];
popup_fc3f70714f29d3fe7f6d3ef00c9bb60b.setContent(html_68452ca003ccd73356612e5b83e990df);
marker_83f936090d79575585422f473c561fa4.bindPopup(popup_fc3f70714f29d3fe7f6d3ef00c9bb60b)
;
var marker_49d9b4b6644fc1d13fe85237f36c29e1 = L.marker(
[31.5326526, 34.59273830000001],
{}
).addTo(feature_group_b9859cee3169568a9278cf4595f3b5e5);
var icon_3b487b53611b0962bc7e41d0e6b0d982 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_49d9b4b6644fc1d13fe85237f36c29e1.setIcon(icon_3b487b53611b0962bc7e41d0e6b0d982);
var popup_79dd9bc0ac7547139d811a552ac30a91 = L.popup({"maxWidth": "100%"});
var html_6d5d2de7e8f4f4c42dc59c1f1edf31a9 = $(`<div id="html_6d5d2de7e8f4f4c42dc59c1f1edf31a9" style="width: 100.0%; height: 100.0%;">Alon science School</div>`)[0];
popup_79dd9bc0ac7547139d811a552ac30a91.setContent(html_6d5d2de7e8f4f4c42dc59c1f1edf31a9);
marker_49d9b4b6644fc1d13fe85237f36c29e1.bindPopup(popup_79dd9bc0ac7547139d811a552ac30a91)
;
var marker_2d458e37cb3b0e05a4ab4703423483d0 = L.marker(
[31.507513, 34.5916528],
{}
).addTo(feature_group_b9859cee3169568a9278cf4595f3b5e5);