forked from RodolfoFerro/open-data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CardtoDB_positron_puntos.html
1845 lines (1040 loc) · 82.9 KB
/
CardtoDB_positron_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_188f19cd7d3946a9900f55c1101346f9 {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
</head>
<body>
<div class="folium-map" id="map_188f19cd7d3946a9900f55c1101346f9" ></div>
</body>
<script>
var map_188f19cd7d3946a9900f55c1101346f9 = L.map(
"map_188f19cd7d3946a9900f55c1101346f9",
{
center: [21.1191877, -101.6737528],
crs: L.CRS.EPSG3857,
zoom: 13,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_bf3af9d7e5b34cd7a3a640b8ef31ce90 = L.tileLayer(
"https://cartodb-basemaps-{s}.global.ssl.fastly.net/light_all/{z}/{x}/{y}.png",
{"attribution": "\u0026copy; \u003ca href=\"http://www.openstreetmap.org/copyright\"\u003eOpenStreetMap\u003c/a\u003e contributors \u0026copy; \u003ca href=\"http://cartodb.com/attributions\"\u003eCartoDB\u003c/a\u003e, CartoDB \u003ca href =\"http://cartodb.com/attributions\"\u003eattributions\u003c/a\u003e", "detectRetina": false, "maxNativeZoom": 18, "maxZoom": 18, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abc", "tms": false}
).addTo(map_188f19cd7d3946a9900f55c1101346f9);
var circle_marker_d77c62e70fdf4800928537d14ad0cd85 = 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_188f19cd7d3946a9900f55c1101346f9);
var popup_8e51d2d444b14623809f019ecf6a9e2f = L.popup({"maxWidth": "100%"});
var html_9e637327aaed4c4697c4c9e7c1691364 = $(`<div id="html_9e637327aaed4c4697c4c9e7c1691364" style="width: 100.0%; height: 100.0%;">Población beneficiada: 486 personas</div>`)[0];
popup_8e51d2d444b14623809f019ecf6a9e2f.setContent(html_9e637327aaed4c4697c4c9e7c1691364);
circle_marker_d77c62e70fdf4800928537d14ad0cd85.bindPopup(popup_8e51d2d444b14623809f019ecf6a9e2f)
;
circle_marker_d77c62e70fdf4800928537d14ad0cd85.bindTooltip(
`<div>
Primaria 5 de mayo
</div>`,
{"sticky": true}
);
var circle_marker_1c06356f36ac490c8f7c38e0e6824dbe = 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_188f19cd7d3946a9900f55c1101346f9);
var popup_872aeaeab64d4f1eb6cebc53987a24c5 = L.popup({"maxWidth": "100%"});
var html_b644c9812f8c434ba33b021a3c20134a = $(`<div id="html_b644c9812f8c434ba33b021a3c20134a" style="width: 100.0%; height: 100.0%;">Población beneficiada: 247 personas</div>`)[0];
popup_872aeaeab64d4f1eb6cebc53987a24c5.setContent(html_b644c9812f8c434ba33b021a3c20134a);
circle_marker_1c06356f36ac490c8f7c38e0e6824dbe.bindPopup(popup_872aeaeab64d4f1eb6cebc53987a24c5)
;
circle_marker_1c06356f36ac490c8f7c38e0e6824dbe.bindTooltip(
`<div>
Primaria Joel Cisneros Lara
</div>`,
{"sticky": true}
);
var circle_marker_67740646999e4566b126e2a3b517cc7f = 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_188f19cd7d3946a9900f55c1101346f9);
var popup_4c42ea7fa98a44289927cb299070b289 = L.popup({"maxWidth": "100%"});
var html_8afeba15577646cca8ed6ce4f9e276bb = $(`<div id="html_8afeba15577646cca8ed6ce4f9e276bb" style="width: 100.0%; height: 100.0%;">Población beneficiada: 201 personas</div>`)[0];
popup_4c42ea7fa98a44289927cb299070b289.setContent(html_8afeba15577646cca8ed6ce4f9e276bb);
circle_marker_67740646999e4566b126e2a3b517cc7f.bindPopup(popup_4c42ea7fa98a44289927cb299070b289)
;
circle_marker_67740646999e4566b126e2a3b517cc7f.bindTooltip(
`<div>
Primaria Tierra y Libertad
</div>`,
{"sticky": true}
);
var circle_marker_6f8b7319669444279e8067f55a6271e0 = 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_188f19cd7d3946a9900f55c1101346f9);
var popup_a5fd7f45210c47beb4c0ba9bdca7c03d = L.popup({"maxWidth": "100%"});
var html_bf429851df544d4d9e4956dcaef8af4c = $(`<div id="html_bf429851df544d4d9e4956dcaef8af4c" style="width: 100.0%; height: 100.0%;">Población beneficiada: 689 personas</div>`)[0];
popup_a5fd7f45210c47beb4c0ba9bdca7c03d.setContent(html_bf429851df544d4d9e4956dcaef8af4c);
circle_marker_6f8b7319669444279e8067f55a6271e0.bindPopup(popup_a5fd7f45210c47beb4c0ba9bdca7c03d)
;
circle_marker_6f8b7319669444279e8067f55a6271e0.bindTooltip(
`<div>
Primaria Dr Pablo del Rio
</div>`,
{"sticky": true}
);
var circle_marker_84cd2c340e344984b0af0f0c39d56695 = 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_188f19cd7d3946a9900f55c1101346f9);
var popup_6956bdb2372846999a86a56cab8dfbf4 = L.popup({"maxWidth": "100%"});
var html_d9840b08b4324265af365ed4317942c9 = $(`<div id="html_d9840b08b4324265af365ed4317942c9" style="width: 100.0%; height: 100.0%;">Población beneficiada: 447 personas</div>`)[0];
popup_6956bdb2372846999a86a56cab8dfbf4.setContent(html_d9840b08b4324265af365ed4317942c9);
circle_marker_84cd2c340e344984b0af0f0c39d56695.bindPopup(popup_6956bdb2372846999a86a56cab8dfbf4)
;
circle_marker_84cd2c340e344984b0af0f0c39d56695.bindTooltip(
`<div>
Primaria Miguel Hidalgo
</div>`,
{"sticky": true}
);
var circle_marker_986005ead00a4979bb8df1c14560094b = 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_188f19cd7d3946a9900f55c1101346f9);
var popup_c73394791cdf4a848587a550a157ccba = L.popup({"maxWidth": "100%"});
var html_c23888210a764b76b88c76dee4b34d44 = $(`<div id="html_c23888210a764b76b88c76dee4b34d44" style="width: 100.0%; height: 100.0%;">Población beneficiada: 318 personas</div>`)[0];
popup_c73394791cdf4a848587a550a157ccba.setContent(html_c23888210a764b76b88c76dee4b34d44);
circle_marker_986005ead00a4979bb8df1c14560094b.bindPopup(popup_c73394791cdf4a848587a550a157ccba)
;
circle_marker_986005ead00a4979bb8df1c14560094b.bindTooltip(
`<div>
Telesecundaria num 581
</div>`,
{"sticky": true}
);
var circle_marker_683e3af12ee545d8b123da8b24b09403 = 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_188f19cd7d3946a9900f55c1101346f9);
var popup_0b11bdd1ebd84d0da2efa5555639df54 = L.popup({"maxWidth": "100%"});
var html_46ff8e02a1b54089a00e64cbe3e12f50 = $(`<div id="html_46ff8e02a1b54089a00e64cbe3e12f50" style="width: 100.0%; height: 100.0%;">Población beneficiada: 384 personas</div>`)[0];
popup_0b11bdd1ebd84d0da2efa5555639df54.setContent(html_46ff8e02a1b54089a00e64cbe3e12f50);
circle_marker_683e3af12ee545d8b123da8b24b09403.bindPopup(popup_0b11bdd1ebd84d0da2efa5555639df54)
;
circle_marker_683e3af12ee545d8b123da8b24b09403.bindTooltip(
`<div>
Primaria Emiliano Zapata
</div>`,
{"sticky": true}
);
var circle_marker_f860c64ec71f440293937e30b5d11c0b = 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_188f19cd7d3946a9900f55c1101346f9);
var popup_7ae70484119e4515ad958f40634482a6 = L.popup({"maxWidth": "100%"});
var html_51cf0c0a9b2c4d9fb93aa6caa26af55f = $(`<div id="html_51cf0c0a9b2c4d9fb93aa6caa26af55f" style="width: 100.0%; height: 100.0%;">Población beneficiada: 323 personas</div>`)[0];
popup_7ae70484119e4515ad958f40634482a6.setContent(html_51cf0c0a9b2c4d9fb93aa6caa26af55f);
circle_marker_f860c64ec71f440293937e30b5d11c0b.bindPopup(popup_7ae70484119e4515ad958f40634482a6)
;
circle_marker_f860c64ec71f440293937e30b5d11c0b.bindTooltip(
`<div>
Telesecundaria No 123
</div>`,
{"sticky": true}
);
var circle_marker_dd6764b207024bf8b70a8e65d97430f6 = 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_188f19cd7d3946a9900f55c1101346f9);
var popup_341315edb344470791f0cf01f4a09348 = L.popup({"maxWidth": "100%"});
var html_2cd5acf19cc14ac2aad3df234971183c = $(`<div id="html_2cd5acf19cc14ac2aad3df234971183c" style="width: 100.0%; height: 100.0%;">Población beneficiada: 611 personas</div>`)[0];
popup_341315edb344470791f0cf01f4a09348.setContent(html_2cd5acf19cc14ac2aad3df234971183c);
circle_marker_dd6764b207024bf8b70a8e65d97430f6.bindPopup(popup_341315edb344470791f0cf01f4a09348)
;
circle_marker_dd6764b207024bf8b70a8e65d97430f6.bindTooltip(
`<div>
Primaria Albino Garcia
</div>`,
{"sticky": true}
);
var circle_marker_6f8db807d3cc45a1ad8a7be805da49e2 = 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_188f19cd7d3946a9900f55c1101346f9);
var popup_c2424b9c43ef427ebebc83f3cf583128 = L.popup({"maxWidth": "100%"});
var html_f2141988760b41fb87e7c2506de12818 = $(`<div id="html_f2141988760b41fb87e7c2506de12818" style="width: 100.0%; height: 100.0%;">Población beneficiada: 410 personas</div>`)[0];
popup_c2424b9c43ef427ebebc83f3cf583128.setContent(html_f2141988760b41fb87e7c2506de12818);
circle_marker_6f8db807d3cc45a1ad8a7be805da49e2.bindPopup(popup_c2424b9c43ef427ebebc83f3cf583128)
;
circle_marker_6f8db807d3cc45a1ad8a7be805da49e2.bindTooltip(
`<div>
Primaria Insurgentes
</div>`,
{"sticky": true}
);
var circle_marker_cc46f49a9abf410aa1df1d61cc86907f = 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_188f19cd7d3946a9900f55c1101346f9);
var popup_fcd5b55958db4efa9349f288f966fd48 = L.popup({"maxWidth": "100%"});
var html_52de96c2d8604165a7c60522d7955b6d = $(`<div id="html_52de96c2d8604165a7c60522d7955b6d" style="width: 100.0%; height: 100.0%;">Población beneficiada: 46 personas</div>`)[0];
popup_fcd5b55958db4efa9349f288f966fd48.setContent(html_52de96c2d8604165a7c60522d7955b6d);
circle_marker_cc46f49a9abf410aa1df1d61cc86907f.bindPopup(popup_fcd5b55958db4efa9349f288f966fd48)
;
circle_marker_cc46f49a9abf410aa1df1d61cc86907f.bindTooltip(
`<div>
Telesecundaria No 1003
</div>`,
{"sticky": true}
);
var circle_marker_6772d88a7f654fb68fac78ce388cb917 = 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_188f19cd7d3946a9900f55c1101346f9);
var popup_e8a6233f15644615856bf4a9071bc0bb = L.popup({"maxWidth": "100%"});
var html_7c83b27610a54a79a021a7a1ff3d6286 = $(`<div id="html_7c83b27610a54a79a021a7a1ff3d6286" style="width: 100.0%; height: 100.0%;">Población beneficiada: 230 personas</div>`)[0];
popup_e8a6233f15644615856bf4a9071bc0bb.setContent(html_7c83b27610a54a79a021a7a1ff3d6286);
circle_marker_6772d88a7f654fb68fac78ce388cb917.bindPopup(popup_e8a6233f15644615856bf4a9071bc0bb)
;
circle_marker_6772d88a7f654fb68fac78ce388cb917.bindTooltip(
`<div>
Primaria Benito Juarez
</div>`,
{"sticky": true}
);
var circle_marker_bc4de885e61f49bd9e723f396bf59036 = 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_188f19cd7d3946a9900f55c1101346f9);
var popup_43638247469b4c869da86168762ab05b = L.popup({"maxWidth": "100%"});
var html_04e1b27a075645dcbdbadc348e9c6590 = $(`<div id="html_04e1b27a075645dcbdbadc348e9c6590" style="width: 100.0%; height: 100.0%;">Población beneficiada: 238 personas</div>`)[0];
popup_43638247469b4c869da86168762ab05b.setContent(html_04e1b27a075645dcbdbadc348e9c6590);
circle_marker_bc4de885e61f49bd9e723f396bf59036.bindPopup(popup_43638247469b4c869da86168762ab05b)
;
circle_marker_bc4de885e61f49bd9e723f396bf59036.bindTooltip(
`<div>
Telesecundaria Num 527
</div>`,
{"sticky": true}
);
var circle_marker_c5cfebe7da3845c19fa758e1a7e0f007 = 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_188f19cd7d3946a9900f55c1101346f9);
var popup_461f6a52426648fcae083f8f45fd0f59 = L.popup({"maxWidth": "100%"});
var html_731040129c1548e1bd1cef433c2f5ee1 = $(`<div id="html_731040129c1548e1bd1cef433c2f5ee1" style="width: 100.0%; height: 100.0%;">Población beneficiada: 292 personas</div>`)[0];
popup_461f6a52426648fcae083f8f45fd0f59.setContent(html_731040129c1548e1bd1cef433c2f5ee1);
circle_marker_c5cfebe7da3845c19fa758e1a7e0f007.bindPopup(popup_461f6a52426648fcae083f8f45fd0f59)
;
circle_marker_c5cfebe7da3845c19fa758e1a7e0f007.bindTooltip(
`<div>
Telesecundaria num 528
</div>`,
{"sticky": true}
);
var circle_marker_5ad5648b373f435cb1f6b90cf009714f = 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_188f19cd7d3946a9900f55c1101346f9);
var popup_f19c7da5bc204ad9bcddd5bf9e34d153 = L.popup({"maxWidth": "100%"});
var html_1a70e20ead4545a599dd80e922795d36 = $(`<div id="html_1a70e20ead4545a599dd80e922795d36" style="width: 100.0%; height: 100.0%;">Población beneficiada: 136 personas</div>`)[0];
popup_f19c7da5bc204ad9bcddd5bf9e34d153.setContent(html_1a70e20ead4545a599dd80e922795d36);
circle_marker_5ad5648b373f435cb1f6b90cf009714f.bindPopup(popup_f19c7da5bc204ad9bcddd5bf9e34d153)
;
circle_marker_5ad5648b373f435cb1f6b90cf009714f.bindTooltip(
`<div>
Primaria Melchor Ocampo
</div>`,
{"sticky": true}
);
var circle_marker_75afa72df604446e867bbb88db3e00d4 = 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_188f19cd7d3946a9900f55c1101346f9);
var popup_7bfc83c1937b46b5bafa2b1c865e7d11 = L.popup({"maxWidth": "100%"});
var html_7371402ac6ec40f7baf6a2137ce87a68 = $(`<div id="html_7371402ac6ec40f7baf6a2137ce87a68" style="width: 100.0%; height: 100.0%;">Población beneficiada: 0 personas</div>`)[0];
popup_7bfc83c1937b46b5bafa2b1c865e7d11.setContent(html_7371402ac6ec40f7baf6a2137ce87a68);
circle_marker_75afa72df604446e867bbb88db3e00d4.bindPopup(popup_7bfc83c1937b46b5bafa2b1c865e7d11)
;
circle_marker_75afa72df604446e867bbb88db3e00d4.bindTooltip(
`<div>
Plaza de la Ciudadania Griselda Alvarez
</div>`,
{"sticky": true}
);
var circle_marker_2be007e6b8214a3bac0f78970813f0bc = 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_188f19cd7d3946a9900f55c1101346f9);
var popup_32b5f49b3cd745f2a323e1d022807dc8 = L.popup({"maxWidth": "100%"});
var html_f24fb205729b48b9a1e836deeab034e3 = $(`<div id="html_f24fb205729b48b9a1e836deeab034e3" style="width: 100.0%; height: 100.0%;">Población beneficiada: 0 personas</div>`)[0];
popup_32b5f49b3cd745f2a323e1d022807dc8.setContent(html_f24fb205729b48b9a1e836deeab034e3);
circle_marker_2be007e6b8214a3bac0f78970813f0bc.bindPopup(popup_32b5f49b3cd745f2a323e1d022807dc8)
;
circle_marker_2be007e6b8214a3bac0f78970813f0bc.bindTooltip(
`<div>
Plaza de la Ciudadania Efrain Huerta
</div>`,
{"sticky": true}
);
var circle_marker_84d7cd6cbbed433d95d71fdf3a2eb384 = 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_188f19cd7d3946a9900f55c1101346f9);
var popup_e156f97da588404486fde048cff0eb25 = L.popup({"maxWidth": "100%"});
var html_17979a63b1f042fd93550a6506f05672 = $(`<div id="html_17979a63b1f042fd93550a6506f05672" style="width: 100.0%; height: 100.0%;">Población beneficiada: 0 personas</div>`)[0];
popup_e156f97da588404486fde048cff0eb25.setContent(html_17979a63b1f042fd93550a6506f05672);
circle_marker_84d7cd6cbbed433d95d71fdf3a2eb384.bindPopup(popup_e156f97da588404486fde048cff0eb25)
;
circle_marker_84d7cd6cbbed433d95d71fdf3a2eb384.bindTooltip(
`<div>
Plaza de la Ciudadania Praxedis Guerrero
</div>`,
{"sticky": true}
);
var circle_marker_52cf03858b724f40a1eec8bcea69e88c = 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_188f19cd7d3946a9900f55c1101346f9);
var popup_2ced825a4da247c1975c462d63dd9709 = L.popup({"maxWidth": "100%"});
var html_a26414851f764fab8a9c69046d5160d5 = $(`<div id="html_a26414851f764fab8a9c69046d5160d5" style="width: 100.0%; height: 100.0%;">Población beneficiada: 2311 personas</div>`)[0];
popup_2ced825a4da247c1975c462d63dd9709.setContent(html_a26414851f764fab8a9c69046d5160d5);
circle_marker_52cf03858b724f40a1eec8bcea69e88c.bindPopup(popup_2ced825a4da247c1975c462d63dd9709)
;
circle_marker_52cf03858b724f40a1eec8bcea69e88c.bindTooltip(
`<div>
San Francisco de Duran
</div>`,
{"sticky": true}
);
var circle_marker_ef499a0e97f742bdaa4c9e86fc68ed79 = 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_188f19cd7d3946a9900f55c1101346f9);
var popup_a0e723bcb59a456a9a89118ebfaf075e = L.popup({"maxWidth": "100%"});
var html_0c7e6357e0c94392bf68f6a448b4937b = $(`<div id="html_0c7e6357e0c94392bf68f6a448b4937b" style="width: 100.0%; height: 100.0%;">Población beneficiada: 2381 personas</div>`)[0];
popup_a0e723bcb59a456a9a89118ebfaf075e.setContent(html_0c7e6357e0c94392bf68f6a448b4937b);
circle_marker_ef499a0e97f742bdaa4c9e86fc68ed79.bindPopup(popup_a0e723bcb59a456a9a89118ebfaf075e)
;
circle_marker_ef499a0e97f742bdaa4c9e86fc68ed79.bindTooltip(
`<div>
Alfaro
</div>`,
{"sticky": true}
);
var circle_marker_e31b134aa54d4e018bfb1c7fd40ad5f8 = 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_188f19cd7d3946a9900f55c1101346f9);
var popup_1309e996353b44559a4884aa1070739b = L.popup({"maxWidth": "100%"});
var html_28691258588d4ffc8c675ae8690c39f4 = $(`<div id="html_28691258588d4ffc8c675ae8690c39f4" style="width: 100.0%; height: 100.0%;">Población beneficiada: 54 personas</div>`)[0];
popup_1309e996353b44559a4884aa1070739b.setContent(html_28691258588d4ffc8c675ae8690c39f4);
circle_marker_e31b134aa54d4e018bfb1c7fd40ad5f8.bindPopup(popup_1309e996353b44559a4884aa1070739b)
;
circle_marker_e31b134aa54d4e018bfb1c7fd40ad5f8.bindTooltip(
`<div>
Los Alisos
</div>`,
{"sticky": true}
);
var circle_marker_b9ea72bd4f4340e999cf7b75b256c1c1 = 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_188f19cd7d3946a9900f55c1101346f9);
var popup_417892d16cfb442c820ce2cfea0de985 = L.popup({"maxWidth": "100%"});
var html_7aaf7e005f9849cdbad992e00b489d56 = $(`<div id="html_7aaf7e005f9849cdbad992e00b489d56" style="width: 100.0%; height: 100.0%;">Población beneficiada: 147 personas</div>`)[0];
popup_417892d16cfb442c820ce2cfea0de985.setContent(html_7aaf7e005f9849cdbad992e00b489d56);
circle_marker_b9ea72bd4f4340e999cf7b75b256c1c1.bindPopup(popup_417892d16cfb442c820ce2cfea0de985)
;
circle_marker_b9ea72bd4f4340e999cf7b75b256c1c1.bindTooltip(
`<div>
Las Canelas
</div>`,
{"sticky": true}
);
var circle_marker_10cfd75c185a410ea858b03166ea2ee3 = 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_188f19cd7d3946a9900f55c1101346f9);
var popup_7f3cd0fdf3004990a1c46f017f98817e = L.popup({"maxWidth": "100%"});
var html_4e6549f9b29b4f1caae63ef80ef17b7f = $(`<div id="html_4e6549f9b29b4f1caae63ef80ef17b7f" style="width: 100.0%; height: 100.0%;">Población beneficiada: 137 personas</div>`)[0];
popup_7f3cd0fdf3004990a1c46f017f98817e.setContent(html_4e6549f9b29b4f1caae63ef80ef17b7f);
circle_marker_10cfd75c185a410ea858b03166ea2ee3.bindPopup(popup_7f3cd0fdf3004990a1c46f017f98817e)
;
circle_marker_10cfd75c185a410ea858b03166ea2ee3.bindTooltip(
`<div>
Cuesta Blanca
</div>`,
{"sticky": true}
);
var circle_marker_e5d579c382e64ff6baa76b1ce616e8b0 = 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_188f19cd7d3946a9900f55c1101346f9);
var popup_d3757c45a5dd49beb9561a4b87bb9c87 = L.popup({"maxWidth": "100%"});
var html_3633e40ed8204c8a81df6708e4459093 = $(`<div id="html_3633e40ed8204c8a81df6708e4459093" style="width: 100.0%; height: 100.0%;">Población beneficiada: 141 personas</div>`)[0];
popup_d3757c45a5dd49beb9561a4b87bb9c87.setContent(html_3633e40ed8204c8a81df6708e4459093);
circle_marker_e5d579c382e64ff6baa76b1ce616e8b0.bindPopup(popup_d3757c45a5dd49beb9561a4b87bb9c87)
;
circle_marker_e5d579c382e64ff6baa76b1ce616e8b0.bindTooltip(
`<div>
El Derramadero
</div>`,
{"sticky": true}
);
var circle_marker_8084c2b69f38454bbc0feb5026e92ce8 = 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_188f19cd7d3946a9900f55c1101346f9);
var popup_60a1ce3372294f0096f1bb3c7969451d = L.popup({"maxWidth": "100%"});
var html_d76891bae1f449a5ab3d44674b3d29df = $(`<div id="html_d76891bae1f449a5ab3d44674b3d29df" style="width: 100.0%; height: 100.0%;">Población beneficiada: 19 personas</div>`)[0];
popup_60a1ce3372294f0096f1bb3c7969451d.setContent(html_d76891bae1f449a5ab3d44674b3d29df);
circle_marker_8084c2b69f38454bbc0feb5026e92ce8.bindPopup(popup_60a1ce3372294f0096f1bb3c7969451d)
;
circle_marker_8084c2b69f38454bbc0feb5026e92ce8.bindTooltip(
`<div>
La Mesa del Obispo
</div>`,
{"sticky": true}
);
var circle_marker_033933fa72e2445d82a29ddbd6e3aba5 = 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_188f19cd7d3946a9900f55c1101346f9);
var popup_44285bcf12b1430aac5f0f67f8bf811b = L.popup({"maxWidth": "100%"});
var html_4467cfe2c49748d08f1650a54b771539 = $(`<div id="html_4467cfe2c49748d08f1650a54b771539" style="width: 100.0%; height: 100.0%;">Población beneficiada: 863 personas</div>`)[0];
popup_44285bcf12b1430aac5f0f67f8bf811b.setContent(html_4467cfe2c49748d08f1650a54b771539);
circle_marker_033933fa72e2445d82a29ddbd6e3aba5.bindPopup(popup_44285bcf12b1430aac5f0f67f8bf811b)
;
circle_marker_033933fa72e2445d82a29ddbd6e3aba5.bindTooltip(
`<div>
Nuevo Valle de Moreno
</div>`,
{"sticky": true}
);
var circle_marker_aefd1eb4365e49499d8bdc05d3be5a3a = 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_188f19cd7d3946a9900f55c1101346f9);
var popup_ef5a684c3e8c4e7e8e0d8f1e4d2fa675 = L.popup({"maxWidth": "100%"});
var html_332ab66671264cb394dde261b201a546 = $(`<div id="html_332ab66671264cb394dde261b201a546" style="width: 100.0%; height: 100.0%;">Población beneficiada: 73 personas</div>`)[0];
popup_ef5a684c3e8c4e7e8e0d8f1e4d2fa675.setContent(html_332ab66671264cb394dde261b201a546);
circle_marker_aefd1eb4365e49499d8bdc05d3be5a3a.bindPopup(popup_ef5a684c3e8c4e7e8e0d8f1e4d2fa675)
;
circle_marker_aefd1eb4365e49499d8bdc05d3be5a3a.bindTooltip(
`<div>
San Jose de Otates Sur
</div>`,
{"sticky": true}
);
var circle_marker_e128e4cdcfbb48f79312cd10c5519e5c = 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_188f19cd7d3946a9900f55c1101346f9);
var popup_03b8bb70811f48dbb230cf83cfd7c4d4 = L.popup({"maxWidth": "100%"});
var html_b71aa79249174030bbc65489f5cde894 = $(`<div id="html_b71aa79249174030bbc65489f5cde894" style="width: 100.0%; height: 100.0%;">Población beneficiada: 47 personas</div>`)[0];
popup_03b8bb70811f48dbb230cf83cfd7c4d4.setContent(html_b71aa79249174030bbc65489f5cde894);
circle_marker_e128e4cdcfbb48f79312cd10c5519e5c.bindPopup(popup_03b8bb70811f48dbb230cf83cfd7c4d4)
;
circle_marker_e128e4cdcfbb48f79312cd10c5519e5c.bindTooltip(
`<div>
San Jose de Otates Norte
</div>`,
{"sticky": true}
);
var circle_marker_f4400e9464e04716a5d66fc25bf55391 = 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_188f19cd7d3946a9900f55c1101346f9);
var popup_311ccfb8bbc241e5b4f6613ea34c5c55 = L.popup({"maxWidth": "100%"});
var html_f88164a23d1140af82c079297231207f = $(`<div id="html_f88164a23d1140af82c079297231207f" style="width: 100.0%; height: 100.0%;">Población beneficiada: 137 personas</div>`)[0];
popup_311ccfb8bbc241e5b4f6613ea34c5c55.setContent(html_f88164a23d1140af82c079297231207f);
circle_marker_f4400e9464e04716a5d66fc25bf55391.bindPopup(popup_311ccfb8bbc241e5b4f6613ea34c5c55)
;
circle_marker_f4400e9464e04716a5d66fc25bf55391.bindTooltip(
`<div>
San Jose de los Romeros
</div>`,
{"sticky": true}
);
var circle_marker_d2dd3b5eecc140a0b39e3c0dec37873d = 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_188f19cd7d3946a9900f55c1101346f9);
var popup_9e98aa14f50b49109aa999cec8e1920d = L.popup({"maxWidth": "100%"});
var html_81041ea0fec4420690798030e31d1819 = $(`<div id="html_81041ea0fec4420690798030e31d1819" style="width: 100.0%; height: 100.0%;">Población beneficiada: 101 personas</div>`)[0];
popup_9e98aa14f50b49109aa999cec8e1920d.setContent(html_81041ea0fec4420690798030e31d1819);
circle_marker_d2dd3b5eecc140a0b39e3c0dec37873d.bindPopup(popup_9e98aa14f50b49109aa999cec8e1920d)
;
circle_marker_d2dd3b5eecc140a0b39e3c0dec37873d.bindTooltip(
`<div>
Sauz Seco
</div>`,
{"sticky": true}
);
var circle_marker_be4cc21975ed4f63b9471eb979600dc4 = 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_188f19cd7d3946a9900f55c1101346f9);
var popup_14976ef1496b44f4a3ba3b77d57b1288 = L.popup({"maxWidth": "100%"});
var html_7fbc90b3909d49ea8f136270c8f70e1a = $(`<div id="html_7fbc90b3909d49ea8f136270c8f70e1a" style="width: 100.0%; height: 100.0%;">Población beneficiada: 47 personas</div>`)[0];
popup_14976ef1496b44f4a3ba3b77d57b1288.setContent(html_7fbc90b3909d49ea8f136270c8f70e1a);
circle_marker_be4cc21975ed4f63b9471eb979600dc4.bindPopup(popup_14976ef1496b44f4a3ba3b77d57b1288)
;
circle_marker_be4cc21975ed4f63b9471eb979600dc4.bindTooltip(
`<div>
San Rafael Cerro Verde
</div>`,
{"sticky": true}
);
var circle_marker_b295ffc848064831b96f4657b33b026e = 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_188f19cd7d3946a9900f55c1101346f9);
var popup_c6b6f88eef304e2ba7f1d5105566bc7d = L.popup({"maxWidth": "100%"});
var html_3c24c4c4bc5e496481904c20bcd29c5e = $(`<div id="html_3c24c4c4bc5e496481904c20bcd29c5e" style="width: 100.0%; height: 100.0%;">Población beneficiada: 974 personas</div>`)[0];
popup_c6b6f88eef304e2ba7f1d5105566bc7d.setContent(html_3c24c4c4bc5e496481904c20bcd29c5e);
circle_marker_b295ffc848064831b96f4657b33b026e.bindPopup(popup_c6b6f88eef304e2ba7f1d5105566bc7d)
;
circle_marker_b295ffc848064831b96f4657b33b026e.bindTooltip(
`<div>
Vaquerias
</div>`,
{"sticky": true}
);
var circle_marker_6ab67a718a3b435e878842f8a932451c = 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_188f19cd7d3946a9900f55c1101346f9);
var popup_bccf8c983fc34abbb56310447d01ce95 = L.popup({"maxWidth": "100%"});
var html_ba5f8765fe4e4a57a20420cfe1d9aa75 = $(`<div id="html_ba5f8765fe4e4a57a20420cfe1d9aa75" style="width: 100.0%; height: 100.0%;">Población beneficiada: 810 personas</div>`)[0];
popup_bccf8c983fc34abbb56310447d01ce95.setContent(html_ba5f8765fe4e4a57a20420cfe1d9aa75);
circle_marker_6ab67a718a3b435e878842f8a932451c.bindPopup(popup_bccf8c983fc34abbb56310447d01ce95)
;
circle_marker_6ab67a718a3b435e878842f8a932451c.bindTooltip(
`<div>
Albarradones
</div>`,
{"sticky": true}
);
var circle_marker_9e90f5b056be4519990e20770b1778bb = 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_188f19cd7d3946a9900f55c1101346f9);
var popup_0bbe8dacf767417ebab2cd36ce28fd5d = L.popup({"maxWidth": "100%"});
var html_b7ff763ce08c451f9b918e2334eff330 = $(`<div id="html_b7ff763ce08c451f9b918e2334eff330" style="width: 100.0%; height: 100.0%;">Población beneficiada: 86 personas</div>`)[0];
popup_0bbe8dacf767417ebab2cd36ce28fd5d.setContent(html_b7ff763ce08c451f9b918e2334eff330);
circle_marker_9e90f5b056be4519990e20770b1778bb.bindPopup(popup_0bbe8dacf767417ebab2cd36ce28fd5d)
;
circle_marker_9e90f5b056be4519990e20770b1778bb.bindTooltip(
`<div>
Benito de Juarez
</div>`,
{"sticky": true}
);
var circle_marker_9df2b8aaae254182bbc5d1b5cd0ee27d = 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_188f19cd7d3946a9900f55c1101346f9);
var popup_3ae8a1e34f4c4235b90dc08dcd7d2a8e = L.popup({"maxWidth": "100%"});
var html_bfef68b400eb446988f5ed883e4cf9eb = $(`<div id="html_bfef68b400eb446988f5ed883e4cf9eb" style="width: 100.0%; height: 100.0%;">Población beneficiada: 6261 personas</div>`)[0];
popup_3ae8a1e34f4c4235b90dc08dcd7d2a8e.setContent(html_bfef68b400eb446988f5ed883e4cf9eb);
circle_marker_9df2b8aaae254182bbc5d1b5cd0ee27d.bindPopup(popup_3ae8a1e34f4c4235b90dc08dcd7d2a8e)
;