-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEastern_map.html
7530 lines (3587 loc) · 276 KB
/
Eastern_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_f97a94294c924771b4615dd30605042d {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
</head>
<body>
<div class="folium-map" id="map_f97a94294c924771b4615dd30605042d" ></div>
</body>
<script>
var map_f97a94294c924771b4615dd30605042d = L.map(
"map_f97a94294c924771b4615dd30605042d",
{
center: [6.4576381, -1.0233539],
crs: L.CRS.EPSG3857,
zoom: 9,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_876746e393ff4dfab5fe794a7e2b53f6 = 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_f97a94294c924771b4615dd30605042d);
var marker_5665d47a8e174a5bb0d8c7418f38aea2 = L.marker(
[7.05265, -0.08252000000000001],
{}
).addTo(map_f97a94294c924771b4615dd30605042d);
var popup_44f01c73dcb049779f05a5cdc1564d31 = L.popup({"maxWidth": "100%"});
var html_597700682de34cfa8f809811f08fb796 = $(`<div id="html_597700682de34cfa8f809811f08fb796" style="width: 100.0%; height: 100.0%;">Amankwah RCH</div>`)[0];
popup_44f01c73dcb049779f05a5cdc1564d31.setContent(html_597700682de34cfa8f809811f08fb796);
marker_5665d47a8e174a5bb0d8c7418f38aea2.bindPopup(popup_44f01c73dcb049779f05a5cdc1564d31)
;
var marker_84486326350549f88d7b75998f1c6c6f = L.marker(
[6.99057, -0.16727999999999998],
{}
).addTo(map_f97a94294c924771b4615dd30605042d);
var popup_24cc0a96a6e84742a32b0218a3d37729 = L.popup({"maxWidth": "100%"});
var html_82933d7fb0424b619e836921d5b7cb72 = $(`<div id="html_82933d7fb0424b619e836921d5b7cb72" style="width: 100.0%; height: 100.0%;">Samanhyia CHPS</div>`)[0];
popup_24cc0a96a6e84742a32b0218a3d37729.setContent(html_82933d7fb0424b619e836921d5b7cb72);
marker_84486326350549f88d7b75998f1c6c6f.bindPopup(popup_24cc0a96a6e84742a32b0218a3d37729)
;
var marker_53f9410348c646458b7a040eff4590a3 = L.marker(
[6.933, -0.02507],
{}
).addTo(map_f97a94294c924771b4615dd30605042d);
var popup_6c3874bdfebc4f11b013c4cf9f8e3e26 = L.popup({"maxWidth": "100%"});
var html_bd4d1a39787d43f982af9c16ef4e71c9 = $(`<div id="html_bd4d1a39787d43f982af9c16ef4e71c9" style="width: 100.0%; height: 100.0%;">Memchemfre CHPS</div>`)[0];
popup_6c3874bdfebc4f11b013c4cf9f8e3e26.setContent(html_bd4d1a39787d43f982af9c16ef4e71c9);
marker_53f9410348c646458b7a040eff4590a3.bindPopup(popup_6c3874bdfebc4f11b013c4cf9f8e3e26)
;
var marker_784df16337de4f04a6e82e26cb38768e = L.marker(
[7.0488800000000005, -0.07725],
{}
).addTo(map_f97a94294c924771b4615dd30605042d);
var popup_095f2e1a6c314d60b6c2833f5fbfcab5 = L.popup({"maxWidth": "100%"});
var html_87616256d16645fd87733a6d6d57ce83 = $(`<div id="html_87616256d16645fd87733a6d6d57ce83" style="width: 100.0%; height: 100.0%;">Donkorkrom Presby Hospital</div>`)[0];
popup_095f2e1a6c314d60b6c2833f5fbfcab5.setContent(html_87616256d16645fd87733a6d6d57ce83);
marker_784df16337de4f04a6e82e26cb38768e.bindPopup(popup_095f2e1a6c314d60b6c2833f5fbfcab5)
;
var marker_0ee49931c42e4c8498cf46e092fbddb3 = L.marker(
[6.7560199999999995, -0.50408],
{}
).addTo(map_f97a94294c924771b4615dd30605042d);
var popup_e636d56226a14ef0b054f5ade958a0f9 = L.popup({"maxWidth": "100%"});
var html_f639c716d30f481ab7f45797b8ba0c7c = $(`<div id="html_f639c716d30f481ab7f45797b8ba0c7c" style="width: 100.0%; height: 100.0%;">Ekye Health Centre</div>`)[0];
popup_e636d56226a14ef0b054f5ade958a0f9.setContent(html_f639c716d30f481ab7f45797b8ba0c7c);
marker_0ee49931c42e4c8498cf46e092fbddb3.bindPopup(popup_e636d56226a14ef0b054f5ade958a0f9)
;
var marker_b3433a65186f45aa915576ad945a0c61 = L.marker(
[7.030880000000001, -0.48918999999999996],
{}
).addTo(map_f97a94294c924771b4615dd30605042d);
var popup_57b0c7e52f3447d1bd72c5868e9562f1 = L.popup({"maxWidth": "100%"});
var html_16480609fe68467282702fafcc6aa8cd = $(`<div id="html_16480609fe68467282702fafcc6aa8cd" style="width: 100.0%; height: 100.0%;">Kwasi Fante Health Centre</div>`)[0];
popup_57b0c7e52f3447d1bd72c5868e9562f1.setContent(html_16480609fe68467282702fafcc6aa8cd);
marker_b3433a65186f45aa915576ad945a0c61.bindPopup(popup_57b0c7e52f3447d1bd72c5868e9562f1)
;
var marker_fb0fe995298544db9e7be097a24846f6 = L.marker(
[6.95264, -0.43709],
{}
).addTo(map_f97a94294c924771b4615dd30605042d);
var popup_a882b7dd2b554ab78573949aee22841b = L.popup({"maxWidth": "100%"});
var html_725a8e4482b848248f97be468ff8af6c = $(`<div id="html_725a8e4482b848248f97be468ff8af6c" style="width: 100.0%; height: 100.0%;">Maame Krobo CHPS</div>`)[0];
popup_a882b7dd2b554ab78573949aee22841b.setContent(html_725a8e4482b848248f97be468ff8af6c);
marker_fb0fe995298544db9e7be097a24846f6.bindPopup(popup_a882b7dd2b554ab78573949aee22841b)
;
var marker_53056bfbb7ae4b66bded7e381ff7aefb = L.marker(
[6.935860000000001, -0.25254],
{}
).addTo(map_f97a94294c924771b4615dd30605042d);
var popup_271a361f0b674c13bd5c13c80ae5548a = L.popup({"maxWidth": "100%"});
var html_2a9703c98f4b422c9364cb20d812317a = $(`<div id="html_2a9703c98f4b422c9364cb20d812317a" style="width: 100.0%; height: 100.0%;">Tease Health Centre</div>`)[0];
popup_271a361f0b674c13bd5c13c80ae5548a.setContent(html_2a9703c98f4b422c9364cb20d812317a);
marker_53056bfbb7ae4b66bded7e381ff7aefb.bindPopup(popup_271a361f0b674c13bd5c13c80ae5548a)
;
var marker_689a39a340f246169f40778f891a4cd8 = L.marker(
[6.83016, -0.15398],
{}
).addTo(map_f97a94294c924771b4615dd30605042d);
var popup_148c723b50f848d29d8b1f38280d2f86 = L.popup({"maxWidth": "100%"});
var html_d440ec80e576402eb301327ee70795dc = $(`<div id="html_d440ec80e576402eb301327ee70795dc" style="width: 100.0%; height: 100.0%;">Fofori Community Clinic</div>`)[0];
popup_148c723b50f848d29d8b1f38280d2f86.setContent(html_d440ec80e576402eb301327ee70795dc);
marker_689a39a340f246169f40778f891a4cd8.bindPopup(popup_148c723b50f848d29d8b1f38280d2f86)
;
var marker_619b3040da874e1fa62e22f56fa8db50 = L.marker(
[5.979867, -0.089267],
{}
).addTo(map_f97a94294c924771b4615dd30605042d);
var popup_7d6360cec0f14232b4320a1b6e4f8f26 = L.popup({"maxWidth": "100%"});
var html_178a64e9ccf646f59f7522fe03721892 = $(`<div id="html_178a64e9ccf646f59f7522fe03721892" style="width: 100.0%; height: 100.0%;">Abiriw Clinic</div>`)[0];
popup_7d6360cec0f14232b4320a1b6e4f8f26.setContent(html_178a64e9ccf646f59f7522fe03721892);
marker_619b3040da874e1fa62e22f56fa8db50.bindPopup(popup_7d6360cec0f14232b4320a1b6e4f8f26)
;
var marker_299bc19fae3b4ef28131516944420b63 = L.marker(
[5.96086, -0.14825],
{}
).addTo(map_f97a94294c924771b4615dd30605042d);
var popup_e5a0f6559a5845e598f7f8665a177589 = L.popup({"maxWidth": "100%"});
var html_011654d73f524e449e5159e6a50b71b2 = $(`<div id="html_011654d73f524e449e5159e6a50b71b2" style="width: 100.0%; height: 100.0%;">Kwamoso RCH</div>`)[0];
popup_e5a0f6559a5845e598f7f8665a177589.setContent(html_011654d73f524e449e5159e6a50b71b2);
marker_299bc19fae3b4ef28131516944420b63.bindPopup(popup_e5a0f6559a5845e598f7f8665a177589)
;
var marker_505192f4dd1245de8565c92c13e0f2a3 = L.marker(
[6.026680000000001, -0.19738],
{}
).addTo(map_f97a94294c924771b4615dd30605042d);
var popup_f89fec464a2342408655a7e751c65e40 = L.popup({"maxWidth": "100%"});
var html_9faa805dbab44869af2c18233cde36cc = $(`<div id="html_9faa805dbab44869af2c18233cde36cc" style="width: 100.0%; height: 100.0%;">The Voice Maternity Clinic</div>`)[0];
popup_f89fec464a2342408655a7e751c65e40.setContent(html_9faa805dbab44869af2c18233cde36cc);
marker_505192f4dd1245de8565c92c13e0f2a3.bindPopup(popup_f89fec464a2342408655a7e751c65e40)
;
var marker_6cfbbdb7713b47bb824cb412983e282e = L.marker(
[5.94825, -0.21066999999999997],
{}
).addTo(map_f97a94294c924771b4615dd30605042d);
var popup_d98822ff137d43eb9a3d26a44aeaba0f = L.popup({"maxWidth": "100%"});
var html_5b5b6bea37b045ae8994ce595e1e6d38 = $(`<div id="html_5b5b6bea37b045ae8994ce595e1e6d38" style="width: 100.0%; height: 100.0%;">Adawso Health Centre</div>`)[0];
popup_d98822ff137d43eb9a3d26a44aeaba0f.setContent(html_5b5b6bea37b045ae8994ce595e1e6d38);
marker_6cfbbdb7713b47bb824cb412983e282e.bindPopup(popup_d98822ff137d43eb9a3d26a44aeaba0f)
;
var marker_ef7304f7b12b41c6bb97859116272cd1 = L.marker(
[6.0887, -0.26166],
{}
).addTo(map_f97a94294c924771b4615dd30605042d);
var popup_ff556b3a5bb14e62a42bff317a1f9d0d = L.popup({"maxWidth": "100%"});
var html_a9477e770b974414b517bc3820f6e8fe = $(`<div id="html_a9477e770b974414b517bc3820f6e8fe" style="width: 100.0%; height: 100.0%;">Nyarkoa Memorial Maternity Home</div>`)[0];
popup_ff556b3a5bb14e62a42bff317a1f9d0d.setContent(html_a9477e770b974414b517bc3820f6e8fe);
marker_ef7304f7b12b41c6bb97859116272cd1.bindPopup(popup_ff556b3a5bb14e62a42bff317a1f9d0d)
;
var marker_10a248b67aa7490b8bfb53cde4705249 = L.marker(
[5.9492, -0.21216999999999997],
{}
).addTo(map_f97a94294c924771b4615dd30605042d);
var popup_b9a7f213eded497a9142aadbf4305c82 = L.popup({"maxWidth": "100%"});
var html_a86a90fa4a854f28a5aaad5495c0a45f = $(`<div id="html_a86a90fa4a854f28a5aaad5495c0a45f" style="width: 100.0%; height: 100.0%;">Semehyia Maternity Home</div>`)[0];
popup_b9a7f213eded497a9142aadbf4305c82.setContent(html_a86a90fa4a854f28a5aaad5495c0a45f);
marker_10a248b67aa7490b8bfb53cde4705249.bindPopup(popup_b9a7f213eded497a9142aadbf4305c82)
;
var marker_ffb06ee7f2b84526b9f6880644856367 = L.marker(
[5.91265, -0.19193],
{}
).addTo(map_f97a94294c924771b4615dd30605042d);
var popup_d386628bbc864224977fc4087b8841f6 = L.popup({"maxWidth": "100%"});
var html_56b231a0b4a14d4c880cd5c7c8ce3d05 = $(`<div id="html_56b231a0b4a14d4c880cd5c7c8ce3d05" style="width: 100.0%; height: 100.0%;">Tadankro CHPS</div>`)[0];
popup_d386628bbc864224977fc4087b8841f6.setContent(html_56b231a0b4a14d4c880cd5c7c8ce3d05);
marker_ffb06ee7f2b84526b9f6880644856367.bindPopup(popup_d386628bbc864224977fc4087b8841f6)
;
var marker_44ee2aa9df92433bbb6ec06679ae5ea7 = L.marker(
[6.00807, -0.08046],
{}
).addTo(map_f97a94294c924771b4615dd30605042d);
var popup_110cdbd00e9f48e7b4aeeb56c2a9863f = L.popup({"maxWidth": "100%"});
var html_043f565ed7964e818eb458e13f3cbda9 = $(`<div id="html_043f565ed7964e818eb458e13f3cbda9" style="width: 100.0%; height: 100.0%;">Adukrom Health Centre</div>`)[0];
popup_110cdbd00e9f48e7b4aeeb56c2a9863f.setContent(html_043f565ed7964e818eb458e13f3cbda9);
marker_44ee2aa9df92433bbb6ec06679ae5ea7.bindPopup(popup_110cdbd00e9f48e7b4aeeb56c2a9863f)
;
var marker_bc55f46c65b44928a28c36ef667e1705 = L.marker(
[5.98148, -0.0779],
{}
).addTo(map_f97a94294c924771b4615dd30605042d);
var popup_492dd7f8f5be49e7980741cf4d86d479 = L.popup({"maxWidth": "100%"});
var html_5bb6e001764f4b6e99745e13ce44880c = $(`<div id="html_5bb6e001764f4b6e99745e13ce44880c" style="width: 100.0%; height: 100.0%;">Akropong Health Centre</div>`)[0];
popup_492dd7f8f5be49e7980741cf4d86d479.setContent(html_5bb6e001764f4b6e99745e13ce44880c);
marker_bc55f46c65b44928a28c36ef667e1705.bindPopup(popup_492dd7f8f5be49e7980741cf4d86d479)
;
var marker_d5068eb1dca9462dae2bae95aef05dac = L.marker(
[6.01045, -0.05167000000000001],
{}
).addTo(map_f97a94294c924771b4615dd30605042d);
var popup_30adb184d5cd4b39b98b24ec812d5b7d = L.popup({"maxWidth": "100%"});
var html_5992f2ba91314d89883f1859242d73fb = $(`<div id="html_5992f2ba91314d89883f1859242d73fb" style="width: 100.0%; height: 100.0%;">Aseseso RCH</div>`)[0];
popup_30adb184d5cd4b39b98b24ec812d5b7d.setContent(html_5992f2ba91314d89883f1859242d73fb);
marker_d5068eb1dca9462dae2bae95aef05dac.bindPopup(popup_30adb184d5cd4b39b98b24ec812d5b7d)
;
var marker_e2b225751eff416693fe7112166aa6a1 = L.marker(
[5.87404, -0.15763],
{}
).addTo(map_f97a94294c924771b4615dd30605042d);
var popup_50a92143a8d445e9820ed00450330e95 = L.popup({"maxWidth": "100%"});
var html_c5d40bbdf4114254b12c521f1b6c3c7a = $(`<div id="html_c5d40bbdf4114254b12c521f1b6c3c7a" style="width: 100.0%; height: 100.0%;">Obosomase RCH</div>`)[0];
popup_50a92143a8d445e9820ed00450330e95.setContent(html_c5d40bbdf4114254b12c521f1b6c3c7a);
marker_e2b225751eff416693fe7112166aa6a1.bindPopup(popup_50a92143a8d445e9820ed00450330e95)
;
var marker_cd1d1a72cc8a4e2fbf53d1eab396ea6e = L.marker(
[5.93509, -0.07314],
{}
).addTo(map_f97a94294c924771b4615dd30605042d);
var popup_a5f0938bfe214e6f9627c35255c47d27 = L.popup({"maxWidth": "100%"});
var html_9ec8df5121454db4b5c2d3337b593ff5 = $(`<div id="html_9ec8df5121454db4b5c2d3337b593ff5" style="width: 100.0%; height: 100.0%;">Larteh Health Centre</div>`)[0];
popup_a5f0938bfe214e6f9627c35255c47d27.setContent(html_9ec8df5121454db4b5c2d3337b593ff5);
marker_cd1d1a72cc8a4e2fbf53d1eab396ea6e.bindPopup(popup_a5f0938bfe214e6f9627c35255c47d27)
;
var marker_2c0291c550a042eb856691c9b7a6eeb9 = L.marker(
[5.90735, -0.14371],
{}
).addTo(map_f97a94294c924771b4615dd30605042d);
var popup_b174cb6e9cfd425f8d02807a8c00a154 = L.popup({"maxWidth": "100%"});
var html_8029ae7d9ce0493b88d5a01029de5b55 = $(`<div id="html_8029ae7d9ce0493b88d5a01029de5b55" style="width: 100.0%; height: 100.0%;">Private Maternity Home</div>`)[0];
popup_b174cb6e9cfd425f8d02807a8c00a154.setContent(html_8029ae7d9ce0493b88d5a01029de5b55);
marker_2c0291c550a042eb856691c9b7a6eeb9.bindPopup(popup_b174cb6e9cfd425f8d02807a8c00a154)
;
var marker_fec863dad3b04e489ebbb78a781555d6 = L.marker(
[5.90144, -0.14481],
{}
).addTo(map_f97a94294c924771b4615dd30605042d);
var popup_89d8696941cf47ed9499a9dc58623da1 = L.popup({"maxWidth": "100%"});
var html_ece6a09f58b749028512303f77a3ac5c = $(`<div id="html_ece6a09f58b749028512303f77a3ac5c" style="width: 100.0%; height: 100.0%;">School Of Death Mampong</div>`)[0];
popup_89d8696941cf47ed9499a9dc58623da1.setContent(html_ece6a09f58b749028512303f77a3ac5c);
marker_fec863dad3b04e489ebbb78a781555d6.bindPopup(popup_89d8696941cf47ed9499a9dc58623da1)
;
var marker_0f59c2dd845e44ef930f7b1a68f22d8f = L.marker(
[5.91915, -0.13412000000000002],
{}
).addTo(map_f97a94294c924771b4615dd30605042d);
var popup_442d9cdf17524c969d91e22e6057a16d = L.popup({"maxWidth": "100%"});
var html_fc5a58a7d3da407d8560cf256b93ee13 = $(`<div id="html_fc5a58a7d3da407d8560cf256b93ee13" style="width: 100.0%; height: 100.0%;">Reprocare RCH</div>`)[0];
popup_442d9cdf17524c969d91e22e6057a16d.setContent(html_fc5a58a7d3da407d8560cf256b93ee13);
marker_0f59c2dd845e44ef930f7b1a68f22d8f.bindPopup(popup_442d9cdf17524c969d91e22e6057a16d)
;
var marker_906cbab859c946e7b4581219f7a8430f = L.marker(
[5.92163, -0.13319],
{}
).addTo(map_f97a94294c924771b4615dd30605042d);
var popup_22d66a86bc6140bfa5882be2455c6fbd = L.popup({"maxWidth": "100%"});
var html_9db3025daee14342969cc3f35ce38a47 = $(`<div id="html_9db3025daee14342969cc3f35ce38a47" style="width: 100.0%; height: 100.0%;">Tetteh Quarshie Memorial Hospital</div>`)[0];
popup_22d66a86bc6140bfa5882be2455c6fbd.setContent(html_9db3025daee14342969cc3f35ce38a47);
marker_906cbab859c946e7b4581219f7a8430f.bindPopup(popup_22d66a86bc6140bfa5882be2455c6fbd)
;
var marker_84830d350c0347938ad9ab66b0499cbe = L.marker(
[5.91795, -0.1343],
{}
).addTo(map_f97a94294c924771b4615dd30605042d);
var popup_703556d599d74e01b5196305b2c0db71 = L.popup({"maxWidth": "100%"});
var html_97da5b77f99745eda003985ac160845b = $(`<div id="html_97da5b77f99745eda003985ac160845b" style="width: 100.0%; height: 100.0%;">Plant Medicine (CSRPM)</div>`)[0];
popup_703556d599d74e01b5196305b2c0db71.setContent(html_97da5b77f99745eda003985ac160845b);
marker_84830d350c0347938ad9ab66b0499cbe.bindPopup(popup_703556d599d74e01b5196305b2c0db71)
;
var marker_c0674e73d43041279ed79ee6ab795f8e = L.marker(
[5.95274, -0.2851],
{}
).addTo(map_f97a94294c924771b4615dd30605042d);
var popup_eae363817fbe4f0f9288567acfef7826 = L.popup({"maxWidth": "100%"});
var html_e0a99f1bb61d4042a23a9073b0c27df8 = $(`<div id="html_e0a99f1bb61d4042a23a9073b0c27df8" style="width: 100.0%; height: 100.0%;">Mangoase RCH</div>`)[0];
popup_eae363817fbe4f0f9288567acfef7826.setContent(html_e0a99f1bb61d4042a23a9073b0c27df8);
marker_c0674e73d43041279ed79ee6ab795f8e.bindPopup(popup_eae363817fbe4f0f9288567acfef7826)
;
var marker_e7d1776243514965ad08bab885bfae51 = L.marker(
[5.9524, -0.28489000000000003],
{}
).addTo(map_f97a94294c924771b4615dd30605042d);
var popup_27cc525d7fa141ef89e6eff4443e6e0f = L.popup({"maxWidth": "100%"});
var html_952b43559b2f4973a4a3184ddf9537a0 = $(`<div id="html_952b43559b2f4973a4a3184ddf9537a0" style="width: 100.0%; height: 100.0%;">Mangoase Health Centre</div>`)[0];
popup_27cc525d7fa141ef89e6eff4443e6e0f.setContent(html_952b43559b2f4973a4a3184ddf9537a0);
marker_e7d1776243514965ad08bab885bfae51.bindPopup(popup_27cc525d7fa141ef89e6eff4443e6e0f)
;
var marker_f0852b3d1fdb44aca00b56da07736f66 = L.marker(
[6.0442599999999995, -0.16591],
{}
).addTo(map_f97a94294c924771b4615dd30605042d);
var popup_4b40b4f17fcf43e583ae31faa2e57ea4 = L.popup({"maxWidth": "100%"});
var html_274b6a41b94b40f290048206dea1f9d6 = $(`<div id="html_274b6a41b94b40f290048206dea1f9d6" style="width: 100.0%; height: 100.0%;">Twum Guaso CHPS</div>`)[0];
popup_4b40b4f17fcf43e583ae31faa2e57ea4.setContent(html_274b6a41b94b40f290048206dea1f9d6);
marker_f0852b3d1fdb44aca00b56da07736f66.bindPopup(popup_4b40b4f17fcf43e583ae31faa2e57ea4)
;
var marker_1a9c6757d50f4d098da01d3e2dae7b61 = L.marker(
[6.1086800000000006, -0.10677],
{}
).addTo(map_f97a94294c924771b4615dd30605042d);
var popup_fef6852078b04306a943c11ecfed4d66 = L.popup({"maxWidth": "100%"});
var html_082d0279d22746aca14d6fc9d06d9d24 = $(`<div id="html_082d0279d22746aca14d6fc9d06d9d24" style="width: 100.0%; height: 100.0%;">Amanfro RCH</div>`)[0];
popup_fef6852078b04306a943c11ecfed4d66.setContent(html_082d0279d22746aca14d6fc9d06d9d24);
marker_1a9c6757d50f4d098da01d3e2dae7b61.bindPopup(popup_fef6852078b04306a943c11ecfed4d66)
;
var marker_b9cc38494561476c9cd96a6d6de6f59c = L.marker(
[6.06602, -0.19906],
{}
).addTo(map_f97a94294c924771b4615dd30605042d);
var popup_b7444dbd2fdc4417be44beb92283ef77 = L.popup({"maxWidth": "100%"});
var html_bae23dddcbc34722b33f65c75523444a = $(`<div id="html_bae23dddcbc34722b33f65c75523444a" style="width: 100.0%; height: 100.0%;">Nanabanyin CHPS</div>`)[0];
popup_b7444dbd2fdc4417be44beb92283ef77.setContent(html_bae23dddcbc34722b33f65c75523444a);
marker_b9cc38494561476c9cd96a6d6de6f59c.bindPopup(popup_b7444dbd2fdc4417be44beb92283ef77)
;
var marker_633a07dccd084c768fc61d9d00bcdf1e = L.marker(
[6.1086599999999995, -0.10572999999999999],
{}
).addTo(map_f97a94294c924771b4615dd30605042d);
var popup_784e7f3ce8f64296916d2a682cab5713 = L.popup({"maxWidth": "100%"});
var html_432bac3a5c3a4085b39329e60ab62515 = $(`<div id="html_432bac3a5c3a4085b39329e60ab62515" style="width: 100.0%; height: 100.0%;">Okrakwadwo Health Centre</div>`)[0];
popup_784e7f3ce8f64296916d2a682cab5713.setContent(html_432bac3a5c3a4085b39329e60ab62515);
marker_633a07dccd084c768fc61d9d00bcdf1e.bindPopup(popup_784e7f3ce8f64296916d2a682cab5713)
;
var marker_281f28c741524b37a9902f9e21772042 = L.marker(
[5.81401, -0.18636],
{}
).addTo(map_f97a94294c924771b4615dd30605042d);
var popup_40fa5c83ef3c4c7782abc257be6993eb = L.popup({"maxWidth": "100%"});
var html_33128f9a368345588395c1a373de2730 = $(`<div id="html_33128f9a368345588395c1a373de2730" style="width: 100.0%; height: 100.0%;">Kitase RCH</div>`)[0];
popup_40fa5c83ef3c4c7782abc257be6993eb.setContent(html_33128f9a368345588395c1a373de2730);
marker_281f28c741524b37a9902f9e21772042.bindPopup(popup_40fa5c83ef3c4c7782abc257be6993eb)
;
var marker_9e1f7ddaba784af783219bc4db4b6086 = L.marker(
[5.78214, -0.2253],
{}
).addTo(map_f97a94294c924771b4615dd30605042d);
var popup_1f73df136119402eaea01a11ae1771df = L.popup({"maxWidth": "100%"});
var html_2f90660dcf2741009515fd1e86a15474 = $(`<div id="html_2f90660dcf2741009515fd1e86a15474" style="width: 100.0%; height: 100.0%;">Brekuso RCH</div>`)[0];
popup_1f73df136119402eaea01a11ae1771df.setContent(html_2f90660dcf2741009515fd1e86a15474);
marker_9e1f7ddaba784af783219bc4db4b6086.bindPopup(popup_1f73df136119402eaea01a11ae1771df)
;
var marker_84162116096541d3873f58376428153b = L.marker(
[5.88058, -0.17076],
{}
).addTo(map_f97a94294c924771b4615dd30605042d);
var popup_e56d8892a27642b183a1ba8100201c1f = L.popup({"maxWidth": "100%"});
var html_594b4414960744fd8c409491a389468f = $(`<div id="html_594b4414960744fd8c409491a389468f" style="width: 100.0%; height: 100.0%;">Kom Clinic</div>`)[0];
popup_e56d8892a27642b183a1ba8100201c1f.setContent(html_594b4414960744fd8c409491a389468f);
marker_84162116096541d3873f58376428153b.bindPopup(popup_e56d8892a27642b183a1ba8100201c1f)
;
var marker_653474d33037435996ad082be6af7ef2 = L.marker(
[5.82287, -0.36002],
{}
).addTo(map_f97a94294c924771b4615dd30605042d);
var popup_032554a607f04b7788753ab376ac1fc4 = L.popup({"maxWidth": "100%"});
var html_ad880fc4b4ed4747af046f1d7c2e312c = $(`<div id="html_ad880fc4b4ed4747af046f1d7c2e312c" style="width: 100.0%; height: 100.0%;">Adoagire Hospital</div>`)[0];
popup_032554a607f04b7788753ab376ac1fc4.setContent(html_ad880fc4b4ed4747af046f1d7c2e312c);
marker_653474d33037435996ad082be6af7ef2.bindPopup(popup_032554a607f04b7788753ab376ac1fc4)
;
var marker_d80d91055aa14cab8a589bdfed320569 = L.marker(
[5.81964, -0.35514],
{}
).addTo(map_f97a94294c924771b4615dd30605042d);
var popup_73ac062e88e04e5e93369a973f6968a7 = L.popup({"maxWidth": "100%"});
var html_ee2660cd6b484f09a532b4ec3be7863c = $(`<div id="html_ee2660cd6b484f09a532b4ec3be7863c" style="width: 100.0%; height: 100.0%;">Newlife Hospital</div>`)[0];
popup_73ac062e88e04e5e93369a973f6968a7.setContent(html_ee2660cd6b484f09a532b4ec3be7863c);
marker_d80d91055aa14cab8a589bdfed320569.bindPopup(popup_73ac062e88e04e5e93369a973f6968a7)
;
var marker_01ddcd3e90254fc7a002de1daffbdccd = L.marker(
[5.81797, -0.2557],
{}
).addTo(map_f97a94294c924771b4615dd30605042d);
var popup_8cbc62712aca47009c45e58086a978ba = L.popup({"maxWidth": "100%"});
var html_f6c8e60248b14c2d967d9206650d38d6 = $(`<div id="html_f6c8e60248b14c2d967d9206650d38d6" style="width: 100.0%; height: 100.0%;">Adoagire Zongo RCH</div>`)[0];
popup_8cbc62712aca47009c45e58086a978ba.setContent(html_f6c8e60248b14c2d967d9206650d38d6);
marker_01ddcd3e90254fc7a002de1daffbdccd.bindPopup(popup_8cbc62712aca47009c45e58086a978ba)
;
var marker_558f3ba0cb6f4a86baa162cc1b4c85b5 = L.marker(
[5.85856, -0.2819],
{}
).addTo(map_f97a94294c924771b4615dd30605042d);
var popup_48a8fe5cb94c4558bc44a3a7c15d9ada = L.popup({"maxWidth": "100%"});
var html_d71fd86450c24127b3aba53a92941c1c = $(`<div id="html_d71fd86450c24127b3aba53a92941c1c" style="width: 100.0%; height: 100.0%;">Obothebire CHPS</div>`)[0];
popup_48a8fe5cb94c4558bc44a3a7c15d9ada.setContent(html_d71fd86450c24127b3aba53a92941c1c);
marker_558f3ba0cb6f4a86baa162cc1b4c85b5.bindPopup(popup_48a8fe5cb94c4558bc44a3a7c15d9ada)
;
var marker_d657f1ad15b0496ba4128592fb0ec128 = L.marker(
[5.8179300000000005, -0.3474],
{}
).addTo(map_f97a94294c924771b4615dd30605042d);
var popup_aaeae36a24f74af1827cd05ec3c09a42 = L.popup({"maxWidth": "100%"});
var html_5d473f4ca4da49ba9e886f0651c7513f = $(`<div id="html_5d473f4ca4da49ba9e886f0651c7513f" style="width: 100.0%; height: 100.0%;">Djankrom RCH</div>`)[0];
popup_aaeae36a24f74af1827cd05ec3c09a42.setContent(html_5d473f4ca4da49ba9e886f0651c7513f);
marker_d657f1ad15b0496ba4128592fb0ec128.bindPopup(popup_aaeae36a24f74af1827cd05ec3c09a42)
;
var marker_65cc9c07044f4cc2a1586fb9d8c7b121 = L.marker(
[5.809740000000001, -0.34121],
{}
).addTo(map_f97a94294c924771b4615dd30605042d);
var popup_ad6a975f6ece4069a999a9a208a5327a = L.popup({"maxWidth": "100%"});
var html_0250486fa830405c94b8bc7f6a69000a = $(`<div id="html_0250486fa830405c94b8bc7f6a69000a" style="width: 100.0%; height: 100.0%;">Emelia Maternity Home</div>`)[0];
popup_ad6a975f6ece4069a999a9a208a5327a.setContent(html_0250486fa830405c94b8bc7f6a69000a);
marker_65cc9c07044f4cc2a1586fb9d8c7b121.bindPopup(popup_ad6a975f6ece4069a999a9a208a5327a)
;
var marker_b34a0548f0004a5ab069bce7a9492ad4 = L.marker(
[5.80684, -0.34604],
{}
).addTo(map_f97a94294c924771b4615dd30605042d);
var popup_a59f9a706b464e4ab588587acdc5fdc4 = L.popup({"maxWidth": "100%"});
var html_2f912dbf75b2451dbc0fb18a873a2445 = $(`<div id="html_2f912dbf75b2451dbc0fb18a873a2445" style="width: 100.0%; height: 100.0%;">Complex Hospital</div>`)[0];
popup_a59f9a706b464e4ab588587acdc5fdc4.setContent(html_2f912dbf75b2451dbc0fb18a873a2445);
marker_b34a0548f0004a5ab069bce7a9492ad4.bindPopup(popup_a59f9a706b464e4ab588587acdc5fdc4)
;
var marker_4e272d7381934addafc08dc14c0bcd1f = L.marker(
[5.81045, -0.33749],
{}
).addTo(map_f97a94294c924771b4615dd30605042d);
var popup_eb505bece3f64ea7b2159ad9632b52c4 = L.popup({"maxWidth": "100%"});
var html_fa2116efdb734b489634578898c2fec9 = $(`<div id="html_fa2116efdb734b489634578898c2fec9" style="width: 100.0%; height: 100.0%;">Nsawam Hospital</div>`)[0];
popup_eb505bece3f64ea7b2159ad9632b52c4.setContent(html_fa2116efdb734b489634578898c2fec9);
marker_4e272d7381934addafc08dc14c0bcd1f.bindPopup(popup_eb505bece3f64ea7b2159ad9632b52c4)
;
var marker_91caaf48b2ca4cac8a67179be1bd0a18 = L.marker(
[5.80655, -0.35200000000000004],
{}
).addTo(map_f97a94294c924771b4615dd30605042d);
var popup_7e974cfd1ed04d9c8dca073dff830bf4 = L.popup({"maxWidth": "100%"});
var html_25593787e8af4fe1ab0c7f98d9adf438 = $(`<div id="html_25593787e8af4fe1ab0c7f98d9adf438" style="width: 100.0%; height: 100.0%;">Nsawam RCH</div>`)[0];
popup_7e974cfd1ed04d9c8dca073dff830bf4.setContent(html_25593787e8af4fe1ab0c7f98d9adf438);
marker_91caaf48b2ca4cac8a67179be1bd0a18.bindPopup(popup_7e974cfd1ed04d9c8dca073dff830bf4)
;
var marker_5cc8c205260744e3989d7b17783ae20e = L.marker(
[5.7851, -0.33708299999999997],
{}
).addTo(map_f97a94294c924771b4615dd30605042d);
var popup_6b620b454a4c493b8e439d95a46b0a84 = L.popup({"maxWidth": "100%"});
var html_76e5f3ab41424b19801095a311c3d6b9 = $(`<div id="html_76e5f3ab41424b19801095a311c3d6b9" style="width: 100.0%; height: 100.0%;">Nsawam Dobre Blue Sky Clinic</div>`)[0];
popup_6b620b454a4c493b8e439d95a46b0a84.setContent(html_76e5f3ab41424b19801095a311c3d6b9);
marker_5cc8c205260744e3989d7b17783ae20e.bindPopup(popup_6b620b454a4c493b8e439d95a46b0a84)
;
var marker_0afc2bc4b5794810ab5ff0938bb39f64 = L.marker(
[5.80195, -0.34631999999999996],
{}
).addTo(map_f97a94294c924771b4615dd30605042d);
var popup_6c77f3fc094d417aa69622da44778f8c = L.popup({"maxWidth": "100%"});
var html_a3e39f4b1e8c4c1c9b0910f7f8b14b5d = $(`<div id="html_a3e39f4b1e8c4c1c9b0910f7f8b14b5d" style="width: 100.0%; height: 100.0%;">Banner Hill Clinic</div>`)[0];
popup_6c77f3fc094d417aa69622da44778f8c.setContent(html_a3e39f4b1e8c4c1c9b0910f7f8b14b5d);
marker_0afc2bc4b5794810ab5ff0938bb39f64.bindPopup(popup_6c77f3fc094d417aa69622da44778f8c)
;
var marker_b817736bf9c8416b9344493b5af7a530 = L.marker(
[5.905683, -0.319083],
{}
).addTo(map_f97a94294c924771b4615dd30605042d);
var popup_17733395ff874e1a97d25c76f747030f = L.popup({"maxWidth": "100%"});
var html_a882d5c9cc9847daa83b8644b9de6953 = $(`<div id="html_a882d5c9cc9847daa83b8644b9de6953" style="width: 100.0%; height: 100.0%;">Pakro Health Centre</div>`)[0];
popup_17733395ff874e1a97d25c76f747030f.setContent(html_a882d5c9cc9847daa83b8644b9de6953);
marker_b817736bf9c8416b9344493b5af7a530.bindPopup(popup_17733395ff874e1a97d25c76f747030f)
;
var marker_467f7ac5de404b65bd7d1372a4667bc7 = L.marker(
[5.818083000000001, -0.359267],
{}
).addTo(map_f97a94294c924771b4615dd30605042d);
var popup_5ff510414e3b42cd84aff045847f9dd9 = L.popup({"maxWidth": "100%"});
var html_f4829bac106a48af8728a0bae2fe724d = $(`<div id="html_f4829bac106a48af8728a0bae2fe724d" style="width: 100.0%; height: 100.0%;">Notre Dame Clinic</div>`)[0];
popup_5ff510414e3b42cd84aff045847f9dd9.setContent(html_f4829bac106a48af8728a0bae2fe724d);
marker_467f7ac5de404b65bd7d1372a4667bc7.bindPopup(popup_5ff510414e3b42cd84aff045847f9dd9)
;
var marker_afa36779c8fd427a8ba90287cfeeebbc = L.marker(
[5.82584, -0.22662],
{}
).addTo(map_f97a94294c924771b4615dd30605042d);
var popup_1e5d1bf989a3420aab1238e59bff318f = L.popup({"maxWidth": "100%"});
var html_11b6f2cf2dbf494f896889cd2504d660 = $(`<div id="html_11b6f2cf2dbf494f896889cd2504d660" style="width: 100.0%; height: 100.0%;">Pokrom RCH</div>`)[0];
popup_1e5d1bf989a3420aab1238e59bff318f.setContent(html_11b6f2cf2dbf494f896889cd2504d660);
marker_afa36779c8fd427a8ba90287cfeeebbc.bindPopup(popup_1e5d1bf989a3420aab1238e59bff318f)
;
var marker_1aa7be47ab80470086c2b76afeb1769a = L.marker(
[6.471933, 0.07365],
{}
).addTo(map_f97a94294c924771b4615dd30605042d);