-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGreater_Accra_map.html
9639 lines (4586 loc) · 356 KB
/
Greater_Accra_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
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<script>
L_NO_TOUCH = false;
L_DISABLE_3D = false;
</script>
<script src="https://cdn.jsdelivr.net/npm/leaflet@1.6.0/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/leaflet@1.6.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://rawcdn.githack.com/python-visualization/folium/master/folium/templates/leaflet.awesome.rotate.css"/>
<style>html, body {width: 100%;height: 100%;margin: 0;padding: 0;}</style>
<style>#map {position:absolute;top:0;bottom:0;right:0;left:0;}</style>
<meta name="viewport" content="width=device-width,
initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<style>
#map_a10715ff49f747ea849b275379e43133 {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
</head>
<body>
<div class="folium-map" id="map_a10715ff49f747ea849b275379e43133" ></div>
</body>
<script>
var map_a10715ff49f747ea849b275379e43133 = L.map(
"map_a10715ff49f747ea849b275379e43133",
{
center: [5.7452223, -0.4538212],
crs: L.CRS.EPSG3857,
zoom: 9,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_8a7b5639b93c4cc984ce397d7f3bc1ae = 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_a10715ff49f747ea849b275379e43133);
var marker_a9d42bd5ced9437eb0a768a8b6a37b3f = L.marker(
[5.5971400000000004, -0.15088],
{}
).addTo(map_a10715ff49f747ea849b275379e43133);
var popup_414396f17f7d41eca3b66b039935af9f = L.popup({"maxWidth": "100%"});
var html_8500f72622d54556a02141306d4967de = $(`<div id="html_8500f72622d54556a02141306d4967de" style="width: 100.0%; height: 100.0%;">Arakan Maternity Home</div>`)[0];
popup_414396f17f7d41eca3b66b039935af9f.setContent(html_8500f72622d54556a02141306d4967de);
marker_a9d42bd5ced9437eb0a768a8b6a37b3f.bindPopup(popup_414396f17f7d41eca3b66b039935af9f)
;
var marker_849f649c3ceb45529aca37ca7ac43ddc = L.marker(
[5.5971400000000004, -0.15088],
{}
).addTo(map_a10715ff49f747ea849b275379e43133);
var popup_410a102a852544b08435d757eb8b30be = L.popup({"maxWidth": "100%"});
var html_20fd0eaa7433401aa1163b377685528b = $(`<div id="html_20fd0eaa7433401aa1163b377685528b" style="width: 100.0%; height: 100.0%;">Arakan Medical Centre</div>`)[0];
popup_410a102a852544b08435d757eb8b30be.setContent(html_20fd0eaa7433401aa1163b377685528b);
marker_849f649c3ceb45529aca37ca7ac43ddc.bindPopup(popup_410a102a852544b08435d757eb8b30be)
;
var marker_b03e88bac9a54d349274cfc019a8730b = L.marker(
[5.5418199999999995, -0.2648],
{}
).addTo(map_a10715ff49f747ea849b275379e43133);
var popup_d4bcc250822f41dbb79b0ac6cbbbe5bb = L.popup({"maxWidth": "100%"});
var html_b34fe84d3ebf4e5cbff660bfe9659585 = $(`<div id="html_b34fe84d3ebf4e5cbff660bfe9659585" style="width: 100.0%; height: 100.0%;">1st Foundation Clinic</div>`)[0];
popup_d4bcc250822f41dbb79b0ac6cbbbe5bb.setContent(html_b34fe84d3ebf4e5cbff660bfe9659585);
marker_b03e88bac9a54d349274cfc019a8730b.bindPopup(popup_d4bcc250822f41dbb79b0ac6cbbbe5bb)
;
var marker_fa49d71e74e14f6bae6a0636b5551278 = L.marker(
[5.58704, -0.18391],
{}
).addTo(map_a10715ff49f747ea849b275379e43133);
var popup_22b04852b12945cfb225ec49f2a619b5 = L.popup({"maxWidth": "100%"});
var html_d268e3c70bf74af0914be59c9c829fe9 = $(`<div id="html_d268e3c70bf74af0914be59c9c829fe9" style="width: 100.0%; height: 100.0%;">37 Military Hospital</div>`)[0];
popup_22b04852b12945cfb225ec49f2a619b5.setContent(html_d268e3c70bf74af0914be59c9c829fe9);
marker_fa49d71e74e14f6bae6a0636b5551278.bindPopup(popup_22b04852b12945cfb225ec49f2a619b5)
;
var marker_be60386ce9d4442b80c73734b9ed7feb = L.marker(
[5.58446, -0.19419],
{}
).addTo(map_a10715ff49f747ea849b275379e43133);
var popup_4877550c45bd4fc696807ca4541cbad7 = L.popup({"maxWidth": "100%"});
var html_f6701152ded5467c83ceb1b490918fe0 = $(`<div id="html_f6701152ded5467c83ceb1b490918fe0" style="width: 100.0%; height: 100.0%;">441 Welfare Association Clinic</div>`)[0];
popup_4877550c45bd4fc696807ca4541cbad7.setContent(html_f6701152ded5467c83ceb1b490918fe0);
marker_be60386ce9d4442b80c73734b9ed7feb.bindPopup(popup_4877550c45bd4fc696807ca4541cbad7)
;
var marker_3e6d36e25ec74968b5b8882650f96018 = L.marker(
[5.53851, -0.24516999999999997],
{}
).addTo(map_a10715ff49f747ea849b275379e43133);
var popup_667a4ff1a8de43eda792b673e837cca9 = L.popup({"maxWidth": "100%"});
var html_26bc7a69f42147abbd3593c9b7cf740c = $(`<div id="html_26bc7a69f42147abbd3593c9b7cf740c" style="width: 100.0%; height: 100.0%;">Ablekuma Sub Metro Health Directorate</div>`)[0];
popup_667a4ff1a8de43eda792b673e837cca9.setContent(html_26bc7a69f42147abbd3593c9b7cf740c);
marker_3e6d36e25ec74968b5b8882650f96018.bindPopup(popup_667a4ff1a8de43eda792b673e837cca9)
;
var marker_1683542b0f5a4a2cbe7da5451f173dfb = L.marker(
[5.53469, -0.24216],
{}
).addTo(map_a10715ff49f747ea849b275379e43133);
var popup_518a439486a54eeabdec0ce212d77bbc = L.popup({"maxWidth": "100%"});
var html_f579f7e91a674c38bffb80d7e10e6448 = $(`<div id="html_f579f7e91a674c38bffb80d7e10e6448" style="width: 100.0%; height: 100.0%;">Abodwe Clinic (Star of the sea clinic)</div>`)[0];
popup_518a439486a54eeabdec0ce212d77bbc.setContent(html_f579f7e91a674c38bffb80d7e10e6448);
marker_1683542b0f5a4a2cbe7da5451f173dfb.bindPopup(popup_518a439486a54eeabdec0ce212d77bbc)
;
var marker_d02e33aef11d4a6680b5f1e286886d76 = L.marker(
[5.7345, -0.20296],
{}
).addTo(map_a10715ff49f747ea849b275379e43133);
var popup_78ca0233e6e04965aada25fb98c0c97f = L.popup({"maxWidth": "100%"});
var html_0ff38308cb064a358bcff74207a60a59 = $(`<div id="html_0ff38308cb064a358bcff74207a60a59" style="width: 100.0%; height: 100.0%;">Abokobi Health Centre</div>`)[0];
popup_78ca0233e6e04965aada25fb98c0c97f.setContent(html_0ff38308cb064a358bcff74207a60a59);
marker_d02e33aef11d4a6680b5f1e286886d76.bindPopup(popup_78ca0233e6e04965aada25fb98c0c97f)
;
var marker_da9466327ec54c5c978876c6737e6ef5 = L.marker(
[5.57034, -0.20905],
{}
).addTo(map_a10715ff49f747ea849b275379e43133);
var popup_50d9c4e372454c19bac3a00752ae7f5d = L.popup({"maxWidth": "100%"});
var html_79690a522b4145c5aa7a1e497aabc8f7 = $(`<div id="html_79690a522b4145c5aa7a1e497aabc8f7" style="width: 100.0%; height: 100.0%;">Abora Clinic</div>`)[0];
popup_50d9c4e372454c19bac3a00752ae7f5d.setContent(html_79690a522b4145c5aa7a1e497aabc8f7);
marker_da9466327ec54c5c978876c6737e6ef5.bindPopup(popup_50d9c4e372454c19bac3a00752ae7f5d)
;
var marker_c9472dddab254806bf51194e6caefc60 = L.marker(
[5.70749, -0.01335],
{}
).addTo(map_a10715ff49f747ea849b275379e43133);
var popup_78e88e520cbf483798c4fb91d48e94f2 = L.popup({"maxWidth": "100%"});
var html_2c720078b2764acabd7f5a9d0f18ff5c = $(`<div id="html_2c720078b2764acabd7f5a9d0f18ff5c" style="width: 100.0%; height: 100.0%;">Abotare Clinic (Alternative Medical Centre)</div>`)[0];
popup_78e88e520cbf483798c4fb91d48e94f2.setContent(html_2c720078b2764acabd7f5a9d0f18ff5c);
marker_c9472dddab254806bf51194e6caefc60.bindPopup(popup_78e88e520cbf483798c4fb91d48e94f2)
;
var marker_aa0dbebaa8e4415891becc79d3ca9ced = L.marker(
[5.5622300000000005, -0.20376],
{}
).addTo(map_a10715ff49f747ea849b275379e43133);
var popup_c1c96cb0ec2f42baa78c6fb0f17c002d = L.popup({"maxWidth": "100%"});
var html_6d8004a4051c499b8ae2c222b587a71d = $(`<div id="html_6d8004a4051c499b8ae2c222b587a71d" style="width: 100.0%; height: 100.0%;">Accra Metro Health Directorate</div>`)[0];
popup_c1c96cb0ec2f42baa78c6fb0f17c002d.setContent(html_6d8004a4051c499b8ae2c222b587a71d);
marker_aa0dbebaa8e4415891becc79d3ca9ced.bindPopup(popup_c1c96cb0ec2f42baa78c6fb0f17c002d)
;
var marker_8870bf615fc1422c9cb41cc5aa44291d = L.marker(
[5.56272, -0.20528000000000002],
{}
).addTo(map_a10715ff49f747ea849b275379e43133);
var popup_294e84715f2c4150810d2c190f60dcc6 = L.popup({"maxWidth": "100%"});
var html_62953a6c0cf5419094621aa6ae4c8326 = $(`<div id="html_62953a6c0cf5419094621aa6ae4c8326" style="width: 100.0%; height: 100.0%;">Accra Psychiatric Hospital</div>`)[0];
popup_294e84715f2c4150810d2c190f60dcc6.setContent(html_62953a6c0cf5419094621aa6ae4c8326);
marker_8870bf615fc1422c9cb41cc5aa44291d.bindPopup(popup_294e84715f2c4150810d2c190f60dcc6)
;
var marker_3c66a2e93f0541279452947569d608d2 = L.marker(
[5.56187, -0.17248],
{}
).addTo(map_a10715ff49f747ea849b275379e43133);
var popup_95fa309225874af2ac6c1c47a10e2d94 = L.popup({"maxWidth": "100%"});
var html_0d2ed466bf1c426794e170b725c97547 = $(`<div id="html_0d2ed466bf1c426794e170b725c97547" style="width: 100.0%; height: 100.0%;">Acheampong Memorial Clinic</div>`)[0];
popup_95fa309225874af2ac6c1c47a10e2d94.setContent(html_0d2ed466bf1c426794e170b725c97547);
marker_3c66a2e93f0541279452947569d608d2.bindPopup(popup_95fa309225874af2ac6c1c47a10e2d94)
;
var marker_652651837612403a8be7aebcf0bbb114 = L.marker(
[5.62922, -0.21475999999999998],
{}
).addTo(map_a10715ff49f747ea849b275379e43133);
var popup_31b72efce1774bf1b69c492d8aa281cb = L.popup({"maxWidth": "100%"});
var html_6fc9f6d01dfa489bbfa95d8e83c65d6c = $(`<div id="html_6fc9f6d01dfa489bbfa95d8e83c65d6c" style="width: 100.0%; height: 100.0%;">Achimota Hospital</div>`)[0];
popup_31b72efce1774bf1b69c492d8aa281cb.setContent(html_6fc9f6d01dfa489bbfa95d8e83c65d6c);
marker_652651837612403a8be7aebcf0bbb114.bindPopup(popup_31b72efce1774bf1b69c492d8aa281cb)
;
var marker_420ec67494144f3fa61dc592b53c3ff8 = L.marker(
[5.78477, 0.6271899999999999],
{}
).addTo(map_a10715ff49f747ea849b275379e43133);
var popup_cc9ba9a0607b4995a5bd93f573770ad3 = L.popup({"maxWidth": "100%"});
var html_01a72102155841c7a3aaa1cd79c2e9a8 = $(`<div id="html_01a72102155841c7a3aaa1cd79c2e9a8" style="width: 100.0%; height: 100.0%;">Ada Health Centre</div>`)[0];
popup_cc9ba9a0607b4995a5bd93f573770ad3.setContent(html_01a72102155841c7a3aaa1cd79c2e9a8);
marker_420ec67494144f3fa61dc592b53c3ff8.bindPopup(popup_cc9ba9a0607b4995a5bd93f573770ad3)
;
var marker_e0c8ee95835344e098e6249b7421cb94 = L.marker(
[5.5612900000000005, -0.20477],
{}
).addTo(map_a10715ff49f747ea849b275379e43133);
var popup_32984376c8ca47ba8cc19e7edce6bdf4 = L.popup({"maxWidth": "100%"});
var html_88f0e5f1ac4145cb91e7da7cc833a052 = $(`<div id="html_88f0e5f1ac4145cb91e7da7cc833a052" style="width: 100.0%; height: 100.0%;">Adabraka Polyclinic</div>`)[0];
popup_32984376c8ca47ba8cc19e7edce6bdf4.setContent(html_88f0e5f1ac4145cb91e7da7cc833a052);
marker_e0c8ee95835344e098e6249b7421cb94.bindPopup(popup_32984376c8ca47ba8cc19e7edce6bdf4)
;
var marker_836bc12167ca4141a76c58fba6632dd3 = L.marker(
[5.54896, -0.20779],
{}
).addTo(map_a10715ff49f747ea849b275379e43133);
var popup_f8b587af47aa4e058391603dc50a44d5 = L.popup({"maxWidth": "100%"});
var html_a003f735adfc43bbaefdfaf132afc649 = $(`<div id="html_a003f735adfc43bbaefdfaf132afc649" style="width: 100.0%; height: 100.0%;">Adehye Clinic</div>`)[0];
popup_f8b587af47aa4e058391603dc50a44d5.setContent(html_a003f735adfc43bbaefdfaf132afc649);
marker_836bc12167ca4141a76c58fba6632dd3.bindPopup(popup_f8b587af47aa4e058391603dc50a44d5)
;
var marker_86f0458cdaaf43108325274176f25dfa = L.marker(
[5.706169999999999, -0.16787],
{}
).addTo(map_a10715ff49f747ea849b275379e43133);
var popup_7ba1e3f9b60b485cb89ec61059ed223a = L.popup({"maxWidth": "100%"});
var html_429e70297cf645f88a05f4aded83f905 = $(`<div id="html_429e70297cf645f88a05f4aded83f905" style="width: 100.0%; height: 100.0%;">Adenta Clinic</div>`)[0];
popup_7ba1e3f9b60b485cb89ec61059ed223a.setContent(html_429e70297cf645f88a05f4aded83f905);
marker_86f0458cdaaf43108325274176f25dfa.bindPopup(popup_7ba1e3f9b60b485cb89ec61059ed223a)
;
var marker_87460e93d41e4a138a818ff93ca73859 = L.marker(
[5.55234, -0.2115],
{}
).addTo(map_a10715ff49f747ea849b275379e43133);
var popup_5ad44e3d61d1481897a8484bce273a5a = L.popup({"maxWidth": "100%"});
var html_8f4ab1e2f9bd45d4adb9e84248e2e171 = $(`<div id="html_8f4ab1e2f9bd45d4adb9e84248e2e171" style="width: 100.0%; height: 100.0%;">Adjabeng Leprosy Clinic</div>`)[0];
popup_5ad44e3d61d1481897a8484bce273a5a.setContent(html_8f4ab1e2f9bd45d4adb9e84248e2e171);
marker_87460e93d41e4a138a818ff93ca73859.bindPopup(popup_5ad44e3d61d1481897a8484bce273a5a)
;
var marker_d7243e4c41d94b10b22bc1e91786e3c8 = L.marker(
[5.6559800000000005, -0.25194],
{}
).addTo(map_a10715ff49f747ea849b275379e43133);
var popup_50eab8dda0c4462f9f17d642c1c41498 = L.popup({"maxWidth": "100%"});
var html_304b1941f03a47fdb3f9cd95df3184c8 = $(`<div id="html_304b1941f03a47fdb3f9cd95df3184c8" style="width: 100.0%; height: 100.0%;">Advent Clinic</div>`)[0];
popup_50eab8dda0c4462f9f17d642c1c41498.setContent(html_304b1941f03a47fdb3f9cd95df3184c8);
marker_d7243e4c41d94b10b22bc1e91786e3c8.bindPopup(popup_50eab8dda0c4462f9f17d642c1c41498)
;
var marker_a4f50ac4c0bc44e68df678f6990d71ed = L.marker(
[5.53295, -0.23736999999999997],
{}
).addTo(map_a10715ff49f747ea849b275379e43133);
var popup_c4b3667f5602442f8e5aa3dbcdbcf1a9 = L.popup({"maxWidth": "100%"});
var html_1bfdcf46e8e346d2bf4137cb6c5ed388 = $(`<div id="html_1bfdcf46e8e346d2bf4137cb6c5ed388" style="width: 100.0%; height: 100.0%;">Adwoa Boatema Memorial Clinic</div>`)[0];
popup_c4b3667f5602442f8e5aa3dbcdbcf1a9.setContent(html_1bfdcf46e8e346d2bf4137cb6c5ed388);
marker_a4f50ac4c0bc44e68df678f6990d71ed.bindPopup(popup_c4b3667f5602442f8e5aa3dbcdbcf1a9)
;
var marker_fb7fc9c40cb6402cb9fc481691df7a37 = L.marker(
[5.6902800000000004, -0.03417],
{}
).addTo(map_a10715ff49f747ea849b275379e43133);
var popup_6e804c46599a4b87869cf7f458407cb7 = L.popup({"maxWidth": "100%"});
var html_763eeab1d48f47c695ba0412aa388646 = $(`<div id="html_763eeab1d48f47c695ba0412aa388646" style="width: 100.0%; height: 100.0%;">Afenyo Memorial Hospital</div>`)[0];
popup_6e804c46599a4b87869cf7f458407cb7.setContent(html_763eeab1d48f47c695ba0412aa388646);
marker_fb7fc9c40cb6402cb9fc481691df7a37.bindPopup(popup_6e804c46599a4b87869cf7f458407cb7)
;
var marker_12a45bed3c0e4598bd40d1340b14fdbe = L.marker(
[5.801159999999999, 0.0061600000000000005],
{}
).addTo(map_a10715ff49f747ea849b275379e43133);
var popup_3b7342d479314a90833fde00946b14e1 = L.popup({"maxWidth": "100%"});
var html_ca015078989146a0a9b28f252936fefc = $(`<div id="html_ca015078989146a0a9b28f252936fefc" style="width: 100.0%; height: 100.0%;">Afienya Community Clinic</div>`)[0];
popup_3b7342d479314a90833fde00946b14e1.setContent(html_ca015078989146a0a9b28f252936fefc);
marker_12a45bed3c0e4598bd40d1340b14fdbe.bindPopup(popup_3b7342d479314a90833fde00946b14e1)
;
var marker_fc309f9121c7414c94b3b84c6454c899 = L.marker(
[5.98033, 0.0099],
{}
).addTo(map_a10715ff49f747ea849b275379e43133);
var popup_bc0b687e7ebc4b21819af2fbb01021a6 = L.popup({"maxWidth": "100%"});
var html_935bb80f34f34ff8b506fb62a7a3a32b = $(`<div id="html_935bb80f34f34ff8b506fb62a7a3a32b" style="width: 100.0%; height: 100.0%;">Agomeda Community Clinic</div>`)[0];
popup_bc0b687e7ebc4b21819af2fbb01021a6.setContent(html_935bb80f34f34ff8b506fb62a7a3a32b);
marker_fc309f9121c7414c94b3b84c6454c899.bindPopup(popup_bc0b687e7ebc4b21819af2fbb01021a6)
;
var marker_a69264f57320440eb6af4c3d29ada70e = L.marker(
[5.6039900000000005, -0.1722],
{}
).addTo(map_a10715ff49f747ea849b275379e43133);
var popup_9b404c77a94a44ec8e0d73291fb45a2d = L.popup({"maxWidth": "100%"});
var html_6ff50f9818f5484f9e345d2215123cb2 = $(`<div id="html_6ff50f9818f5484f9e345d2215123cb2" style="width: 100.0%; height: 100.0%;">Airport Clinic Ltd</div>`)[0];
popup_9b404c77a94a44ec8e0d73291fb45a2d.setContent(html_6ff50f9818f5484f9e345d2215123cb2);
marker_a69264f57320440eb6af4c3d29ada70e.bindPopup(popup_9b404c77a94a44ec8e0d73291fb45a2d)
;
var marker_2ed4cc6ec24b4610a78a7bda6512edc9 = L.marker(
[5.60219, -0.19218],
{}
).addTo(map_a10715ff49f747ea849b275379e43133);
var popup_1ad30eb34f404ce4b5c79dcb25f8de50 = L.popup({"maxWidth": "100%"});
var html_641ebc2b0a4645b1879498bd02003d19 = $(`<div id="html_641ebc2b0a4645b1879498bd02003d19" style="width: 100.0%; height: 100.0%;">Akai House Clinic</div>`)[0];
popup_1ad30eb34f404ce4b5c79dcb25f8de50.setContent(html_641ebc2b0a4645b1879498bd02003d19);
marker_2ed4cc6ec24b4610a78a7bda6512edc9.bindPopup(popup_1ad30eb34f404ce4b5c79dcb25f8de50)
;
var marker_fdd77ebd79ee434fa25b6c3c57f32d90 = L.marker(
[5.566330000000001, -0.18300999999999998],
{}
).addTo(map_a10715ff49f747ea849b275379e43133);
var popup_fa8245e6466247968809e10800297382 = L.popup({"maxWidth": "100%"});
var html_4c613da060b44f40bfece0d688e7b469 = $(`<div id="html_4c613da060b44f40bfece0d688e7b469" style="width: 100.0%; height: 100.0%;">Akai House Clinic</div>`)[0];
popup_fa8245e6466247968809e10800297382.setContent(html_4c613da060b44f40bfece0d688e7b469);
marker_fdd77ebd79ee434fa25b6c3c57f32d90.bindPopup(popup_fa8245e6466247968809e10800297382)
;
var marker_1b23d57fa6164786876fcb12d46b7965 = L.marker(
[5.6597, -0.25092],
{}
).addTo(map_a10715ff49f747ea849b275379e43133);
var popup_4c79d3cd79cb4aa5bab6b0d256d5478c = L.popup({"maxWidth": "100%"});
var html_7d5194be60804db8aef30265f2211d7e = $(`<div id="html_7d5194be60804db8aef30265f2211d7e" style="width: 100.0%; height: 100.0%;">Akyama Clinic</div>`)[0];
popup_4c79d3cd79cb4aa5bab6b0d256d5478c.setContent(html_7d5194be60804db8aef30265f2211d7e);
marker_1b23d57fa6164786876fcb12d46b7965.bindPopup(popup_4c79d3cd79cb4aa5bab6b0d256d5478c)
;
var marker_0b0b138880714e2da54a30ff4d057c9e = L.marker(
[5.5978, -0.21331],
{}
).addTo(map_a10715ff49f747ea849b275379e43133);
var popup_5a986be7629c42138936cdc5489cf7ec = L.popup({"maxWidth": "100%"});
var html_caa7f578c6d34970a335c09c947c20c3 = $(`<div id="html_caa7f578c6d34970a335c09c947c20c3" style="width: 100.0%; height: 100.0%;">Alajo Clinic</div>`)[0];
popup_5a986be7629c42138936cdc5489cf7ec.setContent(html_caa7f578c6d34970a335c09c947c20c3);
marker_0b0b138880714e2da54a30ff4d057c9e.bindPopup(popup_5a986be7629c42138936cdc5489cf7ec)
;
var marker_0e5f8861350c425c9e51e4f4cf9d6094 = L.marker(
[5.61371, -0.24045999999999998],
{}
).addTo(map_a10715ff49f747ea849b275379e43133);
var popup_5227c90fd234495789f6cd6b7e84f02b = L.popup({"maxWidth": "100%"});
var html_958b2a9cc8aa42058cd4aa1fe5086686 = $(`<div id="html_958b2a9cc8aa42058cd4aa1fe5086686" style="width: 100.0%; height: 100.0%;">Al-ayar Clinic & Maternity Home</div>`)[0];
popup_5227c90fd234495789f6cd6b7e84f02b.setContent(html_958b2a9cc8aa42058cd4aa1fe5086686);
marker_0e5f8861350c425c9e51e4f4cf9d6094.bindPopup(popup_5227c90fd234495789f6cd6b7e84f02b)
;
var marker_9ca476a73fb545a3b381071b3d2f1604 = L.marker(
[5.6655, -0.02545],
{}
).addTo(map_a10715ff49f747ea849b275379e43133);
var popup_9e2a19925a64410fba16bf87302bec51 = L.popup({"maxWidth": "100%"});
var html_319d493d0c284eda95ef8bc58831ff96 = $(`<div id="html_319d493d0c284eda95ef8bc58831ff96" style="width: 100.0%; height: 100.0%;">Alberto Clinic</div>`)[0];
popup_9e2a19925a64410fba16bf87302bec51.setContent(html_319d493d0c284eda95ef8bc58831ff96);
marker_9ca476a73fb545a3b381071b3d2f1604.bindPopup(popup_9e2a19925a64410fba16bf87302bec51)
;
var marker_be58323c24f646c78885c9002e670a0c = L.marker(
[5.564019999999999, -0.23544],
{}
).addTo(map_a10715ff49f747ea849b275379e43133);
var popup_dfc8a4c79786493a8dede07246121a4b = L.popup({"maxWidth": "100%"});
var html_ffde9cd1357542d6a64dd23057b91bb3 = $(`<div id="html_ffde9cd1357542d6a64dd23057b91bb3" style="width: 100.0%; height: 100.0%;">Alfred Memorial Clinic</div>`)[0];
popup_dfc8a4c79786493a8dede07246121a4b.setContent(html_ffde9cd1357542d6a64dd23057b91bb3);
marker_be58323c24f646c78885c9002e670a0c.bindPopup(popup_dfc8a4c79786493a8dede07246121a4b)
;
var marker_d63ba0205bde4d3ca998e9c852ba9947 = L.marker(
[5.64579, -0.00927],
{}
).addTo(map_a10715ff49f747ea849b275379e43133);
var popup_75bd0701c5b74522b4569e8b34161793 = L.popup({"maxWidth": "100%"});
var html_43050d80bf9040a69e0b3883eb6406ba = $(`<div id="html_43050d80bf9040a69e0b3883eb6406ba" style="width: 100.0%; height: 100.0%;">Alpha Dental Clinic</div>`)[0];
popup_75bd0701c5b74522b4569e8b34161793.setContent(html_43050d80bf9040a69e0b3883eb6406ba);
marker_d63ba0205bde4d3ca998e9c852ba9947.bindPopup(popup_75bd0701c5b74522b4569e8b34161793)
;
var marker_0326e082bd6642758635773e6468f208 = L.marker(
[5.66423, -0.15746],
{}
).addTo(map_a10715ff49f747ea849b275379e43133);
var popup_bf9add76e06542dfb8ad521482fa8611 = L.popup({"maxWidth": "100%"});
var html_3c36564423da49229a0f2499f1083087 = $(`<div id="html_3c36564423da49229a0f2499f1083087" style="width: 100.0%; height: 100.0%;">Alpha Medical centre</div>`)[0];
popup_bf9add76e06542dfb8ad521482fa8611.setContent(html_3c36564423da49229a0f2499f1083087);
marker_0326e082bd6642758635773e6468f208.bindPopup(popup_bf9add76e06542dfb8ad521482fa8611)
;
var marker_b008164110ea4f20b2cdc5dda9141486 = L.marker(
[5.71054, -0.16063],
{}
).addTo(map_a10715ff49f747ea849b275379e43133);
var popup_0db1ec15dc4343d3a6dd24f0443b73b0 = L.popup({"maxWidth": "100%"});
var html_8203833183f34891b699969e4324f1d3 = $(`<div id="html_8203833183f34891b699969e4324f1d3" style="width: 100.0%; height: 100.0%;">Amaganaa Clinic</div>`)[0];
popup_0db1ec15dc4343d3a6dd24f0443b73b0.setContent(html_8203833183f34891b699969e4324f1d3);
marker_b008164110ea4f20b2cdc5dda9141486.bindPopup(popup_0db1ec15dc4343d3a6dd24f0443b73b0)
;
var marker_7ddba3d4444d4689a3060bf83e38882b = L.marker(
[5.6396, -0.16437000000000002],
{}
).addTo(map_a10715ff49f747ea849b275379e43133);
var popup_ce03ec637a6b4b32b39fe9e0125c0630 = L.popup({"maxWidth": "100%"});
var html_402c9e0f889944f6a3f20adfcb4fcd30 = $(`<div id="html_402c9e0f889944f6a3f20adfcb4fcd30" style="width: 100.0%; height: 100.0%;">Amanda Maternity Home & Clinic (formerly Abaya Clinic & Maternity Home)</div>`)[0];
popup_ce03ec637a6b4b32b39fe9e0125c0630.setContent(html_402c9e0f889944f6a3f20adfcb4fcd30);
marker_7ddba3d4444d4689a3060bf83e38882b.bindPopup(popup_ce03ec637a6b4b32b39fe9e0125c0630)
;
var marker_c91aa136028e41b5bd7afd7d7cab6a72 = L.marker(
[5.70185, -0.29998],
{}
).addTo(map_a10715ff49f747ea849b275379e43133);
var popup_22c149cc8390452690c23132eb86eeb2 = L.popup({"maxWidth": "100%"});
var html_6dc80199877f46f885ba6df38b4218b1 = $(`<div id="html_6dc80199877f46f885ba6df38b4218b1" style="width: 100.0%; height: 100.0%;">Amasaman Health Centre</div>`)[0];
popup_22c149cc8390452690c23132eb86eeb2.setContent(html_6dc80199877f46f885ba6df38b4218b1);
marker_c91aa136028e41b5bd7afd7d7cab6a72.bindPopup(popup_22c149cc8390452690c23132eb86eeb2)
;
var marker_0d1ef021e5f6435db6df5fcced4f4618 = L.marker(
[5.56524, -0.23646],
{}
).addTo(map_a10715ff49f747ea849b275379e43133);
var popup_fe4dcc34349144a1b08043e74bcccb2a = L.popup({"maxWidth": "100%"});
var html_97cf5fd335c44153bfd56e8e28c87058 = $(`<div id="html_97cf5fd335c44153bfd56e8e28c87058" style="width: 100.0%; height: 100.0%;">Amazing Grace Clinic</div>`)[0];
popup_fe4dcc34349144a1b08043e74bcccb2a.setContent(html_97cf5fd335c44153bfd56e8e28c87058);
marker_0d1ef021e5f6435db6df5fcced4f4618.bindPopup(popup_fe4dcc34349144a1b08043e74bcccb2a)
;
var marker_b0258d56ef9141858ab95785e1054fa2 = L.marker(
[5.59055, -0.28731999999999996],
{}
).addTo(map_a10715ff49f747ea849b275379e43133);
var popup_1703e1d194f8455a887bb8728c91f153 = L.popup({"maxWidth": "100%"});
var html_a325ed8ffd9242e3a6c7d071ef6c2555 = $(`<div id="html_a325ed8ffd9242e3a6c7d071ef6c2555" style="width: 100.0%; height: 100.0%;">Amoah Memorial Hospital</div>`)[0];
popup_1703e1d194f8455a887bb8728c91f153.setContent(html_a325ed8ffd9242e3a6c7d071ef6c2555);
marker_b0258d56ef9141858ab95785e1054fa2.bindPopup(popup_1703e1d194f8455a887bb8728c91f153)
;
var marker_4ab5fa4397d04409b04edc6a2782bf14 = L.marker(
[5.61206, -0.41456000000000004],
{}
).addTo(map_a10715ff49f747ea849b275379e43133);
var popup_33bfc3e8862740d691ce1ed1b2188866 = L.popup({"maxWidth": "100%"});
var html_a5dd609802e44193b75576e8fb80c1aa = $(`<div id="html_a5dd609802e44193b75576e8fb80c1aa" style="width: 100.0%; height: 100.0%;">Ananda Marga Primary Health Clinic</div>`)[0];
popup_33bfc3e8862740d691ce1ed1b2188866.setContent(html_a5dd609802e44193b75576e8fb80c1aa);
marker_4ab5fa4397d04409b04edc6a2782bf14.bindPopup(popup_33bfc3e8862740d691ce1ed1b2188866)
;
var marker_9a6af37da8c34f5b88e7ff2d97a5e5c7 = L.marker(
[5.6407300000000005, -0.26306],
{}
).addTo(map_a10715ff49f747ea849b275379e43133);
var popup_538f5dd4e49a4e5389cde1de6d97be7b = L.popup({"maxWidth": "100%"});
var html_60b974b33b054a2f8a17cbace760c41e = $(`<div id="html_60b974b33b054a2f8a17cbace760c41e" style="width: 100.0%; height: 100.0%;">Aneeja Clinic</div>`)[0];
popup_538f5dd4e49a4e5389cde1de6d97be7b.setContent(html_60b974b33b054a2f8a17cbace760c41e);
marker_9a6af37da8c34f5b88e7ff2d97a5e5c7.bindPopup(popup_538f5dd4e49a4e5389cde1de6d97be7b)
;
var marker_6a86dd13952f44e58bfab022c50ee85a = L.marker(
[5.79134, 0.36983],
{}
).addTo(map_a10715ff49f747ea849b275379e43133);
var popup_0fc17f0a1720488bbb540d3b8c6cefd9 = L.popup({"maxWidth": "100%"});
var html_6241b774359d4b5c85a7533c4c5c6cfa = $(`<div id="html_6241b774359d4b5c85a7533c4c5c6cfa" style="width: 100.0%; height: 100.0%;">Anyamam Clinic</div>`)[0];
popup_0fc17f0a1720488bbb540d3b8c6cefd9.setContent(html_6241b774359d4b5c85a7533c4c5c6cfa);
marker_6a86dd13952f44e58bfab022c50ee85a.bindPopup(popup_0fc17f0a1720488bbb540d3b8c6cefd9)
;
var marker_42ee0aa84b944ae599081e4ae17dcd6e = L.marker(
[5.5696900000000005, -0.20942],
{}
).addTo(map_a10715ff49f747ea849b275379e43133);
var popup_7b3b09fd13e0454db8a5b9d8b2e332c4 = L.popup({"maxWidth": "100%"});
var html_a3281ff007234330b43f3d88affb7ffc = $(`<div id="html_a3281ff007234330b43f3d88affb7ffc" style="width: 100.0%; height: 100.0%;">Apaak Traditional Clinic</div>`)[0];
popup_7b3b09fd13e0454db8a5b9d8b2e332c4.setContent(html_a3281ff007234330b43f3d88affb7ffc);
marker_42ee0aa84b944ae599081e4ae17dcd6e.bindPopup(popup_7b3b09fd13e0454db8a5b9d8b2e332c4)
;
var marker_04462504af604f2d8b2e37c865c7023d = L.marker(
[5.6902800000000004, -0.03417],
{}
).addTo(map_a10715ff49f747ea849b275379e43133);
var popup_ecae5b13f4964f5ab05ab6dd2184bf3d = L.popup({"maxWidth": "100%"});
var html_a6ccbc7147eb4573a77b6b391be37ec8 = $(`<div id="html_a6ccbc7147eb4573a77b6b391be37ec8" style="width: 100.0%; height: 100.0%;">Apenyo Memorial Hospital</div>`)[0];
popup_ecae5b13f4964f5ab05ab6dd2184bf3d.setContent(html_a6ccbc7147eb4573a77b6b391be37ec8);
marker_04462504af604f2d8b2e37c865c7023d.bindPopup(popup_ecae5b13f4964f5ab05ab6dd2184bf3d)
;
var marker_f1594c24c22a45af8396a83cbe157115 = L.marker(
[5.5690800000000005, -0.22895],
{}
).addTo(map_a10715ff49f747ea849b275379e43133);
var popup_8d7f0e046fe14772b23d1ab540a15c91 = L.popup({"maxWidth": "100%"});
var html_c8fbe3030a9e417a8299c8fe6caa615d = $(`<div id="html_c8fbe3030a9e417a8299c8fe6caa615d" style="width: 100.0%; height: 100.0%;">Apex Medical Centre</div>`)[0];
popup_8d7f0e046fe14772b23d1ab540a15c91.setContent(html_c8fbe3030a9e417a8299c8fe6caa615d);
marker_f1594c24c22a45af8396a83cbe157115.bindPopup(popup_8d7f0e046fe14772b23d1ab540a15c91)
;
var marker_f409ca6676064f47bbac2a14b13a0a6a = L.marker(
[5.61148, -0.22208000000000003],
{}
).addTo(map_a10715ff49f747ea849b275379e43133);
var popup_f59b78072e8049bdb1e129bda1c430e3 = L.popup({"maxWidth": "100%"});
var html_c97d47c94e5744b99890653105df6351 = $(`<div id="html_c97d47c94e5744b99890653105df6351" style="width: 100.0%; height: 100.0%;">Asamoah Clinic</div>`)[0];
popup_f59b78072e8049bdb1e129bda1c430e3.setContent(html_c97d47c94e5744b99890653105df6351);
marker_f409ca6676064f47bbac2a14b13a0a6a.bindPopup(popup_f59b78072e8049bdb1e129bda1c430e3)
;
var marker_de9e6db2e3ad452cbd762c72addf7bdd = L.marker(
[5.6407300000000005, -0.16868],
{}
).addTo(map_a10715ff49f747ea849b275379e43133);
var popup_ba567c7d2fc4402eb992a4ff32e2203f = L.popup({"maxWidth": "100%"});
var html_e6e214b3ee044e3f8b96cb4eae3535fd = $(`<div id="html_e6e214b3ee044e3f8b96cb4eae3535fd" style="width: 100.0%; height: 100.0%;">Asare Odei Hospital</div>`)[0];
popup_ba567c7d2fc4402eb992a4ff32e2203f.setContent(html_e6e214b3ee044e3f8b96cb4eae3535fd);
marker_de9e6db2e3ad452cbd762c72addf7bdd.bindPopup(popup_ba567c7d2fc4402eb992a4ff32e2203f)
;
var marker_68975112d8644365a6be2c129963e3d0 = L.marker(
[5.68576, -0.03945],
{}
).addTo(map_a10715ff49f747ea849b275379e43133);
var popup_9a74f90f517c41fe88ee8068b8779f0a = L.popup({"maxWidth": "100%"});
var html_08acaef9549f4db2ac75f3a30cf77046 = $(`<div id="html_08acaef9549f4db2ac75f3a30cf77046" style="width: 100.0%; height: 100.0%;">Ashaiman Health Centre</div>`)[0];
popup_9a74f90f517c41fe88ee8068b8779f0a.setContent(html_08acaef9549f4db2ac75f3a30cf77046);
marker_68975112d8644365a6be2c129963e3d0.bindPopup(popup_9a74f90f517c41fe88ee8068b8779f0a)
;
var marker_eae777424c234738929e1d0d823fd41f = L.marker(
[5.68421, -0.13418],
{}
).addTo(map_a10715ff49f747ea849b275379e43133);
var popup_3be1e0fb2a1346cba349dcda109df00e = L.popup({"maxWidth": "100%"});
var html_9777a6fac5634c2cb544ba22ab536dc9 = $(`<div id="html_9777a6fac5634c2cb544ba22ab536dc9" style="width: 100.0%; height: 100.0%;">Ashalebotwe Community Clinic</div>`)[0];
popup_3be1e0fb2a1346cba349dcda109df00e.setContent(html_9777a6fac5634c2cb544ba22ab536dc9);
marker_eae777424c234738929e1d0d823fd41f.bindPopup(popup_3be1e0fb2a1346cba349dcda109df00e)
;
var marker_5fe3782be8e4454da115845f5fca26bd = L.marker(
[5.74555, -0.1547],
{}
).addTo(map_a10715ff49f747ea849b275379e43133);