-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVenues_Clusters_Tijuana.html
2770 lines (1937 loc) · 88.3 KB
/
Venues_Clusters_Tijuana.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_PREFER_CANVAS = false; 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://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.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://rawgit.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>
<style> #map_ee06a33d8fda483c8151fc2810ba386d {
position : relative;
width : 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
</head>
<body>
<div class="folium-map" id="map_ee06a33d8fda483c8151fc2810ba386d" ></div>
</body>
<script>
var bounds = null;
var map_ee06a33d8fda483c8151fc2810ba386d = L.map(
'map_ee06a33d8fda483c8151fc2810ba386d',
{center: [32.5149,-117.0382],
zoom: 11,
maxBounds: bounds,
layers: [],
worldCopyJump: false,
crs: L.CRS.EPSG3857
});
var tile_layer_e28cfcfbf97044e6aae61e631da5f6e9 = L.tileLayer(
'https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png',
{
"attribution": null,
"detectRetina": false,
"maxZoom": 18,
"minZoom": 1,
"noWrap": false,
"subdomains": "abc"
}
).addTo(map_ee06a33d8fda483c8151fc2810ba386d);
var circle_marker_d7e5d2813d524e40b76cee1eb5843d6f = L.circleMarker(
[32.532928000000005,-117.0368426],
{
"bubblingMouseEvents": true,
"color": "#8000ff",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#8000ff",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_ee06a33d8fda483c8151fc2810ba386d);
var popup_4ecb65bad58e450fb9cdecdb571e891b = L.popup({maxWidth: '300'});
var html_c68a4a4d2a794f61a6fc2e4f7a412257 = $('<div id="html_c68a4a4d2a794f61a6fc2e4f7a412257" style="width: 100.0%; height: 100.0%;">ZONA CENTRO Cluster 1</div>')[0];
popup_4ecb65bad58e450fb9cdecdb571e891b.setContent(html_c68a4a4d2a794f61a6fc2e4f7a412257);
circle_marker_d7e5d2813d524e40b76cee1eb5843d6f.bindPopup(popup_4ecb65bad58e450fb9cdecdb571e891b);
var circle_marker_de40984fde37440598c9fc3a26170a3c = L.circleMarker(
[32.513355,-116.94546899999999],
{
"bubblingMouseEvents": true,
"color": "#8000ff",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#8000ff",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_ee06a33d8fda483c8151fc2810ba386d);
var popup_dcf37fab9fef4c17ad2bdd9c53fa0694 = L.popup({maxWidth: '300'});
var html_1dc3768acf41466aaec98267532728e8 = $('<div id="html_1dc3768acf41466aaec98267532728e8" style="width: 100.0%; height: 100.0%;">MARIANO MATAMOROS Cluster 1</div>')[0];
popup_dcf37fab9fef4c17ad2bdd9c53fa0694.setContent(html_1dc3768acf41466aaec98267532728e8);
circle_marker_de40984fde37440598c9fc3a26170a3c.bindPopup(popup_dcf37fab9fef4c17ad2bdd9c53fa0694);
var circle_marker_4a39c94174594190adff5021b5a983be = L.circleMarker(
[32.52963695,-117.01986845015387],
{
"bubblingMouseEvents": true,
"color": "#8000ff",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#8000ff",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_ee06a33d8fda483c8151fc2810ba386d);
var popup_a94662089de54d93b77c6d792be7db45 = L.popup({maxWidth: '300'});
var html_6b8dd5bc58a64153a07dae18f9eba31f = $('<div id="html_6b8dd5bc58a64153a07dae18f9eba31f" style="width: 100.0%; height: 100.0%;">ZONA URBANA RIO TIJUANA Cluster 1</div>')[0];
popup_a94662089de54d93b77c6d792be7db45.setContent(html_6b8dd5bc58a64153a07dae18f9eba31f);
circle_marker_4a39c94174594190adff5021b5a983be.bindPopup(popup_a94662089de54d93b77c6d792be7db45);
var circle_marker_30c822c03d67403fa7c98b3fc2b91b72 = L.circleMarker(
[32.516067,-116.858502],
{
"bubblingMouseEvents": true,
"color": "#ff0000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#ff0000",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_ee06a33d8fda483c8151fc2810ba386d);
var popup_46bb4a19999840eeafe9543653fa0bf0 = L.popup({maxWidth: '300'});
var html_5c39a3c73e3f497e828f04f6008827ee = $('<div id="html_5c39a3c73e3f497e828f04f6008827ee" style="width: 100.0%; height: 100.0%;">CAMINO VERDE Cluster 0</div>')[0];
popup_46bb4a19999840eeafe9543653fa0bf0.setContent(html_5c39a3c73e3f497e828f04f6008827ee);
circle_marker_30c822c03d67403fa7c98b3fc2b91b72.bindPopup(popup_46bb4a19999840eeafe9543653fa0bf0);
var circle_marker_3742e00b8ffa4392bc2b645144c10c42 = L.circleMarker(
[32.513355,-116.94546899999999],
{
"bubblingMouseEvents": true,
"color": "#8000ff",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#8000ff",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_ee06a33d8fda483c8151fc2810ba386d);
var popup_97ee421c34214a11824eb04899712bd9 = L.popup({maxWidth: '300'});
var html_b54acf857f1441b98acac53627523dcd = $('<div id="html_b54acf857f1441b98acac53627523dcd" style="width: 100.0%; height: 100.0%;">MARIANO MATAMOROS NORTE Cluster 1</div>')[0];
popup_97ee421c34214a11824eb04899712bd9.setContent(html_b54acf857f1441b98acac53627523dcd);
circle_marker_3742e00b8ffa4392bc2b645144c10c42.bindPopup(popup_97ee421c34214a11824eb04899712bd9);
var circle_marker_2ee99c7853444e568338dc7eefac0cea = L.circleMarker(
[32.4655,-116.8748],
{
"bubblingMouseEvents": true,
"color": "#8000ff",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#8000ff",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_ee06a33d8fda483c8151fc2810ba386d);
var popup_72e868d67ddc4630b6af2e1d736ab72e = L.popup({maxWidth: '300'});
var html_02b6222299ce40998ef64a5625a02a7b = $('<div id="html_02b6222299ce40998ef64a5625a02a7b" style="width: 100.0%; height: 100.0%;">EL FLORIDO PRIMERA Y SEGUNDA SECCION Cluster 1</div>')[0];
popup_72e868d67ddc4630b6af2e1d736ab72e.setContent(html_02b6222299ce40998ef64a5625a02a7b);
circle_marker_2ee99c7853444e568338dc7eefac0cea.bindPopup(popup_72e868d67ddc4630b6af2e1d736ab72e);
var circle_marker_37d4cbd8e192419e9588ee9cedbf808b = L.circleMarker(
[32.5185352,-116.84938700000001],
{
"bubblingMouseEvents": true,
"color": "#8000ff",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#8000ff",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_ee06a33d8fda483c8151fc2810ba386d);
var popup_e7f4e72be92b4dea8b1d1dec2719d27c = L.popup({maxWidth: '300'});
var html_3bd57a4d082040abb156a709f892f9e4 = $('<div id="html_3bd57a4d082040abb156a709f892f9e4" style="width: 100.0%; height: 100.0%;">NUEVA TIJUANA Cluster 1</div>')[0];
popup_e7f4e72be92b4dea8b1d1dec2719d27c.setContent(html_3bd57a4d082040abb156a709f892f9e4);
circle_marker_37d4cbd8e192419e9588ee9cedbf808b.bindPopup(popup_e7f4e72be92b4dea8b1d1dec2719d27c);
var circle_marker_b5f3e18c1a1d4095bf77d8409348c98f = L.circleMarker(
[32.4881637,-116.9535577],
{
"bubblingMouseEvents": true,
"color": "#8000ff",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#8000ff",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_ee06a33d8fda483c8151fc2810ba386d);
var popup_7f68042710c94c5b9694fd5193b8c02c = L.popup({maxWidth: '300'});
var html_3037975c0abc4e6ea8df6c29a3346a4d = $('<div id="html_3037975c0abc4e6ea8df6c29a3346a4d" style="width: 100.0%; height: 100.0%;">EL PIPILA Cluster 1</div>')[0];
popup_7f68042710c94c5b9694fd5193b8c02c.setContent(html_3037975c0abc4e6ea8df6c29a3346a4d);
circle_marker_b5f3e18c1a1d4095bf77d8409348c98f.bindPopup(popup_7f68042710c94c5b9694fd5193b8c02c);
var circle_marker_6f68aa1631584c8da0a51c3ac96f1f34 = L.circleMarker(
[32.5067,-116.9411],
{
"bubblingMouseEvents": true,
"color": "#8000ff",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#8000ff",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_ee06a33d8fda483c8151fc2810ba386d);
var popup_acc8cf17e51c47e5ab1c1ecc75cdeb36 = L.popup({maxWidth: '300'});
var html_4bedd48a6cd747469e79f8c83a66bf18 = $('<div id="html_4bedd48a6cd747469e79f8c83a66bf18" style="width: 100.0%; height: 100.0%;">RIO TIJUANA TERCERA ETAPA Cluster 1</div>')[0];
popup_acc8cf17e51c47e5ab1c1ecc75cdeb36.setContent(html_4bedd48a6cd747469e79f8c83a66bf18);
circle_marker_6f68aa1631584c8da0a51c3ac96f1f34.bindPopup(popup_acc8cf17e51c47e5ab1c1ecc75cdeb36);
var circle_marker_b6ab1fb2d21c4b40a9d4497951b5dee9 = L.circleMarker(
[32.4497809,-116.98867949999999],
{
"bubblingMouseEvents": true,
"color": "#8000ff",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#8000ff",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_ee06a33d8fda483c8151fc2810ba386d);
var popup_ddb600aa5e8942ef95c4ef5ee72c4690 = L.popup({maxWidth: '300'});
var html_f4d448fa516c457596c35012f7db7bb5 = $('<div id="html_f4d448fa516c457596c35012f7db7bb5" style="width: 100.0%; height: 100.0%;">LA MESA Cluster 1</div>')[0];
popup_ddb600aa5e8942ef95c4ef5ee72c4690.setContent(html_f4d448fa516c457596c35012f7db7bb5);
circle_marker_b6ab1fb2d21c4b40a9d4497951b5dee9.bindPopup(popup_ddb600aa5e8942ef95c4ef5ee72c4690);
var circle_marker_5e30fa9120fa41dbba28fccf925bee89 = L.circleMarker(
[32.516284999999996,-116.895486],
{
"bubblingMouseEvents": true,
"color": "#8000ff",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#8000ff",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_ee06a33d8fda483c8151fc2810ba386d);
var popup_a8c7c830f03448a9bab10dda7da53148 = L.popup({maxWidth: '300'});
var html_f3bece094e45434ca98e101ec6fe5c30 = $('<div id="html_f3bece094e45434ca98e101ec6fe5c30" style="width: 100.0%; height: 100.0%;">EJIDO FRANCISCO VILLA Cluster 1</div>')[0];
popup_a8c7c830f03448a9bab10dda7da53148.setContent(html_f3bece094e45434ca98e101ec6fe5c30);
circle_marker_5e30fa9120fa41dbba28fccf925bee89.bindPopup(popup_a8c7c830f03448a9bab10dda7da53148);
var circle_marker_c1f9409f23ab4399ad8a0b91e768d5f9 = L.circleMarker(
[32.52963695,-117.01986845015387],
{
"bubblingMouseEvents": true,
"color": "#8000ff",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#8000ff",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_ee06a33d8fda483c8151fc2810ba386d);
var popup_e6ce5a9a1db747d4804a06dfe29459da = L.popup({maxWidth: '300'});
var html_ffa36571fab64d2eb6b6d6168ce2081a = $('<div id="html_ffa36571fab64d2eb6b6d6168ce2081a" style="width: 100.0%; height: 100.0%;">ZONA NORTE Cluster 1</div>')[0];
popup_e6ce5a9a1db747d4804a06dfe29459da.setContent(html_ffa36571fab64d2eb6b6d6168ce2081a);
circle_marker_c1f9409f23ab4399ad8a0b91e768d5f9.bindPopup(popup_e6ce5a9a1db747d4804a06dfe29459da);
var circle_marker_2dbe2fb1b565488e8cef6a03e641906b = L.circleMarker(
[32.4587667,-117.0033247],
{
"bubblingMouseEvents": true,
"color": "#8000ff",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#8000ff",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_ee06a33d8fda483c8151fc2810ba386d);
var popup_9284f75f011449248f979547b1dfc659 = L.popup({maxWidth: '300'});
var html_e0a0d4c210174377964ec88990ef2268 = $('<div id="html_e0a0d4c210174377964ec88990ef2268" style="width: 100.0%; height: 100.0%;">SANCHEZ TABOADA Cluster 1</div>')[0];
popup_9284f75f011449248f979547b1dfc659.setContent(html_e0a0d4c210174377964ec88990ef2268);
circle_marker_2dbe2fb1b565488e8cef6a03e641906b.bindPopup(popup_9284f75f011449248f979547b1dfc659);
var circle_marker_c96f82c4d8d747c39bc6321594fc8487 = L.circleMarker(
[32.5014262,-116.8771774],
{
"bubblingMouseEvents": true,
"color": "#80ffb4",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#80ffb4",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_ee06a33d8fda483c8151fc2810ba386d);
var popup_01985d078542421c92552a181901a096 = L.popup({maxWidth: '300'});
var html_4aecc53c9b084f90883d898422a64c5c = $('<div id="html_4aecc53c9b084f90883d898422a64c5c" style="width: 100.0%; height: 100.0%;">LAS TORRES Cluster 2</div>')[0];
popup_01985d078542421c92552a181901a096.setContent(html_4aecc53c9b084f90883d898422a64c5c);
circle_marker_c96f82c4d8d747c39bc6321594fc8487.bindPopup(popup_01985d078542421c92552a181901a096);
var circle_marker_669ca31cd1564b6bb7a7ccbec234fb4c = L.circleMarker(
[32.5065109,-116.8719097],
{
"bubblingMouseEvents": true,
"color": "#ff0000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#ff0000",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_ee06a33d8fda483c8151fc2810ba386d);
var popup_6f8e5de1ee714b79b8fb858f6af2ad52 = L.popup({maxWidth: '300'});
var html_fce0f03f0c3540a5bc518629b512d106 = $('<div id="html_fce0f03f0c3540a5bc518629b512d106" style="width: 100.0%; height: 100.0%;">VILLA FONTANA I Cluster 0</div>')[0];
popup_6f8e5de1ee714b79b8fb858f6af2ad52.setContent(html_fce0f03f0c3540a5bc518629b512d106);
circle_marker_669ca31cd1564b6bb7a7ccbec234fb4c.bindPopup(popup_6f8e5de1ee714b79b8fb858f6af2ad52);
var circle_marker_0b1a8ae541bd401ea6075166d1671040 = L.circleMarker(
[32.529423699999995,-116.9462364],
{
"bubblingMouseEvents": true,
"color": "#8000ff",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#8000ff",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_ee06a33d8fda483c8151fc2810ba386d);
var popup_9cfbe36279034c2a9b55a2bf9ea54f76 = L.popup({maxWidth: '300'});
var html_afe12b91bfd541aaa973acc4e51a8417 = $('<div id="html_afe12b91bfd541aaa973acc4e51a8417" style="width: 100.0%; height: 100.0%;">S/D Cluster 1</div>')[0];
popup_9cfbe36279034c2a9b55a2bf9ea54f76.setContent(html_afe12b91bfd541aaa973acc4e51a8417);
circle_marker_0b1a8ae541bd401ea6075166d1671040.bindPopup(popup_9cfbe36279034c2a9b55a2bf9ea54f76);
var circle_marker_8148d0e024c8409783f5819b36a654fc = L.circleMarker(
[32.5205374,-116.88957820000002],
{
"bubblingMouseEvents": true,
"color": "#ff0000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#ff0000",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_ee06a33d8fda483c8151fc2810ba386d);
var popup_069d3ce58d8d4f28b9bf10060c898a03 = L.popup({maxWidth: '300'});
var html_2ceff6f5bcf543d3bd9c8636385316c6 = $('<div id="html_2ceff6f5bcf543d3bd9c8636385316c6" style="width: 100.0%; height: 100.0%;">JARDIN DORADO Cluster 0</div>')[0];
popup_069d3ce58d8d4f28b9bf10060c898a03.setContent(html_2ceff6f5bcf543d3bd9c8636385316c6);
circle_marker_8148d0e024c8409783f5819b36a654fc.bindPopup(popup_069d3ce58d8d4f28b9bf10060c898a03);
var circle_marker_946993b8ec314ae8bf8246b481fe9a5e = L.circleMarker(
[32.49460130000001,-117.03923359999999],
{
"bubblingMouseEvents": true,
"color": "#8000ff",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#8000ff",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_ee06a33d8fda483c8151fc2810ba386d);
var popup_3f8b3c74f19c4c6ea88795330a089158 = L.popup({maxWidth: '300'});
var html_e3a25f36a56647c5af65e24e80333ae9 = $('<div id="html_e3a25f36a56647c5af65e24e80333ae9" style="width: 100.0%; height: 100.0%;">OBRERA Cluster 1</div>')[0];
popup_3f8b3c74f19c4c6ea88795330a089158.setContent(html_e3a25f36a56647c5af65e24e80333ae9);
circle_marker_946993b8ec314ae8bf8246b481fe9a5e.bindPopup(popup_3f8b3c74f19c4c6ea88795330a089158);
var circle_marker_e513fb2c40294cac85e9ba64edc4647c = L.circleMarker(
[32.4590746,-116.8314406],
{
"bubblingMouseEvents": true,
"color": "#8000ff",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#8000ff",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_ee06a33d8fda483c8151fc2810ba386d);
var popup_42292286b1b54731bdc738c75ec76dcf = L.popup({maxWidth: '300'});
var html_f88e356834654eb4884a6eea3c929747 = $('<div id="html_f88e356834654eb4884a6eea3c929747" style="width: 100.0%; height: 100.0%;">EL REFUGIO Cluster 1</div>')[0];
popup_42292286b1b54731bdc738c75ec76dcf.setContent(html_f88e356834654eb4884a6eea3c929747);
circle_marker_e513fb2c40294cac85e9ba64edc4647c.bindPopup(popup_42292286b1b54731bdc738c75ec76dcf);
var circle_marker_9de7cfd9b0fa41909a401e2543474320 = L.circleMarker(
[32.53754995,-117.00865756547279],
{
"bubblingMouseEvents": true,
"color": "#8000ff",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#8000ff",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_ee06a33d8fda483c8151fc2810ba386d);
var popup_24f5ba08f77a46cb8de9d9e3f95d505b = L.popup({maxWidth: '300'});
var html_c5f449113089409f8beb57cda4f0fcb2 = $('<div id="html_c5f449113089409f8beb57cda4f0fcb2" style="width: 100.0%; height: 100.0%;">LIBERTAD Cluster 1</div>')[0];
popup_24f5ba08f77a46cb8de9d9e3f95d505b.setContent(html_c5f449113089409f8beb57cda4f0fcb2);
circle_marker_9de7cfd9b0fa41909a401e2543474320.bindPopup(popup_24f5ba08f77a46cb8de9d9e3f95d505b);
var circle_marker_b351149deff44ef0871cb9a4c587045d = L.circleMarker(
[32.513355,-116.94546899999999],
{
"bubblingMouseEvents": true,
"color": "#8000ff",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#8000ff",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_ee06a33d8fda483c8151fc2810ba386d);
var popup_570acc09a76a40cebc1b29e0882b81f2 = L.popup({maxWidth: '300'});
var html_edf0b4a374a147eaa25f96e122478989 = $('<div id="html_edf0b4a374a147eaa25f96e122478989" style="width: 100.0%; height: 100.0%;">MARIANO MATAMOROS SUR Cluster 1</div>')[0];
popup_570acc09a76a40cebc1b29e0882b81f2.setContent(html_edf0b4a374a147eaa25f96e122478989);
circle_marker_b351149deff44ef0871cb9a4c587045d.bindPopup(popup_570acc09a76a40cebc1b29e0882b81f2);
var circle_marker_fd2b365b6509472295e8e644e822d37b = L.circleMarker(
[32.507,-116.89399999999999],
{
"bubblingMouseEvents": true,
"color": "#8000ff",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#8000ff",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_ee06a33d8fda483c8151fc2810ba386d);
var popup_a3ba4da9306b4b9d8d1ccf76f75be808 = L.popup({maxWidth: '300'});
var html_7456165a26df4e348ee2d5756b39ac4a = $('<div id="html_7456165a26df4e348ee2d5756b39ac4a" style="width: 100.0%; height: 100.0%;">BUENOS AIRES SUR Cluster 1</div>')[0];
popup_a3ba4da9306b4b9d8d1ccf76f75be808.setContent(html_7456165a26df4e348ee2d5756b39ac4a);
circle_marker_fd2b365b6509472295e8e644e822d37b.bindPopup(popup_a3ba4da9306b4b9d8d1ccf76f75be808);
var circle_marker_ba0e601286544c049a3674ccdc611679 = L.circleMarker(
[32.5138391,-116.9687896772368],
{
"bubblingMouseEvents": true,
"color": "#ff0000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#ff0000",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_ee06a33d8fda483c8151fc2810ba386d);
var popup_10e7b2bc971247e7998622b009d0c5ae = L.popup({maxWidth: '300'});
var html_775d8e4c39e54c778708f2466b03a277 = $('<div id="html_775d8e4c39e54c778708f2466b03a277" style="width: 100.0%; height: 100.0%;">EL LAGO Cluster 0</div>')[0];
popup_10e7b2bc971247e7998622b009d0c5ae.setContent(html_775d8e4c39e54c778708f2466b03a277);
circle_marker_ba0e601286544c049a3674ccdc611679.bindPopup(popup_10e7b2bc971247e7998622b009d0c5ae);
var circle_marker_a636a86d140d4d1ca918dd83c6337cf5 = L.circleMarker(
[32.506575500000004,-116.91858252434898],
{
"bubblingMouseEvents": true,
"color": "#ff0000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#ff0000",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_ee06a33d8fda483c8151fc2810ba386d);
var popup_7c004aaf04a0468784aad6654aca5590 = L.popup({maxWidth: '300'});
var html_9bf30add3a0c46758b75e227ba044256 = $('<div id="html_9bf30add3a0c46758b75e227ba044256" style="width: 100.0%; height: 100.0%;">GUAYCURA Cluster 0</div>')[0];
popup_7c004aaf04a0468784aad6654aca5590.setContent(html_9bf30add3a0c46758b75e227ba044256);
circle_marker_a636a86d140d4d1ca918dd83c6337cf5.bindPopup(popup_7c004aaf04a0468784aad6654aca5590);
var circle_marker_9c43a821905a499aa28111b4354ae97a = L.circleMarker(
[32.47059960000001,-116.9504955],
{
"bubblingMouseEvents": true,
"color": "#ff0000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#ff0000",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_ee06a33d8fda483c8151fc2810ba386d);
var popup_3512d7fadfd349b099b02a1aa8c5ee51 = L.popup({maxWidth: '300'});
var html_a10d386513f449bfb25f8e8440af28af = $('<div id="html_a10d386513f449bfb25f8e8440af28af" style="width: 100.0%; height: 100.0%;">REFORMA Cluster 0</div>')[0];
popup_3512d7fadfd349b099b02a1aa8c5ee51.setContent(html_a10d386513f449bfb25f8e8440af28af);
circle_marker_9c43a821905a499aa28111b4354ae97a.bindPopup(popup_3512d7fadfd349b099b02a1aa8c5ee51);
var circle_marker_6e0278690bc248c2b4eb8d39d1c20d56 = L.circleMarker(
[32.5171,-116.9013],
{
"bubblingMouseEvents": true,
"color": "#8000ff",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#8000ff",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_ee06a33d8fda483c8151fc2810ba386d);
var popup_b3225df02b6c4b95bd50cce16dd0146a = L.popup({maxWidth: '300'});
var html_b00beb85637546bd80242df1cec0e5ef = $('<div id="html_b00beb85637546bd80242df1cec0e5ef" style="width: 100.0%; height: 100.0%;">BUENOS AIRES NORTE Cluster 1</div>')[0];
popup_b3225df02b6c4b95bd50cce16dd0146a.setContent(html_b00beb85637546bd80242df1cec0e5ef);
circle_marker_6e0278690bc248c2b4eb8d39d1c20d56.bindPopup(popup_b3225df02b6c4b95bd50cce16dd0146a);
var circle_marker_c21058c8a03f41ef853919bc580f3cac = L.circleMarker(
[32.53931725,-116.91348173462264],
{
"bubblingMouseEvents": true,
"color": "#8000ff",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#8000ff",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_ee06a33d8fda483c8151fc2810ba386d);
var popup_3191a2af9f3947c69ef370880b94e1b7 = L.popup({maxWidth: '300'});
var html_4cac2849280d4ce684b04687fda2c28b = $('<div id="html_4cac2849280d4ce684b04687fda2c28b" style="width: 100.0%; height: 100.0%;">CIUDAD INDUSTRIAL Cluster 1</div>')[0];
popup_3191a2af9f3947c69ef370880b94e1b7.setContent(html_4cac2849280d4ce684b04687fda2c28b);
circle_marker_c21058c8a03f41ef853919bc580f3cac.bindPopup(popup_3191a2af9f3947c69ef370880b94e1b7);
var circle_marker_77e9b759ad9d4be2adbb4f4128092724 = L.circleMarker(
[32.5144924,-117.0578674],
{
"bubblingMouseEvents": true,
"color": "#8000ff",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#8000ff",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_ee06a33d8fda483c8151fc2810ba386d);
var popup_83ca976dde5c4c0f9966ba4991a601cd = L.popup({maxWidth: '300'});
var html_207730901da84bf0a78635c19a517d3c = $('<div id="html_207730901da84bf0a78635c19a517d3c" style="width: 100.0%; height: 100.0%;">FRANCISCO VILLA Cluster 1</div>')[0];
popup_83ca976dde5c4c0f9966ba4991a601cd.setContent(html_207730901da84bf0a78635c19a517d3c);
circle_marker_77e9b759ad9d4be2adbb4f4128092724.bindPopup(popup_83ca976dde5c4c0f9966ba4991a601cd);
var circle_marker_5d1cfec778fa4c1293ab656a54625709 = L.circleMarker(
[32.5235,-116.9308],
{
"bubblingMouseEvents": true,
"color": "#8000ff",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#8000ff",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",