forked from RodolfoFerro/open-data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Stamen_Toner_puntos.html
1845 lines (1040 loc) · 82.9 KB
/
Stamen_Toner_puntos.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/[email protected]/dist/leaflet.js"></script>
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css"/>
<link rel="stylesheet" href="https://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_5383478406f546b7aa7329de692efe05 {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
</head>
<body>
<div class="folium-map" id="map_5383478406f546b7aa7329de692efe05" ></div>
</body>
<script>
var map_5383478406f546b7aa7329de692efe05 = L.map(
"map_5383478406f546b7aa7329de692efe05",
{
center: [21.1191877, -101.6737528],
crs: L.CRS.EPSG3857,
zoom: 13,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_f65b6591005c4b25ac7e3cb99e104fc8 = L.tileLayer(
"https://stamen-tiles-{s}.a.ssl.fastly.net/toner/{z}/{x}/{y}.png",
{"attribution": "Map tiles by \u003ca href=\"http://stamen.com\"\u003eStamen Design\u003c/a\u003e, under \u003ca href=\"http://creativecommons.org/licenses/by/3.0\"\u003eCC BY 3.0\u003c/a\u003e. 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_5383478406f546b7aa7329de692efe05);
var circle_marker_19d89854dc7e4afe9ab9c05dd91d31fd = L.circleMarker(
[21.1179868, -101.6070693],
{"bubblingMouseEvents": true, "color": "#3186cc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4, "stroke": true, "weight": 3}
).addTo(map_5383478406f546b7aa7329de692efe05);
var popup_9c2784525fa143e684a69ecd62a36559 = L.popup({"maxWidth": "100%"});
var html_6ba030501d8846c782d533eefdb0050d = $(`<div id="html_6ba030501d8846c782d533eefdb0050d" style="width: 100.0%; height: 100.0%;">Población beneficiada: 486 personas</div>`)[0];
popup_9c2784525fa143e684a69ecd62a36559.setContent(html_6ba030501d8846c782d533eefdb0050d);
circle_marker_19d89854dc7e4afe9ab9c05dd91d31fd.bindPopup(popup_9c2784525fa143e684a69ecd62a36559)
;
circle_marker_19d89854dc7e4afe9ab9c05dd91d31fd.bindTooltip(
`<div>
Primaria 5 de mayo
</div>`,
{"sticky": true}
);
var circle_marker_154ac6ae9d804be8a822ddf22ff8fc4b = L.circleMarker(
[21.1672738, -101.7583752],
{"bubblingMouseEvents": true, "color": "#3186cc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_5383478406f546b7aa7329de692efe05);
var popup_7be59fe87e7b4949b8186e45c1c97284 = L.popup({"maxWidth": "100%"});
var html_bdf5cb46d48b4bb3bdb77aa61ef978c4 = $(`<div id="html_bdf5cb46d48b4bb3bdb77aa61ef978c4" style="width: 100.0%; height: 100.0%;">Población beneficiada: 247 personas</div>`)[0];
popup_7be59fe87e7b4949b8186e45c1c97284.setContent(html_bdf5cb46d48b4bb3bdb77aa61ef978c4);
circle_marker_154ac6ae9d804be8a822ddf22ff8fc4b.bindPopup(popup_7be59fe87e7b4949b8186e45c1c97284)
;
circle_marker_154ac6ae9d804be8a822ddf22ff8fc4b.bindTooltip(
`<div>
Primaria Joel Cisneros Lara
</div>`,
{"sticky": true}
);
var circle_marker_5d67becd04cc4afcb9fa929d9ff545d8 = L.circleMarker(
[21.1545128, -101.618882],
{"bubblingMouseEvents": true, "color": "#3186cc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_5383478406f546b7aa7329de692efe05);
var popup_fbaf3b55596142799678395ca15af5ed = L.popup({"maxWidth": "100%"});
var html_eb164ef7c8d740b19321c9e5cf928666 = $(`<div id="html_eb164ef7c8d740b19321c9e5cf928666" style="width: 100.0%; height: 100.0%;">Población beneficiada: 201 personas</div>`)[0];
popup_fbaf3b55596142799678395ca15af5ed.setContent(html_eb164ef7c8d740b19321c9e5cf928666);
circle_marker_5d67becd04cc4afcb9fa929d9ff545d8.bindPopup(popup_fbaf3b55596142799678395ca15af5ed)
;
circle_marker_5d67becd04cc4afcb9fa929d9ff545d8.bindTooltip(
`<div>
Primaria Tierra y Libertad
</div>`,
{"sticky": true}
);
var circle_marker_9052cba9b8924b53a01b0fcf12cb699e = L.circleMarker(
[21.1664617, -101.7652038],
{"bubblingMouseEvents": true, "color": "#3186cc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 6, "stroke": true, "weight": 3}
).addTo(map_5383478406f546b7aa7329de692efe05);
var popup_3c21433d1cde4c6994a52e2ddc2980af = L.popup({"maxWidth": "100%"});
var html_b0009ff9e61d4a29825eb350e83f2b6a = $(`<div id="html_b0009ff9e61d4a29825eb350e83f2b6a" style="width: 100.0%; height: 100.0%;">Población beneficiada: 689 personas</div>`)[0];
popup_3c21433d1cde4c6994a52e2ddc2980af.setContent(html_b0009ff9e61d4a29825eb350e83f2b6a);
circle_marker_9052cba9b8924b53a01b0fcf12cb699e.bindPopup(popup_3c21433d1cde4c6994a52e2ddc2980af)
;
circle_marker_9052cba9b8924b53a01b0fcf12cb699e.bindTooltip(
`<div>
Primaria Dr Pablo del Rio
</div>`,
{"sticky": true}
);
var circle_marker_a5ab406bc8ec46f39092e7e0f05b7103 = L.circleMarker(
[21.0853331, -101.6203514],
{"bubblingMouseEvents": true, "color": "#3186cc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4, "stroke": true, "weight": 3}
).addTo(map_5383478406f546b7aa7329de692efe05);
var popup_3963aa592b09499db18c9f6e54cb040b = L.popup({"maxWidth": "100%"});
var html_17cb076fdff643628178eba11332691d = $(`<div id="html_17cb076fdff643628178eba11332691d" style="width: 100.0%; height: 100.0%;">Población beneficiada: 447 personas</div>`)[0];
popup_3963aa592b09499db18c9f6e54cb040b.setContent(html_17cb076fdff643628178eba11332691d);
circle_marker_a5ab406bc8ec46f39092e7e0f05b7103.bindPopup(popup_3963aa592b09499db18c9f6e54cb040b)
;
circle_marker_a5ab406bc8ec46f39092e7e0f05b7103.bindTooltip(
`<div>
Primaria Miguel Hidalgo
</div>`,
{"sticky": true}
);
var circle_marker_8c21d857e7934acb83b62a595484b4a1 = L.circleMarker(
[21.1872946, -101.65217],
{"bubblingMouseEvents": true, "color": "#3186cc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5383478406f546b7aa7329de692efe05);
var popup_2a022e76138447d18e4d7f6f06ec85f3 = L.popup({"maxWidth": "100%"});
var html_ff9a266c0eac4d40a281ca70fb094e58 = $(`<div id="html_ff9a266c0eac4d40a281ca70fb094e58" style="width: 100.0%; height: 100.0%;">Población beneficiada: 318 personas</div>`)[0];
popup_2a022e76138447d18e4d7f6f06ec85f3.setContent(html_ff9a266c0eac4d40a281ca70fb094e58);
circle_marker_8c21d857e7934acb83b62a595484b4a1.bindPopup(popup_2a022e76138447d18e4d7f6f06ec85f3)
;
circle_marker_8c21d857e7934acb83b62a595484b4a1.bindTooltip(
`<div>
Telesecundaria num 581
</div>`,
{"sticky": true}
);
var circle_marker_5c27391bb73e4801a12868634fbdda6e = L.circleMarker(
[21.0242972, -101.5412377],
{"bubblingMouseEvents": true, "color": "#3186cc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5383478406f546b7aa7329de692efe05);
var popup_190efc71e50e496cb5d6a9e429dccda3 = L.popup({"maxWidth": "100%"});
var html_f0ab4a6bebce4b7ea05ff6b6f347061c = $(`<div id="html_f0ab4a6bebce4b7ea05ff6b6f347061c" style="width: 100.0%; height: 100.0%;">Población beneficiada: 384 personas</div>`)[0];
popup_190efc71e50e496cb5d6a9e429dccda3.setContent(html_f0ab4a6bebce4b7ea05ff6b6f347061c);
circle_marker_5c27391bb73e4801a12868634fbdda6e.bindPopup(popup_190efc71e50e496cb5d6a9e429dccda3)
;
circle_marker_5c27391bb73e4801a12868634fbdda6e.bindTooltip(
`<div>
Primaria Emiliano Zapata
</div>`,
{"sticky": true}
);
var circle_marker_3b2689704f514eef9424c80273fb404a = L.circleMarker(
[21.1708415, -101.6776342],
{"bubblingMouseEvents": true, "color": "#3186cc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5383478406f546b7aa7329de692efe05);
var popup_546c643e1b57477487306eca4953f4d0 = L.popup({"maxWidth": "100%"});
var html_81a9989705204567961470c1fb69f4fb = $(`<div id="html_81a9989705204567961470c1fb69f4fb" style="width: 100.0%; height: 100.0%;">Población beneficiada: 323 personas</div>`)[0];
popup_546c643e1b57477487306eca4953f4d0.setContent(html_81a9989705204567961470c1fb69f4fb);
circle_marker_3b2689704f514eef9424c80273fb404a.bindPopup(popup_546c643e1b57477487306eca4953f4d0)
;
circle_marker_3b2689704f514eef9424c80273fb404a.bindTooltip(
`<div>
Telesecundaria No 123
</div>`,
{"sticky": true}
);
var circle_marker_25b51bfbd2e542549a417944585f0bcc = L.circleMarker(
[21.1342671, -101.6005155],
{"bubblingMouseEvents": true, "color": "#3186cc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 6, "stroke": true, "weight": 3}
).addTo(map_5383478406f546b7aa7329de692efe05);
var popup_6aa0814d89d04f8cbda26a0b684baa7e = L.popup({"maxWidth": "100%"});
var html_3f2368e1fd434055bfe9284ed8866759 = $(`<div id="html_3f2368e1fd434055bfe9284ed8866759" style="width: 100.0%; height: 100.0%;">Población beneficiada: 611 personas</div>`)[0];
popup_6aa0814d89d04f8cbda26a0b684baa7e.setContent(html_3f2368e1fd434055bfe9284ed8866759);
circle_marker_25b51bfbd2e542549a417944585f0bcc.bindPopup(popup_6aa0814d89d04f8cbda26a0b684baa7e)
;
circle_marker_25b51bfbd2e542549a417944585f0bcc.bindTooltip(
`<div>
Primaria Albino Garcia
</div>`,
{"sticky": true}
);
var circle_marker_3f3b67df08464b3fa4219737fbeedbba = L.circleMarker(
[21.1483992, -101.6083774],
{"bubblingMouseEvents": true, "color": "#3186cc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4, "stroke": true, "weight": 3}
).addTo(map_5383478406f546b7aa7329de692efe05);
var popup_e8b9a3d5113b4287b1b90f453b0a2182 = L.popup({"maxWidth": "100%"});
var html_b7c9ef515b5f425db48994f1a4412e93 = $(`<div id="html_b7c9ef515b5f425db48994f1a4412e93" style="width: 100.0%; height: 100.0%;">Población beneficiada: 410 personas</div>`)[0];
popup_e8b9a3d5113b4287b1b90f453b0a2182.setContent(html_b7c9ef515b5f425db48994f1a4412e93);
circle_marker_3f3b67df08464b3fa4219737fbeedbba.bindPopup(popup_e8b9a3d5113b4287b1b90f453b0a2182)
;
circle_marker_3f3b67df08464b3fa4219737fbeedbba.bindTooltip(
`<div>
Primaria Insurgentes
</div>`,
{"sticky": true}
);
var circle_marker_3bee7c8081df4263ae19c8b138356bae = L.circleMarker(
[21.2194781, -101.6500964],
{"bubblingMouseEvents": true, "color": "#3186cc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "stroke": true, "weight": 3}
).addTo(map_5383478406f546b7aa7329de692efe05);
var popup_9a11b5465efb4c9797a94fe2875009fe = L.popup({"maxWidth": "100%"});
var html_338006c00cb847378e42de29c59ce8ce = $(`<div id="html_338006c00cb847378e42de29c59ce8ce" style="width: 100.0%; height: 100.0%;">Población beneficiada: 46 personas</div>`)[0];
popup_9a11b5465efb4c9797a94fe2875009fe.setContent(html_338006c00cb847378e42de29c59ce8ce);
circle_marker_3bee7c8081df4263ae19c8b138356bae.bindPopup(popup_9a11b5465efb4c9797a94fe2875009fe)
;
circle_marker_3bee7c8081df4263ae19c8b138356bae.bindTooltip(
`<div>
Telesecundaria No 1003
</div>`,
{"sticky": true}
);
var circle_marker_e57b01b1831d469eb95043168fb3e9d7 = L.circleMarker(
[21.1865838, -101.7743925],
{"bubblingMouseEvents": true, "color": "#3186cc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_5383478406f546b7aa7329de692efe05);
var popup_f6a71bcdefec4a4497261c6a060da2c4 = L.popup({"maxWidth": "100%"});
var html_2dd9ae91dd7241d0ba82f60a1fb7f522 = $(`<div id="html_2dd9ae91dd7241d0ba82f60a1fb7f522" style="width: 100.0%; height: 100.0%;">Población beneficiada: 230 personas</div>`)[0];
popup_f6a71bcdefec4a4497261c6a060da2c4.setContent(html_2dd9ae91dd7241d0ba82f60a1fb7f522);
circle_marker_e57b01b1831d469eb95043168fb3e9d7.bindPopup(popup_f6a71bcdefec4a4497261c6a060da2c4)
;
circle_marker_e57b01b1831d469eb95043168fb3e9d7.bindTooltip(
`<div>
Primaria Benito Juarez
</div>`,
{"sticky": true}
);
var circle_marker_a5446ab263ad4ce7923f56d6d8e5409a = L.circleMarker(
[21.0659537, -101.6749664],
{"bubblingMouseEvents": true, "color": "#3186cc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_5383478406f546b7aa7329de692efe05);
var popup_820f76b0a0b043e18c92528f801b8ca5 = L.popup({"maxWidth": "100%"});
var html_bdea76438ec8422ca2e5e3055bb00baa = $(`<div id="html_bdea76438ec8422ca2e5e3055bb00baa" style="width: 100.0%; height: 100.0%;">Población beneficiada: 238 personas</div>`)[0];
popup_820f76b0a0b043e18c92528f801b8ca5.setContent(html_bdea76438ec8422ca2e5e3055bb00baa);
circle_marker_a5446ab263ad4ce7923f56d6d8e5409a.bindPopup(popup_820f76b0a0b043e18c92528f801b8ca5)
;
circle_marker_a5446ab263ad4ce7923f56d6d8e5409a.bindTooltip(
`<div>
Telesecundaria Num 527
</div>`,
{"sticky": true}
);
var circle_marker_6df993e59f884623abce2fb672f13818 = L.circleMarker(
[21.0335226, -101.7117219],
{"bubblingMouseEvents": true, "color": "#3186cc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_5383478406f546b7aa7329de692efe05);
var popup_27cf0a35f700493ca967e10842f44c17 = L.popup({"maxWidth": "100%"});
var html_415db3156b284b35a273453d5c01c919 = $(`<div id="html_415db3156b284b35a273453d5c01c919" style="width: 100.0%; height: 100.0%;">Población beneficiada: 292 personas</div>`)[0];
popup_27cf0a35f700493ca967e10842f44c17.setContent(html_415db3156b284b35a273453d5c01c919);
circle_marker_6df993e59f884623abce2fb672f13818.bindPopup(popup_27cf0a35f700493ca967e10842f44c17)
;
circle_marker_6df993e59f884623abce2fb672f13818.bindTooltip(
`<div>
Telesecundaria num 528
</div>`,
{"sticky": true}
);
var circle_marker_e8f4ddb5f37c47f8b81d32822485d905 = L.circleMarker(
[21.0656266, -101.7634213],
{"bubblingMouseEvents": true, "color": "#3186cc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_5383478406f546b7aa7329de692efe05);
var popup_04e5738d22d641ef9f26e1c29976344f = L.popup({"maxWidth": "100%"});
var html_1d40d0fdf36b4fb4a445c062115349eb = $(`<div id="html_1d40d0fdf36b4fb4a445c062115349eb" style="width: 100.0%; height: 100.0%;">Población beneficiada: 136 personas</div>`)[0];
popup_04e5738d22d641ef9f26e1c29976344f.setContent(html_1d40d0fdf36b4fb4a445c062115349eb);
circle_marker_e8f4ddb5f37c47f8b81d32822485d905.bindPopup(popup_04e5738d22d641ef9f26e1c29976344f)
;
circle_marker_e8f4ddb5f37c47f8b81d32822485d905.bindTooltip(
`<div>
Primaria Melchor Ocampo
</div>`,
{"sticky": true}
);
var circle_marker_6acacb57cd054c3ba5735f3c17db6348 = L.circleMarker(
[21.1393885, -101.6514],
{"bubblingMouseEvents": true, "color": "#3186cc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "stroke": true, "weight": 3}
).addTo(map_5383478406f546b7aa7329de692efe05);
var popup_912555a8aa1f49b5aa8ed6b99e8584e7 = L.popup({"maxWidth": "100%"});
var html_e649a404ab034a5e96857114a5c7568a = $(`<div id="html_e649a404ab034a5e96857114a5c7568a" style="width: 100.0%; height: 100.0%;">Población beneficiada: 0 personas</div>`)[0];
popup_912555a8aa1f49b5aa8ed6b99e8584e7.setContent(html_e649a404ab034a5e96857114a5c7568a);
circle_marker_6acacb57cd054c3ba5735f3c17db6348.bindPopup(popup_912555a8aa1f49b5aa8ed6b99e8584e7)
;
circle_marker_6acacb57cd054c3ba5735f3c17db6348.bindTooltip(
`<div>
Plaza de la Ciudadania Griselda Alvarez
</div>`,
{"sticky": true}
);
var circle_marker_4380cf3f0497420692070ea7bc04dc88 = L.circleMarker(
[21.140619, -101.7566187],
{"bubblingMouseEvents": true, "color": "#3186cc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "stroke": true, "weight": 3}
).addTo(map_5383478406f546b7aa7329de692efe05);
var popup_6582ef8ba7754fd388c3aaf24412ab6c = L.popup({"maxWidth": "100%"});
var html_d38fcf4d66cc461db131b3332239a60f = $(`<div id="html_d38fcf4d66cc461db131b3332239a60f" style="width: 100.0%; height: 100.0%;">Población beneficiada: 0 personas</div>`)[0];
popup_6582ef8ba7754fd388c3aaf24412ab6c.setContent(html_d38fcf4d66cc461db131b3332239a60f);
circle_marker_4380cf3f0497420692070ea7bc04dc88.bindPopup(popup_6582ef8ba7754fd388c3aaf24412ab6c)
;
circle_marker_4380cf3f0497420692070ea7bc04dc88.bindTooltip(
`<div>
Plaza de la Ciudadania Efrain Huerta
</div>`,
{"sticky": true}
);
var circle_marker_72bb8ce214e844e1af639d3b88996de9 = L.circleMarker(
[21.09342, -101.7521077],
{"bubblingMouseEvents": true, "color": "#3186cc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "stroke": true, "weight": 3}
).addTo(map_5383478406f546b7aa7329de692efe05);
var popup_d084af1a5eba4d5888e9c574b06216ea = L.popup({"maxWidth": "100%"});
var html_8f75e0e11983410f985b0a607dee740f = $(`<div id="html_8f75e0e11983410f985b0a607dee740f" style="width: 100.0%; height: 100.0%;">Población beneficiada: 0 personas</div>`)[0];
popup_d084af1a5eba4d5888e9c574b06216ea.setContent(html_8f75e0e11983410f985b0a607dee740f);
circle_marker_72bb8ce214e844e1af639d3b88996de9.bindPopup(popup_d084af1a5eba4d5888e9c574b06216ea)
;
circle_marker_72bb8ce214e844e1af639d3b88996de9.bindTooltip(
`<div>
Plaza de la Ciudadania Praxedis Guerrero
</div>`,
{"sticky": true}
);
var circle_marker_b4c21274c78f4e1897b512e6a4ae150c = L.circleMarker(
[21.0047765, -101.6234388],
{"bubblingMouseEvents": true, "color": "#3186cc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 23, "stroke": true, "weight": 3}
).addTo(map_5383478406f546b7aa7329de692efe05);
var popup_7d32930f522447f0bb80cba9c2820ae7 = L.popup({"maxWidth": "100%"});
var html_a989cd4356e54c89bd5b9372a4e3242a = $(`<div id="html_a989cd4356e54c89bd5b9372a4e3242a" style="width: 100.0%; height: 100.0%;">Población beneficiada: 2311 personas</div>`)[0];
popup_7d32930f522447f0bb80cba9c2820ae7.setContent(html_a989cd4356e54c89bd5b9372a4e3242a);
circle_marker_b4c21274c78f4e1897b512e6a4ae150c.bindPopup(popup_7d32930f522447f0bb80cba9c2820ae7)
;
circle_marker_b4c21274c78f4e1897b512e6a4ae150c.bindTooltip(
`<div>
San Francisco de Duran
</div>`,
{"sticky": true}
);
var circle_marker_174a06a9c7df4137b70dae7dae0f70a6 = L.circleMarker(
[21.1479609, -101.6121765],
{"bubblingMouseEvents": true, "color": "#3186cc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 23, "stroke": true, "weight": 3}
).addTo(map_5383478406f546b7aa7329de692efe05);
var popup_7655aa1bc81449ebbf669187bd28d191 = L.popup({"maxWidth": "100%"});
var html_609d1cd131ba4ed5aaf6ab98bceb7e38 = $(`<div id="html_609d1cd131ba4ed5aaf6ab98bceb7e38" style="width: 100.0%; height: 100.0%;">Población beneficiada: 2381 personas</div>`)[0];
popup_7655aa1bc81449ebbf669187bd28d191.setContent(html_609d1cd131ba4ed5aaf6ab98bceb7e38);
circle_marker_174a06a9c7df4137b70dae7dae0f70a6.bindPopup(popup_7655aa1bc81449ebbf669187bd28d191)
;
circle_marker_174a06a9c7df4137b70dae7dae0f70a6.bindTooltip(
`<div>
Alfaro
</div>`,
{"sticky": true}
);
var circle_marker_d93f7461508e410290424e75d471d7d4 = L.circleMarker(
[21.1343948, -101.6485637],
{"bubblingMouseEvents": true, "color": "#3186cc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "stroke": true, "weight": 3}
).addTo(map_5383478406f546b7aa7329de692efe05);
var popup_929e57aa9eff426f97fb0d45dfabba37 = L.popup({"maxWidth": "100%"});
var html_9794baeb13a346d787a1f4369631bf5b = $(`<div id="html_9794baeb13a346d787a1f4369631bf5b" style="width: 100.0%; height: 100.0%;">Población beneficiada: 54 personas</div>`)[0];
popup_929e57aa9eff426f97fb0d45dfabba37.setContent(html_9794baeb13a346d787a1f4369631bf5b);
circle_marker_d93f7461508e410290424e75d471d7d4.bindPopup(popup_929e57aa9eff426f97fb0d45dfabba37)
;
circle_marker_d93f7461508e410290424e75d471d7d4.bindTooltip(
`<div>
Los Alisos
</div>`,
{"sticky": true}
);
var circle_marker_422fbce0d0fa458da762e0cf4ba57704 = L.circleMarker(
[21.2189082, -101.4665325],
{"bubblingMouseEvents": true, "color": "#3186cc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_5383478406f546b7aa7329de692efe05);
var popup_592e0ed4f95a4d5c8c9998e88f4ba578 = L.popup({"maxWidth": "100%"});
var html_ab33d71a7f974e58b2b4039a2b06b32f = $(`<div id="html_ab33d71a7f974e58b2b4039a2b06b32f" style="width: 100.0%; height: 100.0%;">Población beneficiada: 147 personas</div>`)[0];
popup_592e0ed4f95a4d5c8c9998e88f4ba578.setContent(html_ab33d71a7f974e58b2b4039a2b06b32f);
circle_marker_422fbce0d0fa458da762e0cf4ba57704.bindPopup(popup_592e0ed4f95a4d5c8c9998e88f4ba578)
;
circle_marker_422fbce0d0fa458da762e0cf4ba57704.bindTooltip(
`<div>
Las Canelas
</div>`,
{"sticky": true}
);
var circle_marker_30c61ef2592b46aab8b9854a8cb6309a = L.circleMarker(
[21.105861, -101.49116],
{"bubblingMouseEvents": true, "color": "#3186cc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_5383478406f546b7aa7329de692efe05);
var popup_809b656f1945471d82f493cd8430b959 = L.popup({"maxWidth": "100%"});
var html_d634804f84db4ff2bab162b51b901a97 = $(`<div id="html_d634804f84db4ff2bab162b51b901a97" style="width: 100.0%; height: 100.0%;">Población beneficiada: 137 personas</div>`)[0];
popup_809b656f1945471d82f493cd8430b959.setContent(html_d634804f84db4ff2bab162b51b901a97);
circle_marker_30c61ef2592b46aab8b9854a8cb6309a.bindPopup(popup_809b656f1945471d82f493cd8430b959)
;
circle_marker_30c61ef2592b46aab8b9854a8cb6309a.bindTooltip(
`<div>
Cuesta Blanca
</div>`,
{"sticky": true}
);
var circle_marker_979e90514e7743c69cb42559f9e23ade = L.circleMarker(
[21.16708, -101.416859],
{"bubblingMouseEvents": true, "color": "#3186cc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_5383478406f546b7aa7329de692efe05);
var popup_d4c45d465a974fe985ee3bc92f3bb139 = L.popup({"maxWidth": "100%"});
var html_19651d348c084f1cb414cb0c5ae31938 = $(`<div id="html_19651d348c084f1cb414cb0c5ae31938" style="width: 100.0%; height: 100.0%;">Población beneficiada: 141 personas</div>`)[0];
popup_d4c45d465a974fe985ee3bc92f3bb139.setContent(html_19651d348c084f1cb414cb0c5ae31938);
circle_marker_979e90514e7743c69cb42559f9e23ade.bindPopup(popup_d4c45d465a974fe985ee3bc92f3bb139)
;
circle_marker_979e90514e7743c69cb42559f9e23ade.bindTooltip(
`<div>
El Derramadero
</div>`,
{"sticky": true}
);
var circle_marker_ac240295b58140ec8983f56599ee5d74 = L.circleMarker(
[21.14766, -101.43512],
{"bubblingMouseEvents": true, "color": "#3186cc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "stroke": true, "weight": 3}
).addTo(map_5383478406f546b7aa7329de692efe05);
var popup_fe4eb9dae431446ab973230b10036ff1 = L.popup({"maxWidth": "100%"});
var html_6e12619d7f79454a98aa001e53927d33 = $(`<div id="html_6e12619d7f79454a98aa001e53927d33" style="width: 100.0%; height: 100.0%;">Población beneficiada: 19 personas</div>`)[0];
popup_fe4eb9dae431446ab973230b10036ff1.setContent(html_6e12619d7f79454a98aa001e53927d33);
circle_marker_ac240295b58140ec8983f56599ee5d74.bindPopup(popup_fe4eb9dae431446ab973230b10036ff1)
;
circle_marker_ac240295b58140ec8983f56599ee5d74.bindTooltip(
`<div>
La Mesa del Obispo
</div>`,
{"sticky": true}
);
var circle_marker_c46d0ef46984411da731fd059e5513da = L.circleMarker(
[21.2107683, -101.42503],
{"bubblingMouseEvents": true, "color": "#3186cc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 3}
).addTo(map_5383478406f546b7aa7329de692efe05);
var popup_9c1b6a79297346bf8fe5d3935b329020 = L.popup({"maxWidth": "100%"});
var html_d21789c5bacd47c3b3bfffcf4f37a8c6 = $(`<div id="html_d21789c5bacd47c3b3bfffcf4f37a8c6" style="width: 100.0%; height: 100.0%;">Población beneficiada: 863 personas</div>`)[0];
popup_9c1b6a79297346bf8fe5d3935b329020.setContent(html_d21789c5bacd47c3b3bfffcf4f37a8c6);
circle_marker_c46d0ef46984411da731fd059e5513da.bindPopup(popup_9c1b6a79297346bf8fe5d3935b329020)
;
circle_marker_c46d0ef46984411da731fd059e5513da.bindTooltip(
`<div>
Nuevo Valle de Moreno
</div>`,
{"sticky": true}
);
var circle_marker_f593c89793094a16b0e327c9c8943827 = L.circleMarker(
[21.2602499, -101.5787527],
{"bubblingMouseEvents": true, "color": "#3186cc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "stroke": true, "weight": 3}
).addTo(map_5383478406f546b7aa7329de692efe05);
var popup_bfcc8a96856241bea7aa5fb35187acdf = L.popup({"maxWidth": "100%"});
var html_ae1fcc290559493aa26f722f22460d7e = $(`<div id="html_ae1fcc290559493aa26f722f22460d7e" style="width: 100.0%; height: 100.0%;">Población beneficiada: 73 personas</div>`)[0];
popup_bfcc8a96856241bea7aa5fb35187acdf.setContent(html_ae1fcc290559493aa26f722f22460d7e);
circle_marker_f593c89793094a16b0e327c9c8943827.bindPopup(popup_bfcc8a96856241bea7aa5fb35187acdf)
;
circle_marker_f593c89793094a16b0e327c9c8943827.bindTooltip(
`<div>
San Jose de Otates Sur
</div>`,
{"sticky": true}
);
var circle_marker_4c96df46fcd549c884d301807d6e895b = L.circleMarker(
[20.7819321, -101.8042393],
{"bubblingMouseEvents": true, "color": "#3186cc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "stroke": true, "weight": 3}
).addTo(map_5383478406f546b7aa7329de692efe05);
var popup_b757366003a644e7b2324bf735fd4bdf = L.popup({"maxWidth": "100%"});
var html_6ccee51f47e44786afbaebf164e1c2d4 = $(`<div id="html_6ccee51f47e44786afbaebf164e1c2d4" style="width: 100.0%; height: 100.0%;">Población beneficiada: 47 personas</div>`)[0];
popup_b757366003a644e7b2324bf735fd4bdf.setContent(html_6ccee51f47e44786afbaebf164e1c2d4);
circle_marker_4c96df46fcd549c884d301807d6e895b.bindPopup(popup_b757366003a644e7b2324bf735fd4bdf)
;
circle_marker_4c96df46fcd549c884d301807d6e895b.bindTooltip(
`<div>
San Jose de Otates Norte
</div>`,
{"sticky": true}
);
var circle_marker_400e6094829d4c84b536b85953af228d = L.circleMarker(
[21.0371698, -101.4924811],
{"bubblingMouseEvents": true, "color": "#3186cc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_5383478406f546b7aa7329de692efe05);
var popup_d8c2f8f5c96341f4bcbb8ef5e1cc2001 = L.popup({"maxWidth": "100%"});
var html_0a61ffef047e43a0bf124439846d335d = $(`<div id="html_0a61ffef047e43a0bf124439846d335d" style="width: 100.0%; height: 100.0%;">Población beneficiada: 137 personas</div>`)[0];
popup_d8c2f8f5c96341f4bcbb8ef5e1cc2001.setContent(html_0a61ffef047e43a0bf124439846d335d);
circle_marker_400e6094829d4c84b536b85953af228d.bindPopup(popup_d8c2f8f5c96341f4bcbb8ef5e1cc2001)
;
circle_marker_400e6094829d4c84b536b85953af228d.bindTooltip(
`<div>
San Jose de los Romeros
</div>`,
{"sticky": true}
);
var circle_marker_9b68e0cc65c849d5bc7b3d96aebe06d8 = L.circleMarker(
[21.1683518, -101.5455623],
{"bubblingMouseEvents": true, "color": "#3186cc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_5383478406f546b7aa7329de692efe05);
var popup_64ffcda534344c2a86c67d95af712a24 = L.popup({"maxWidth": "100%"});
var html_d96bc8037985433faf6df5d95f18df7f = $(`<div id="html_d96bc8037985433faf6df5d95f18df7f" style="width: 100.0%; height: 100.0%;">Población beneficiada: 101 personas</div>`)[0];
popup_64ffcda534344c2a86c67d95af712a24.setContent(html_d96bc8037985433faf6df5d95f18df7f);
circle_marker_9b68e0cc65c849d5bc7b3d96aebe06d8.bindPopup(popup_64ffcda534344c2a86c67d95af712a24)
;
circle_marker_9b68e0cc65c849d5bc7b3d96aebe06d8.bindTooltip(
`<div>
Sauz Seco
</div>`,
{"sticky": true}
);
var circle_marker_ac77e5700d3f4db1803d1a156fb73d55 = L.circleMarker(
[21.16274, -101.46],
{"bubblingMouseEvents": true, "color": "#3186cc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "stroke": true, "weight": 3}
).addTo(map_5383478406f546b7aa7329de692efe05);
var popup_1e7486b788ed45a488d05c4276d6e60c = L.popup({"maxWidth": "100%"});
var html_fc3bd434482149338ddbe36461fc779e = $(`<div id="html_fc3bd434482149338ddbe36461fc779e" style="width: 100.0%; height: 100.0%;">Población beneficiada: 47 personas</div>`)[0];
popup_1e7486b788ed45a488d05c4276d6e60c.setContent(html_fc3bd434482149338ddbe36461fc779e);
circle_marker_ac77e5700d3f4db1803d1a156fb73d55.bindPopup(popup_1e7486b788ed45a488d05c4276d6e60c)
;
circle_marker_ac77e5700d3f4db1803d1a156fb73d55.bindTooltip(
`<div>
San Rafael Cerro Verde
</div>`,
{"sticky": true}
);
var circle_marker_c8c3b54121af4b63a3c278792bd00d0d = L.circleMarker(
[21.1553558, -101.4017567],
{"bubblingMouseEvents": true, "color": "#3186cc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 3}
).addTo(map_5383478406f546b7aa7329de692efe05);
var popup_42f19f1638284df0aa9f305330330da3 = L.popup({"maxWidth": "100%"});
var html_89baec8b58844e98b5dbe77a3a149332 = $(`<div id="html_89baec8b58844e98b5dbe77a3a149332" style="width: 100.0%; height: 100.0%;">Población beneficiada: 974 personas</div>`)[0];
popup_42f19f1638284df0aa9f305330330da3.setContent(html_89baec8b58844e98b5dbe77a3a149332);
circle_marker_c8c3b54121af4b63a3c278792bd00d0d.bindPopup(popup_42f19f1638284df0aa9f305330330da3)
;
circle_marker_c8c3b54121af4b63a3c278792bd00d0d.bindTooltip(
`<div>
Vaquerias
</div>`,
{"sticky": true}
);
var circle_marker_3a9f3adc19964185b95207c37d1e56ff = L.circleMarker(
[21.0402778, -101.5036111],
{"bubblingMouseEvents": true, "color": "#3186cc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 3}
).addTo(map_5383478406f546b7aa7329de692efe05);
var popup_de49bee64fe049eb9090a332d3b932a3 = L.popup({"maxWidth": "100%"});
var html_60307c4183b045e6874029acf76afd79 = $(`<div id="html_60307c4183b045e6874029acf76afd79" style="width: 100.0%; height: 100.0%;">Población beneficiada: 810 personas</div>`)[0];
popup_de49bee64fe049eb9090a332d3b932a3.setContent(html_60307c4183b045e6874029acf76afd79);
circle_marker_3a9f3adc19964185b95207c37d1e56ff.bindPopup(popup_de49bee64fe049eb9090a332d3b932a3)
;
circle_marker_3a9f3adc19964185b95207c37d1e56ff.bindTooltip(
`<div>
Albarradones
</div>`,
{"sticky": true}
);
var circle_marker_198c0256f89143fc89ac67a6c2c46a5a = L.circleMarker(
[21.0775, -101.5802778],
{"bubblingMouseEvents": true, "color": "#3186cc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "stroke": true, "weight": 3}
).addTo(map_5383478406f546b7aa7329de692efe05);
var popup_75faf899e89f46acb151afd050736731 = L.popup({"maxWidth": "100%"});
var html_f35943458e004470a6dac1d6c44f6c99 = $(`<div id="html_f35943458e004470a6dac1d6c44f6c99" style="width: 100.0%; height: 100.0%;">Población beneficiada: 86 personas</div>`)[0];
popup_75faf899e89f46acb151afd050736731.setContent(html_f35943458e004470a6dac1d6c44f6c99);
circle_marker_198c0256f89143fc89ac67a6c2c46a5a.bindPopup(popup_75faf899e89f46acb151afd050736731)
;
circle_marker_198c0256f89143fc89ac67a6c2c46a5a.bindTooltip(
`<div>
Benito de Juarez
</div>`,
{"sticky": true}
);
var circle_marker_99d2d87c5da7437aad28053d67d8a474 = L.circleMarker(
[21.08565, -101.5222028],
{"bubblingMouseEvents": true, "color": "#3186cc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 62, "stroke": true, "weight": 3}
).addTo(map_5383478406f546b7aa7329de692efe05);
var popup_dcfa3b33f08b4a9c8afd5528b3cdf7a3 = L.popup({"maxWidth": "100%"});
var html_c608a1b6acd84c408bd1d68dfc595a16 = $(`<div id="html_c608a1b6acd84c408bd1d68dfc595a16" style="width: 100.0%; height: 100.0%;">Población beneficiada: 6261 personas</div>`)[0];
popup_dcfa3b33f08b4a9c8afd5528b3cdf7a3.setContent(html_c608a1b6acd84c408bd1d68dfc595a16);
circle_marker_99d2d87c5da7437aad28053d67d8a474.bindPopup(popup_dcfa3b33f08b4a9c8afd5528b3cdf7a3)
;