forked from RodolfoFerro/open-data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCartoDB_dark_matter_puntos.html
1845 lines (1040 loc) · 82.9 KB
/
CartoDB_dark_matter_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_7567bca1b59c4dada78a7bc89df7010b {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
</head>
<body>
<div class="folium-map" id="map_7567bca1b59c4dada78a7bc89df7010b" ></div>
</body>
<script>
var map_7567bca1b59c4dada78a7bc89df7010b = L.map(
"map_7567bca1b59c4dada78a7bc89df7010b",
{
center: [21.1191877, -101.6737528],
crs: L.CRS.EPSG3857,
zoom: 13,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_d9b196a11468437089119682de8831d4 = L.tileLayer(
"https://cartodb-basemaps-{s}.global.ssl.fastly.net/dark_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_7567bca1b59c4dada78a7bc89df7010b);
var circle_marker_cb46809390a44464b3cf9a6279bfc3ba = 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_7567bca1b59c4dada78a7bc89df7010b);
var popup_62a995774dae4d069803585fab58307b = L.popup({"maxWidth": "100%"});
var html_a638b906e5424798aaa159c21e9079db = $(`<div id="html_a638b906e5424798aaa159c21e9079db" style="width: 100.0%; height: 100.0%;">Población beneficiada: 486 personas</div>`)[0];
popup_62a995774dae4d069803585fab58307b.setContent(html_a638b906e5424798aaa159c21e9079db);
circle_marker_cb46809390a44464b3cf9a6279bfc3ba.bindPopup(popup_62a995774dae4d069803585fab58307b)
;
circle_marker_cb46809390a44464b3cf9a6279bfc3ba.bindTooltip(
`<div>
Primaria 5 de mayo
</div>`,
{"sticky": true}
);
var circle_marker_7849231e551c4565ac489517ef736c20 = 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_7567bca1b59c4dada78a7bc89df7010b);
var popup_289dd320e7394a8f83ed7e16551c51b5 = L.popup({"maxWidth": "100%"});
var html_4c343e93fd734b4db59c1375cd5d6957 = $(`<div id="html_4c343e93fd734b4db59c1375cd5d6957" style="width: 100.0%; height: 100.0%;">Población beneficiada: 247 personas</div>`)[0];
popup_289dd320e7394a8f83ed7e16551c51b5.setContent(html_4c343e93fd734b4db59c1375cd5d6957);
circle_marker_7849231e551c4565ac489517ef736c20.bindPopup(popup_289dd320e7394a8f83ed7e16551c51b5)
;
circle_marker_7849231e551c4565ac489517ef736c20.bindTooltip(
`<div>
Primaria Joel Cisneros Lara
</div>`,
{"sticky": true}
);
var circle_marker_b776316b40ac449bb404c37d1853390f = 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_7567bca1b59c4dada78a7bc89df7010b);
var popup_9aeea4b1518b429698874cf93018d1a9 = L.popup({"maxWidth": "100%"});
var html_d3371acaf85a41b3b52154d9b1342735 = $(`<div id="html_d3371acaf85a41b3b52154d9b1342735" style="width: 100.0%; height: 100.0%;">Población beneficiada: 201 personas</div>`)[0];
popup_9aeea4b1518b429698874cf93018d1a9.setContent(html_d3371acaf85a41b3b52154d9b1342735);
circle_marker_b776316b40ac449bb404c37d1853390f.bindPopup(popup_9aeea4b1518b429698874cf93018d1a9)
;
circle_marker_b776316b40ac449bb404c37d1853390f.bindTooltip(
`<div>
Primaria Tierra y Libertad
</div>`,
{"sticky": true}
);
var circle_marker_d8e6e937071944278edc2021924dbeeb = 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_7567bca1b59c4dada78a7bc89df7010b);
var popup_13280cd573814a17ad8b1a80a6934b24 = L.popup({"maxWidth": "100%"});
var html_37e09c39269f4f9189bb26669ab06f43 = $(`<div id="html_37e09c39269f4f9189bb26669ab06f43" style="width: 100.0%; height: 100.0%;">Población beneficiada: 689 personas</div>`)[0];
popup_13280cd573814a17ad8b1a80a6934b24.setContent(html_37e09c39269f4f9189bb26669ab06f43);
circle_marker_d8e6e937071944278edc2021924dbeeb.bindPopup(popup_13280cd573814a17ad8b1a80a6934b24)
;
circle_marker_d8e6e937071944278edc2021924dbeeb.bindTooltip(
`<div>
Primaria Dr Pablo del Rio
</div>`,
{"sticky": true}
);
var circle_marker_f703a6e84e9a4fd3802c84bd1e802f46 = 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_7567bca1b59c4dada78a7bc89df7010b);
var popup_ed536c69a6034a7fa782eddadb053378 = L.popup({"maxWidth": "100%"});
var html_b8872953607f4436819535a7c7b3003f = $(`<div id="html_b8872953607f4436819535a7c7b3003f" style="width: 100.0%; height: 100.0%;">Población beneficiada: 447 personas</div>`)[0];
popup_ed536c69a6034a7fa782eddadb053378.setContent(html_b8872953607f4436819535a7c7b3003f);
circle_marker_f703a6e84e9a4fd3802c84bd1e802f46.bindPopup(popup_ed536c69a6034a7fa782eddadb053378)
;
circle_marker_f703a6e84e9a4fd3802c84bd1e802f46.bindTooltip(
`<div>
Primaria Miguel Hidalgo
</div>`,
{"sticky": true}
);
var circle_marker_788f78829b524a0b84526c9cb358240d = 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_7567bca1b59c4dada78a7bc89df7010b);
var popup_9ec1640f072541398df2f698bf6c08e3 = L.popup({"maxWidth": "100%"});
var html_b47219d7f34747f3abaf85eb6e2f07b4 = $(`<div id="html_b47219d7f34747f3abaf85eb6e2f07b4" style="width: 100.0%; height: 100.0%;">Población beneficiada: 318 personas</div>`)[0];
popup_9ec1640f072541398df2f698bf6c08e3.setContent(html_b47219d7f34747f3abaf85eb6e2f07b4);
circle_marker_788f78829b524a0b84526c9cb358240d.bindPopup(popup_9ec1640f072541398df2f698bf6c08e3)
;
circle_marker_788f78829b524a0b84526c9cb358240d.bindTooltip(
`<div>
Telesecundaria num 581
</div>`,
{"sticky": true}
);
var circle_marker_17660afa14fc432d9bb0fa0d0622bc8d = 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_7567bca1b59c4dada78a7bc89df7010b);
var popup_1048a8163cdb47fd969922dc54c2b105 = L.popup({"maxWidth": "100%"});
var html_8a7829fa5cf049a2bf76a49b9f4365e2 = $(`<div id="html_8a7829fa5cf049a2bf76a49b9f4365e2" style="width: 100.0%; height: 100.0%;">Población beneficiada: 384 personas</div>`)[0];
popup_1048a8163cdb47fd969922dc54c2b105.setContent(html_8a7829fa5cf049a2bf76a49b9f4365e2);
circle_marker_17660afa14fc432d9bb0fa0d0622bc8d.bindPopup(popup_1048a8163cdb47fd969922dc54c2b105)
;
circle_marker_17660afa14fc432d9bb0fa0d0622bc8d.bindTooltip(
`<div>
Primaria Emiliano Zapata
</div>`,
{"sticky": true}
);
var circle_marker_7818d6d3faac4ff49489d345a8cf9b41 = 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_7567bca1b59c4dada78a7bc89df7010b);
var popup_e6092109274245ce824ffe0a43850a52 = L.popup({"maxWidth": "100%"});
var html_0268f569cd90400d87dbc0cc61737bea = $(`<div id="html_0268f569cd90400d87dbc0cc61737bea" style="width: 100.0%; height: 100.0%;">Población beneficiada: 323 personas</div>`)[0];
popup_e6092109274245ce824ffe0a43850a52.setContent(html_0268f569cd90400d87dbc0cc61737bea);
circle_marker_7818d6d3faac4ff49489d345a8cf9b41.bindPopup(popup_e6092109274245ce824ffe0a43850a52)
;
circle_marker_7818d6d3faac4ff49489d345a8cf9b41.bindTooltip(
`<div>
Telesecundaria No 123
</div>`,
{"sticky": true}
);
var circle_marker_e1f2bff9cd6f4d6f8ea8a857f5c72e1e = 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_7567bca1b59c4dada78a7bc89df7010b);
var popup_2e8adb8aece4433e80d994299bde085b = L.popup({"maxWidth": "100%"});
var html_79858d01120a4078a3ad457867b876cc = $(`<div id="html_79858d01120a4078a3ad457867b876cc" style="width: 100.0%; height: 100.0%;">Población beneficiada: 611 personas</div>`)[0];
popup_2e8adb8aece4433e80d994299bde085b.setContent(html_79858d01120a4078a3ad457867b876cc);
circle_marker_e1f2bff9cd6f4d6f8ea8a857f5c72e1e.bindPopup(popup_2e8adb8aece4433e80d994299bde085b)
;
circle_marker_e1f2bff9cd6f4d6f8ea8a857f5c72e1e.bindTooltip(
`<div>
Primaria Albino Garcia
</div>`,
{"sticky": true}
);
var circle_marker_5a36e68e9b994a6dae4654291990fd91 = 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_7567bca1b59c4dada78a7bc89df7010b);
var popup_6bfdd541a4fc422cb624bee8f7c0895f = L.popup({"maxWidth": "100%"});
var html_4682805a0ac9465daa4676c35bfd3aa9 = $(`<div id="html_4682805a0ac9465daa4676c35bfd3aa9" style="width: 100.0%; height: 100.0%;">Población beneficiada: 410 personas</div>`)[0];
popup_6bfdd541a4fc422cb624bee8f7c0895f.setContent(html_4682805a0ac9465daa4676c35bfd3aa9);
circle_marker_5a36e68e9b994a6dae4654291990fd91.bindPopup(popup_6bfdd541a4fc422cb624bee8f7c0895f)
;
circle_marker_5a36e68e9b994a6dae4654291990fd91.bindTooltip(
`<div>
Primaria Insurgentes
</div>`,
{"sticky": true}
);
var circle_marker_3698c76420f9403b9c9ae4a2979a99a2 = 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_7567bca1b59c4dada78a7bc89df7010b);
var popup_177937c7337647a5b18146eb1d7a2954 = L.popup({"maxWidth": "100%"});
var html_7b5f406c89ac4a33ae071c9066f417aa = $(`<div id="html_7b5f406c89ac4a33ae071c9066f417aa" style="width: 100.0%; height: 100.0%;">Población beneficiada: 46 personas</div>`)[0];
popup_177937c7337647a5b18146eb1d7a2954.setContent(html_7b5f406c89ac4a33ae071c9066f417aa);
circle_marker_3698c76420f9403b9c9ae4a2979a99a2.bindPopup(popup_177937c7337647a5b18146eb1d7a2954)
;
circle_marker_3698c76420f9403b9c9ae4a2979a99a2.bindTooltip(
`<div>
Telesecundaria No 1003
</div>`,
{"sticky": true}
);
var circle_marker_332579169d0e466eadd5946ae39f1623 = 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_7567bca1b59c4dada78a7bc89df7010b);
var popup_16db3d623613476ba990b64054382683 = L.popup({"maxWidth": "100%"});
var html_f5f2a06ce0eb4afc8e8472077d7aa425 = $(`<div id="html_f5f2a06ce0eb4afc8e8472077d7aa425" style="width: 100.0%; height: 100.0%;">Población beneficiada: 230 personas</div>`)[0];
popup_16db3d623613476ba990b64054382683.setContent(html_f5f2a06ce0eb4afc8e8472077d7aa425);
circle_marker_332579169d0e466eadd5946ae39f1623.bindPopup(popup_16db3d623613476ba990b64054382683)
;
circle_marker_332579169d0e466eadd5946ae39f1623.bindTooltip(
`<div>
Primaria Benito Juarez
</div>`,
{"sticky": true}
);
var circle_marker_57b8a96b58ac45c79e6e3c0ebaaf1dae = 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_7567bca1b59c4dada78a7bc89df7010b);
var popup_42d08abd9b8c41ad9a6110c61521ff59 = L.popup({"maxWidth": "100%"});
var html_93520868f9c048209b15679c32c81967 = $(`<div id="html_93520868f9c048209b15679c32c81967" style="width: 100.0%; height: 100.0%;">Población beneficiada: 238 personas</div>`)[0];
popup_42d08abd9b8c41ad9a6110c61521ff59.setContent(html_93520868f9c048209b15679c32c81967);
circle_marker_57b8a96b58ac45c79e6e3c0ebaaf1dae.bindPopup(popup_42d08abd9b8c41ad9a6110c61521ff59)
;
circle_marker_57b8a96b58ac45c79e6e3c0ebaaf1dae.bindTooltip(
`<div>
Telesecundaria Num 527
</div>`,
{"sticky": true}
);
var circle_marker_bb8a042a0b8248c8831100e4859afe9e = 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_7567bca1b59c4dada78a7bc89df7010b);
var popup_c6418168879543e18a95ec5d271fb21f = L.popup({"maxWidth": "100%"});
var html_7572d0f268a04116a925e677eac5a4d4 = $(`<div id="html_7572d0f268a04116a925e677eac5a4d4" style="width: 100.0%; height: 100.0%;">Población beneficiada: 292 personas</div>`)[0];
popup_c6418168879543e18a95ec5d271fb21f.setContent(html_7572d0f268a04116a925e677eac5a4d4);
circle_marker_bb8a042a0b8248c8831100e4859afe9e.bindPopup(popup_c6418168879543e18a95ec5d271fb21f)
;
circle_marker_bb8a042a0b8248c8831100e4859afe9e.bindTooltip(
`<div>
Telesecundaria num 528
</div>`,
{"sticky": true}
);
var circle_marker_d5096e9713bf468aa46f46e6ac7a14b9 = 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_7567bca1b59c4dada78a7bc89df7010b);
var popup_dec2bbf1e5d146819f18f97959b7ccec = L.popup({"maxWidth": "100%"});
var html_53afa4f87f5e4caf9d593245ebb54dcf = $(`<div id="html_53afa4f87f5e4caf9d593245ebb54dcf" style="width: 100.0%; height: 100.0%;">Población beneficiada: 136 personas</div>`)[0];
popup_dec2bbf1e5d146819f18f97959b7ccec.setContent(html_53afa4f87f5e4caf9d593245ebb54dcf);
circle_marker_d5096e9713bf468aa46f46e6ac7a14b9.bindPopup(popup_dec2bbf1e5d146819f18f97959b7ccec)
;
circle_marker_d5096e9713bf468aa46f46e6ac7a14b9.bindTooltip(
`<div>
Primaria Melchor Ocampo
</div>`,
{"sticky": true}
);
var circle_marker_41166a9e5fd34042825a247526b07085 = 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_7567bca1b59c4dada78a7bc89df7010b);
var popup_13f62a1e21c547009cfe905c0483f183 = L.popup({"maxWidth": "100%"});
var html_b71d922123744466840e53c4fe2c3263 = $(`<div id="html_b71d922123744466840e53c4fe2c3263" style="width: 100.0%; height: 100.0%;">Población beneficiada: 0 personas</div>`)[0];
popup_13f62a1e21c547009cfe905c0483f183.setContent(html_b71d922123744466840e53c4fe2c3263);
circle_marker_41166a9e5fd34042825a247526b07085.bindPopup(popup_13f62a1e21c547009cfe905c0483f183)
;
circle_marker_41166a9e5fd34042825a247526b07085.bindTooltip(
`<div>
Plaza de la Ciudadania Griselda Alvarez
</div>`,
{"sticky": true}
);
var circle_marker_791110d3d0194bf3bd39aeb4b317bd0b = 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_7567bca1b59c4dada78a7bc89df7010b);
var popup_c00f5fd1def740d68002707a2925b5a3 = L.popup({"maxWidth": "100%"});
var html_a402c94f2bb04995a0791bb3eccfc4b9 = $(`<div id="html_a402c94f2bb04995a0791bb3eccfc4b9" style="width: 100.0%; height: 100.0%;">Población beneficiada: 0 personas</div>`)[0];
popup_c00f5fd1def740d68002707a2925b5a3.setContent(html_a402c94f2bb04995a0791bb3eccfc4b9);
circle_marker_791110d3d0194bf3bd39aeb4b317bd0b.bindPopup(popup_c00f5fd1def740d68002707a2925b5a3)
;
circle_marker_791110d3d0194bf3bd39aeb4b317bd0b.bindTooltip(
`<div>
Plaza de la Ciudadania Efrain Huerta
</div>`,
{"sticky": true}
);
var circle_marker_32cda632099746c1a98b9c85c2171383 = 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_7567bca1b59c4dada78a7bc89df7010b);
var popup_9b9032b1bf49487686e5a4957d502a04 = L.popup({"maxWidth": "100%"});
var html_80f5fc9be9164171931b6aff0ad20216 = $(`<div id="html_80f5fc9be9164171931b6aff0ad20216" style="width: 100.0%; height: 100.0%;">Población beneficiada: 0 personas</div>`)[0];
popup_9b9032b1bf49487686e5a4957d502a04.setContent(html_80f5fc9be9164171931b6aff0ad20216);
circle_marker_32cda632099746c1a98b9c85c2171383.bindPopup(popup_9b9032b1bf49487686e5a4957d502a04)
;
circle_marker_32cda632099746c1a98b9c85c2171383.bindTooltip(
`<div>
Plaza de la Ciudadania Praxedis Guerrero
</div>`,
{"sticky": true}
);
var circle_marker_7eb4494326ff4daabd7b43897527a84f = 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_7567bca1b59c4dada78a7bc89df7010b);
var popup_fd59b5ce4a084bd9aedf5b9b4f27750f = L.popup({"maxWidth": "100%"});
var html_a8744fde206748ca9587b102645c1fea = $(`<div id="html_a8744fde206748ca9587b102645c1fea" style="width: 100.0%; height: 100.0%;">Población beneficiada: 2311 personas</div>`)[0];
popup_fd59b5ce4a084bd9aedf5b9b4f27750f.setContent(html_a8744fde206748ca9587b102645c1fea);
circle_marker_7eb4494326ff4daabd7b43897527a84f.bindPopup(popup_fd59b5ce4a084bd9aedf5b9b4f27750f)
;
circle_marker_7eb4494326ff4daabd7b43897527a84f.bindTooltip(
`<div>
San Francisco de Duran
</div>`,
{"sticky": true}
);
var circle_marker_5b06233deda443eabf6a511902ccbe08 = 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_7567bca1b59c4dada78a7bc89df7010b);
var popup_0e8d188e7e1d42d88dee6dd9050ba982 = L.popup({"maxWidth": "100%"});
var html_24bf8cfe13bf4bc7a113df30c0fd41b6 = $(`<div id="html_24bf8cfe13bf4bc7a113df30c0fd41b6" style="width: 100.0%; height: 100.0%;">Población beneficiada: 2381 personas</div>`)[0];
popup_0e8d188e7e1d42d88dee6dd9050ba982.setContent(html_24bf8cfe13bf4bc7a113df30c0fd41b6);
circle_marker_5b06233deda443eabf6a511902ccbe08.bindPopup(popup_0e8d188e7e1d42d88dee6dd9050ba982)
;
circle_marker_5b06233deda443eabf6a511902ccbe08.bindTooltip(
`<div>
Alfaro
</div>`,
{"sticky": true}
);
var circle_marker_cca5570053484876a15dfe37bf8b7637 = 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_7567bca1b59c4dada78a7bc89df7010b);
var popup_b8d8ea7a5d864fc296fba3bb050ee762 = L.popup({"maxWidth": "100%"});
var html_04fd5425caef482f94976c0b7f12d13b = $(`<div id="html_04fd5425caef482f94976c0b7f12d13b" style="width: 100.0%; height: 100.0%;">Población beneficiada: 54 personas</div>`)[0];
popup_b8d8ea7a5d864fc296fba3bb050ee762.setContent(html_04fd5425caef482f94976c0b7f12d13b);
circle_marker_cca5570053484876a15dfe37bf8b7637.bindPopup(popup_b8d8ea7a5d864fc296fba3bb050ee762)
;
circle_marker_cca5570053484876a15dfe37bf8b7637.bindTooltip(
`<div>
Los Alisos
</div>`,
{"sticky": true}
);
var circle_marker_6223b50c36c34bbdad431c8f2761c6ca = 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_7567bca1b59c4dada78a7bc89df7010b);
var popup_32272e676fe846bfb0e5b227e128832e = L.popup({"maxWidth": "100%"});
var html_fa6f5a654c094b69a1837342211a7ed4 = $(`<div id="html_fa6f5a654c094b69a1837342211a7ed4" style="width: 100.0%; height: 100.0%;">Población beneficiada: 147 personas</div>`)[0];
popup_32272e676fe846bfb0e5b227e128832e.setContent(html_fa6f5a654c094b69a1837342211a7ed4);
circle_marker_6223b50c36c34bbdad431c8f2761c6ca.bindPopup(popup_32272e676fe846bfb0e5b227e128832e)
;
circle_marker_6223b50c36c34bbdad431c8f2761c6ca.bindTooltip(
`<div>
Las Canelas
</div>`,
{"sticky": true}
);
var circle_marker_ad27fd6f0886454588be4f60f7b5770a = 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_7567bca1b59c4dada78a7bc89df7010b);
var popup_6173d4e6b7c941f3876b7d01003d5699 = L.popup({"maxWidth": "100%"});
var html_35cc116e1bff4e79bf934561c12c5012 = $(`<div id="html_35cc116e1bff4e79bf934561c12c5012" style="width: 100.0%; height: 100.0%;">Población beneficiada: 137 personas</div>`)[0];
popup_6173d4e6b7c941f3876b7d01003d5699.setContent(html_35cc116e1bff4e79bf934561c12c5012);
circle_marker_ad27fd6f0886454588be4f60f7b5770a.bindPopup(popup_6173d4e6b7c941f3876b7d01003d5699)
;
circle_marker_ad27fd6f0886454588be4f60f7b5770a.bindTooltip(
`<div>
Cuesta Blanca
</div>`,
{"sticky": true}
);
var circle_marker_16f8e98916d2453f8d04281d963e6895 = 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_7567bca1b59c4dada78a7bc89df7010b);
var popup_19b58cb4f4e34e239bed6862bd245bd7 = L.popup({"maxWidth": "100%"});
var html_0f3861ae595446cbad6694c62ba94444 = $(`<div id="html_0f3861ae595446cbad6694c62ba94444" style="width: 100.0%; height: 100.0%;">Población beneficiada: 141 personas</div>`)[0];
popup_19b58cb4f4e34e239bed6862bd245bd7.setContent(html_0f3861ae595446cbad6694c62ba94444);
circle_marker_16f8e98916d2453f8d04281d963e6895.bindPopup(popup_19b58cb4f4e34e239bed6862bd245bd7)
;
circle_marker_16f8e98916d2453f8d04281d963e6895.bindTooltip(
`<div>
El Derramadero
</div>`,
{"sticky": true}
);
var circle_marker_8f6c5aaaf5184125ae33368782468230 = 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_7567bca1b59c4dada78a7bc89df7010b);
var popup_c240161ae2c5469a8a1eb478afeb08f7 = L.popup({"maxWidth": "100%"});
var html_ded599dd823343cfad95c04c1768a421 = $(`<div id="html_ded599dd823343cfad95c04c1768a421" style="width: 100.0%; height: 100.0%;">Población beneficiada: 19 personas</div>`)[0];
popup_c240161ae2c5469a8a1eb478afeb08f7.setContent(html_ded599dd823343cfad95c04c1768a421);
circle_marker_8f6c5aaaf5184125ae33368782468230.bindPopup(popup_c240161ae2c5469a8a1eb478afeb08f7)
;
circle_marker_8f6c5aaaf5184125ae33368782468230.bindTooltip(
`<div>
La Mesa del Obispo
</div>`,
{"sticky": true}
);
var circle_marker_4b19adbc48fe4f1f9b1231207b6a6116 = 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_7567bca1b59c4dada78a7bc89df7010b);
var popup_f26fc030afbc4feb8b19257a545b55a9 = L.popup({"maxWidth": "100%"});
var html_a7fd50e231324413bcecdc81fcb8bf87 = $(`<div id="html_a7fd50e231324413bcecdc81fcb8bf87" style="width: 100.0%; height: 100.0%;">Población beneficiada: 863 personas</div>`)[0];
popup_f26fc030afbc4feb8b19257a545b55a9.setContent(html_a7fd50e231324413bcecdc81fcb8bf87);
circle_marker_4b19adbc48fe4f1f9b1231207b6a6116.bindPopup(popup_f26fc030afbc4feb8b19257a545b55a9)
;
circle_marker_4b19adbc48fe4f1f9b1231207b6a6116.bindTooltip(
`<div>
Nuevo Valle de Moreno
</div>`,
{"sticky": true}
);
var circle_marker_5dfd3dbaaee44627a0c90c87d95d3a11 = 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_7567bca1b59c4dada78a7bc89df7010b);
var popup_4e770a3d6fc54323a8c1da6cbfbad0c1 = L.popup({"maxWidth": "100%"});
var html_a469e2f59f864e7eb848b0513092a6c7 = $(`<div id="html_a469e2f59f864e7eb848b0513092a6c7" style="width: 100.0%; height: 100.0%;">Población beneficiada: 73 personas</div>`)[0];
popup_4e770a3d6fc54323a8c1da6cbfbad0c1.setContent(html_a469e2f59f864e7eb848b0513092a6c7);
circle_marker_5dfd3dbaaee44627a0c90c87d95d3a11.bindPopup(popup_4e770a3d6fc54323a8c1da6cbfbad0c1)
;
circle_marker_5dfd3dbaaee44627a0c90c87d95d3a11.bindTooltip(
`<div>
San Jose de Otates Sur
</div>`,
{"sticky": true}
);
var circle_marker_3594e4d69e3d4f48a011d95105b935be = 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_7567bca1b59c4dada78a7bc89df7010b);
var popup_907442f2c9c54b1ebd0f06c338f566bb = L.popup({"maxWidth": "100%"});
var html_7e729eea893246769ab0f6179aa51d4b = $(`<div id="html_7e729eea893246769ab0f6179aa51d4b" style="width: 100.0%; height: 100.0%;">Población beneficiada: 47 personas</div>`)[0];
popup_907442f2c9c54b1ebd0f06c338f566bb.setContent(html_7e729eea893246769ab0f6179aa51d4b);
circle_marker_3594e4d69e3d4f48a011d95105b935be.bindPopup(popup_907442f2c9c54b1ebd0f06c338f566bb)
;
circle_marker_3594e4d69e3d4f48a011d95105b935be.bindTooltip(
`<div>
San Jose de Otates Norte
</div>`,
{"sticky": true}
);
var circle_marker_7deef191e5cf4ef4aeefdcac3c81fb7e = 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_7567bca1b59c4dada78a7bc89df7010b);
var popup_31a5d8b0b9134d64881dad14f2814a51 = L.popup({"maxWidth": "100%"});
var html_121a561915df4c7e9b906d058539c392 = $(`<div id="html_121a561915df4c7e9b906d058539c392" style="width: 100.0%; height: 100.0%;">Población beneficiada: 137 personas</div>`)[0];
popup_31a5d8b0b9134d64881dad14f2814a51.setContent(html_121a561915df4c7e9b906d058539c392);
circle_marker_7deef191e5cf4ef4aeefdcac3c81fb7e.bindPopup(popup_31a5d8b0b9134d64881dad14f2814a51)
;
circle_marker_7deef191e5cf4ef4aeefdcac3c81fb7e.bindTooltip(
`<div>
San Jose de los Romeros
</div>`,
{"sticky": true}
);
var circle_marker_5f055aecfa2e42889c11a041a110f0e4 = 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_7567bca1b59c4dada78a7bc89df7010b);
var popup_fc9e35d648fe45c9b83239fe063a750e = L.popup({"maxWidth": "100%"});
var html_4ecee56e4fb64ce1879fd31f995fc428 = $(`<div id="html_4ecee56e4fb64ce1879fd31f995fc428" style="width: 100.0%; height: 100.0%;">Población beneficiada: 101 personas</div>`)[0];
popup_fc9e35d648fe45c9b83239fe063a750e.setContent(html_4ecee56e4fb64ce1879fd31f995fc428);
circle_marker_5f055aecfa2e42889c11a041a110f0e4.bindPopup(popup_fc9e35d648fe45c9b83239fe063a750e)
;
circle_marker_5f055aecfa2e42889c11a041a110f0e4.bindTooltip(
`<div>
Sauz Seco
</div>`,
{"sticky": true}
);
var circle_marker_bd848809ec1d44e08a29004dd764f858 = 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_7567bca1b59c4dada78a7bc89df7010b);
var popup_ac4af3a588f44ee4a6dbefeb99b247a5 = L.popup({"maxWidth": "100%"});
var html_9207d8b44f8c48a59decdd67bd2c56e6 = $(`<div id="html_9207d8b44f8c48a59decdd67bd2c56e6" style="width: 100.0%; height: 100.0%;">Población beneficiada: 47 personas</div>`)[0];
popup_ac4af3a588f44ee4a6dbefeb99b247a5.setContent(html_9207d8b44f8c48a59decdd67bd2c56e6);
circle_marker_bd848809ec1d44e08a29004dd764f858.bindPopup(popup_ac4af3a588f44ee4a6dbefeb99b247a5)
;
circle_marker_bd848809ec1d44e08a29004dd764f858.bindTooltip(
`<div>
San Rafael Cerro Verde
</div>`,
{"sticky": true}
);
var circle_marker_f5b57a571bee4b539eedeb1bb9740535 = 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_7567bca1b59c4dada78a7bc89df7010b);
var popup_168c6ce9937f449f9ed35c96ce19c10e = L.popup({"maxWidth": "100%"});
var html_34ab5f62c9254cecb337e6220e1ca12f = $(`<div id="html_34ab5f62c9254cecb337e6220e1ca12f" style="width: 100.0%; height: 100.0%;">Población beneficiada: 974 personas</div>`)[0];
popup_168c6ce9937f449f9ed35c96ce19c10e.setContent(html_34ab5f62c9254cecb337e6220e1ca12f);
circle_marker_f5b57a571bee4b539eedeb1bb9740535.bindPopup(popup_168c6ce9937f449f9ed35c96ce19c10e)
;
circle_marker_f5b57a571bee4b539eedeb1bb9740535.bindTooltip(
`<div>
Vaquerias
</div>`,
{"sticky": true}
);
var circle_marker_ae6a4f1aadbf44af8ffb96c67a03e46f = 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_7567bca1b59c4dada78a7bc89df7010b);
var popup_69316b2d40e24b3cbc043bc9274b1de3 = L.popup({"maxWidth": "100%"});
var html_724ba0b897924be09b824e8457747ad4 = $(`<div id="html_724ba0b897924be09b824e8457747ad4" style="width: 100.0%; height: 100.0%;">Población beneficiada: 810 personas</div>`)[0];
popup_69316b2d40e24b3cbc043bc9274b1de3.setContent(html_724ba0b897924be09b824e8457747ad4);
circle_marker_ae6a4f1aadbf44af8ffb96c67a03e46f.bindPopup(popup_69316b2d40e24b3cbc043bc9274b1de3)
;
circle_marker_ae6a4f1aadbf44af8ffb96c67a03e46f.bindTooltip(
`<div>
Albarradones
</div>`,
{"sticky": true}
);
var circle_marker_f00eac51318640e4b405cf2c3703f97a = 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_7567bca1b59c4dada78a7bc89df7010b);
var popup_0f7f6f9bb32f46fba5150518fdb38277 = L.popup({"maxWidth": "100%"});
var html_8c6291d33c1449aa838bbc59b20d0192 = $(`<div id="html_8c6291d33c1449aa838bbc59b20d0192" style="width: 100.0%; height: 100.0%;">Población beneficiada: 86 personas</div>`)[0];
popup_0f7f6f9bb32f46fba5150518fdb38277.setContent(html_8c6291d33c1449aa838bbc59b20d0192);
circle_marker_f00eac51318640e4b405cf2c3703f97a.bindPopup(popup_0f7f6f9bb32f46fba5150518fdb38277)
;
circle_marker_f00eac51318640e4b405cf2c3703f97a.bindTooltip(
`<div>
Benito de Juarez
</div>`,
{"sticky": true}
);
var circle_marker_13eab8503acd432782210ce6894746bb = 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_7567bca1b59c4dada78a7bc89df7010b);
var popup_ec2274cd72d74e1c9cc5a3f87d244d0e = L.popup({"maxWidth": "100%"});
var html_9151e78c975141c987af60d3823ec75b = $(`<div id="html_9151e78c975141c987af60d3823ec75b" style="width: 100.0%; height: 100.0%;">Población beneficiada: 6261 personas</div>`)[0];
popup_ec2274cd72d74e1c9cc5a3f87d244d0e.setContent(html_9151e78c975141c987af60d3823ec75b);
circle_marker_13eab8503acd432782210ce6894746bb.bindPopup(popup_ec2274cd72d74e1c9cc5a3f87d244d0e)
;