-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathexplora.html
2750 lines (2379 loc) · 99.8 KB
/
explora.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>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Objetivos de Desarrollo Sostenible</title>
<link rel="stylesheet" type="text/css" href="lib/tooltipster/dist/css/tooltipster.bundle.min.css" />
<link rel="stylesheet" type="text/css" href="lib/tooltipster/dist/css/plugins/tooltipster/sideTip/themes/tooltipster-sideTip-light.min.css" />
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/icon?family=Material+Icons" >
<link rel="stylesheet" type="text/css" href="css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.7/css/materialize.min.css">
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Raleway:400,700,800,300,600italic,600" rel="stylesheet" type="text/css">
<link rel="stylesheet" type="text/css" href="https://npmcdn.com/leaflet@1.0.0-rc.3/dist/leaflet.css" />
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="css/home.css">
<link rel="stylesheet" href="lib/owl.carousel.min.css">
<link rel="stylesheet" href="lib/owl.theme.default.min.css">
<!-- Load c3.css -->
<link href="lib/c3.css" rel="stylesheet" type="text/css">
<!-- <link rel="stylesheet" type="text/css" href="css/section-scroll.css"> -->
<script src='js/config.js'></script>
<style media="screen">
a.selected {
background-color:#1F75CC;
color:white;
z-index:100;
right:0;
bottom:15%;
position:absolute;
}
#contact{
position: absolute;
right: 0;
bottom: 15%;
background:#EFD331;
color:#ffffff;
padding:5px 10px;
text-decoration:none;
z-index: 99;
}
#contact img{
padding: 8px;
max-width: 64px;
}
.disclaimer {
background-color:#FFFFFF;
cursor:default;
display:none;
margin-top: 0px;
position:absolute;
text-align:left;
width:394px;
z-index:50;
padding: 15px 25px;
right:84px;
bottom:15%;
z-index: 99999;
}
label {
display: block;
margin-bottom: 3px;
padding-left: 15px;
text-indent: -15px;
}
.disclaimer p, .disclaimer.div {
margin: 8px 0;
padding-bottom: 8px;
font-family:'Helvetica';
font-weight:300;
text-align:justify;
}
.disclaimer h1{
font-size:30px;
font-family:'Helvetica';
font-weight:800;
}
svg g.c3-chart-line g.c3-circles-Estados-Unidos-Mexicanos circle{
fill: #f00 !important;
}
#datosNacional{
display: none;
}
.infoPadre{
width: 276px;
}
.cuadrosSocial li {
display: inline;
}
.cuadrosSocial li a{
border: 1px solid #ccc;
padding: 10px;
transition: all 1.0s ease;
width: 40px;
}
.cuadrosSocial li a:hover {
background-color: #ccc;
}
.select-dropdown{
padding-left: 10px !important;
}
.select-wrapper span.caret{
padding-right: 10px;
font-size: 14px;
color: #666;
}
.espacio_seccion{
height: 40px;
}
.promedios{
font-size: 40px !important;
font-weight: 200;
}
.topColor{
color: #3ebcef;
}
.section-bullets{
display: none;
}
.section-bullets li a:before {
background-color: #00aeef;
}
.section-bullets li:hover {
background-color: #eee;
}
.section-bullets .active a {
color: #fff;
}
.section-bullets .active a:after {
background-color: #FFF;
}
.line_pro{
border-bottom: #F44336;
border: solid 1px #F44336;
margin: 10px;
max-width: 32%;
}
.active_anio
{
background-color: #15b5f0;
color: white;
}
.inactive_anio
{
background-color: white;
color: #15b5f0;
}
#loader {
display: block;
background: rgba(62, 60, 60, 0.6);
color: white;
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
z-index: 10000;
}
#loader p {
display: block;
font-size: 40px;
position: absolute;
top: -70px;
/* left: 0; */
bottom: 0;
right: 15px;
color: #fff !important /*margin: auto;*/;
text-align: right;
}
#loader p #tex{
width: 300px;
}
.crop {
width: 185px;
line-height: 18px;
height: 50px;
overflow: hidden;
margin: 0 auto;
text-align: left;
}
</style>
<span id="loader">
<p style="color:#333; padding-top: 100px; ">Cargando<br>información</p>
</span>
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script type="text/javascript" src="lib/tooltipster/dist/js/tooltipster.bundle.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.7/js/materialize.min.js"></script>
<script type="text/javascript" src="http://gabelerner.github.io/canvg/rgbcolor.js"></script>
<script src="js/image.js"></script>
<!-- <script type="text/javascript" src="lib/jquery.section-scroll.js"></script> -->
<script src="lib/owl.carousel.min.js"></script>
</head>
<body>
<!-- menu -->
<div class="navbar-fixed">
<nav>
<div class=" container nav-wrapper" style="margin-top:0px;">
<a href="index.html" class="brand-logo"><img src="img/icono_header.svg" alt="" /></a>
<a href="#" data-activates="mobile-demo" class="button-collapse"><i class="material-icons">menu</i></a>
<ul id="nav-mobile" class="right hide-on-med-and-down nav_sticky">
<li class="tam t_sm"><a class="t_sm" href="objetivos.html">Indicadores</a></li>
<li class="tam t_sm"><a href="estados.html" style="line-height: 21px; padding-top: 14px;"> Indicadores con<br>desglose geográfico</a></li>
<!--<li class="tam t_sm"><a class="t_sm" href="como_vamos.html">¿Cómo vamos?</a></li> -->
<li class="tam t_sm"><a class="t_sm" href="explora.html">Explora</a></li>
<!-- <li class="tam t_sm"><a class="t_sm" href="compara.html">Compara</a></li> -->
<li class="tamps">
<a id="buscar"><img src="img/search.png" alt="" /></a>
<input id="cam_bus" type="text" name="buscar" style="display: none; background-color: rgba(0, 0, 0, 0.4); background-position: 95% 50%; background-repeat: no-repeat;border-bottom: 0 none; border-radius: 8px;color: #ffffff !important;padding: 0 0px;height:35px;" onfocusout="esconder()"/>
</li>
<li class="tamps">
<a id="busca" href="calendario.html"><img data-position="bottom" data-tooltip="Ir al calendario de actualizaciones" class="tooltipped" src="img/calendario.png"
alt="" /></a>
</li>
<li class="tamps">
<a id="busca" href="descarga.html"><img data-position="bottom" data-tooltip="Ir a la página de descargas masivas" class=" tooltipped" src="img/descarga.png"
alt="" /></a>
</li>
<!-- <li class="tamps">
<a id="busca" href="exportacion.html"><img data-position="bottom" data-tooltip="Ir a la página de descargas masivas" class=" tooltipped" src="img/descarga.png"
alt="" /></a>
</li> -->
</ul>
<ul class="side-nav" id="mobile-demo">
<li><a href="index.html">Inicio</a></li>
<li><a href="objetivos.html">Indicadores</a></li>
<li><a href="estados.html">Indicadores por unidad geográfica</a></li>
<!-- <li><a href="como_vamos.html">¿Cómo vamos?</a></li> -->
<li><a href="explora.html">Explora</a></li>
<!-- <li><a href="compara.html">Compara</a></li> -->
<!-- <li class="tamps">
<a id="busca" href="calendario.html">Calendario</a>
</li> -->
</ul>
</div>
</nav>
</div>
<!-- menu -->
<div class="container">
<div class="row scrollable-section" data-section-title="Menú de selección" >
<div class="col s12">
<h3 class="fuerte t_principal">EXPLORA</h3>
<li class="divider"></li>
<!-- <p class="gris t_sm">
Esta sección permite visuallizar los indicadores de los cuales se dispone información para 11 de los 17 objetivos de la Agenda 2030 para el Desarrollo Sostenible. Igualmente ofrece la posiblilidad de filtrar la información por tipo de desagregación y unidades territoriales menores, en el caso de que esta se encuentre disponible, y exportarla para su manipulacion al igual que los materiales graficos que se generen por el usuario.
</p> -->
<p class="gris t_sm">
Esta sección permite visualizar los indicadores de los Objetivos de Desarrollo Sostenible y ofrece la posibilidad de filtrar la información por cobertura geográfica, y exportar las series estadísticas así como los gráficos que el usuario genere durante la navegación.
</p>
</div>
</div>
<div class="row">
<div class="col s4 l3" style="display: flex;">
<p class="claro t_sm" style="display: inline-table; margin-top: 25px; margin-right: 20px;">1. Tipo de indicador</p>
</div>
<div class="col s8 l5" style="display: flex;">
<div class="input-field col s12 caja_s">
<select id="agregacion">
<option value="" disabled selected>Elige una opción</option>
<option value="1">Nacional</option>
<option value="2" selected>Estatal</option>
</select>
</div>
</div>
</div>
<div class="row">
<div class="col s4 l3" style="display: flex;">
<p class="claro t_sm" style="display: inline-table; margin-top: 25px; margin-right: 63px;">2. Objetivo</p>
</div>
<div class="col s8 l5" style="display: flex;">
<div class="input-field col s12 caja_s">
<select id="obj_name">
<option value="-1" disabled="">Elige un objetivo</option>
<option value="1.">Fin de la pobreza</option>
<option value="3." selected="">Salud y bienestar</option>
<option value="8.">Trabajo decente y crecimiento económico</option>
</select>
</div>
</div>
</div>
<div class="row">
<div class="col s4 l3" style="display: flex;">
<p class="claro t_sm" style="display: inline-table; margin-top: 25px; margin-right: 63px;">3. Indicador </p>
</div>
<div class="col s8 l5" style="display: flex;">
<div class="input-field col s12 caja_s">
<select id="indicadores">
<!-- <option value="" disabled selected>Elige una opcion</option> -->
<option value="26" selected>Razón de mortalidad materna</option>
<option value="27">Proporción de partos con asistencia de personal sanitario especializado</option>
<option value="23">Tasa de mortalidad de niños menores de 5 años</option>
<option value="132">Tasa de incidencia asociada al paludismo (por 100 mil habitantes)</option>
<option value="333">Proporción de tratamientos otorgados a casos confirmados de paludismo, para la prevención, control y eliminación de la transmisión del Plasmodium Vivax</option>
<option value="140">Proporción de mujeres en edad reproductiva (de 15 a 49 años) con demanda satisfecha de planificación familiar con métodos modernos</option>
<option value="141">Tasa de fecundidad de las adolescentes de 10 a 14 años por cada 1,000 adolescentes en ese grupo de edad</option>
<option value="334">Tasa de fecundidad de las adolescentes de 15 a 19 años por cada 1,000 mujeres de ese grupo de edad</option>
</select>
</div>
</div>
<!-- <div class="col s5 offset-s2" style="display: flex;">
<a class="waves-effect waves-light btn color claro t_sm sin_sombra marg_top" style="width: 250px;" id ="hacer_llamada" onclick="llamar_api()">Ir</a>
</div> -->
</div>
<div class="row" id="row_filtros" style="display: none;">
<div class="col s4 l3" style="display: flex;">
<p class="claro t_sm" style="display: inline-table; margin-top: 25px; margin-right: 63px;">4. filtros</p>
</div>
<div class="col s8 l5" style="display: flex;">
<div class="input-field col s12 caja_s">
<select id="filtros">
</select>
</div>
</div>
</div>
<div class="espacio_seccion"></div>
<div class="hide">Ocurrio un Error al hacer la llamada</div>
<div class="row scrollable-section" data-section-title="Mapa">
<div class="col s12" id="seccion_mapa">
<div class="cuadro_titulo" id="headmap" >
<h4>Razón de mortalidad materna</h4>
<li class="divider"></li>
<p>1990-2015</p>
<span>Defunciones de mujeres por cada 100 mil nacidos vivos</span>
</div>
<div id="map"></div>
<div class="pie_cuadro2" id="footmapdatos" >
<div><strong>Nota:</strong> A partir de 2007 se excluyen defunciones con residencia en el extranjero y a partir de 2009 las defunciones extemporáneas</div>
<div><strong>Fuente:</strong> SS. Dirección General de Información en Salud (DGIS)</div>
<div><strong>Fecha de actualización:</strong> Noviembre de 2016</div>
</div>
<style>
.cuadro_titulo{
background-color: #fff;
padding: 30px;
color: #083362;
}
.cuadro_titulo p{
font-size: 20px;
font-weight: 100;
margin: 0px;
}
.cuadro_titulo span{
font-size: 14px;
font-weight: 300;
}
.cuadro_titulo .divider {
background-color: #fff;
}
.pie_cuadro2{
background-color: #fff;
color: #083362;
padding: 20px;
}
.pie_cuadro2 div{
margin-top:6px;
font-weight: 100;
font-size: initial;
}
</style>
<!-- <div id="map"></div> -->
<div class="row" id="footmap" style="padding-left: 31px;">
<div id="anios" class="col s12 l8">
<a class="waves-effect waves-light btn color black-text t_sm sin_sombra marg_top" style="border-style: none;">Año</a>
<a class="waves-effect waves-light btn color claro t_sm sin_sombra marg_top" style ="margin-right: -5px; border-color: black; border-width: 1px; border-radius: 5px 0px 0px 5px;">2013</a>
<a class="waves-effect waves-light btn color claro t_sm sin_sombra marg_top" style ="margin-right: -5px; border-color: black; border-width: 1px; border-radius: 0;">2014</a>
<a class="waves-effect waves-light btn color claro t_sm sin_sombra marg_top" style ="margin-right: -5px; border-color: black; border-width: 1px; border-radius: 0px 5px 5px 0px;">2015</a>
</div>
<div class="col s12 l4 rengal" >
<a style="margin-top: 42px; float: right;" class="waves-effect waves-light btn color claro t_sm sin_sombra modal-trigger" href="#modalMapa" style="width: 250px;margin-top:42px;">Comparte este mapa</a>
</div>
</div>
</div>
</div>
<br><br><br>
<div class="row scrollable-section" data-section-title="Gráfica" id="grafica">
<div class="col s12" id="grafica_c">
<h3 class="fuerte t_principal">Evolución del indicador en el tiempo</h3>
<li class="divider"></li>
<br><br>
<div class="cuadro_titulo">
<!-- <h4>Razón de mortalidad materna</h4>
<li class="divider"></li>
<p>1990-2015</p>
<span>Defunciones de mujeres por cada 100 mil nacidos vivos</span> -->
</div>
<div id="chart2"></div>
<div class="pie_cuadro2">
<!-- <div><strong>Nota:</strong> A partir de 2007 se excluyen defunciones con residencia en el extranjero y a partir de 2009 las defunciones extemporáneas</div>
<div><strong>Fuente:</strong> SS. Dirección General de Información en Salud (DGIS)</div>
<div><strong>Fecha de actualización:</strong> Noviembre de 2016</div> -->
</div>
<div class="col s4" style="margin-top: 40px;">
<div class="col s1 line_pro"></div>
<div class="col s6">
Promedio nacional
</div>
</div>
<div class="col s4 offset-s4">
<a class="waves-effect waves-light btn color claro t_sm sin_sombra marg_top modal-trigger" href="#modalGrafica" style="width: 250px;">Comparte esta gráfica</a>
</div>
</div>
</div>
<div class="row scrollable-section" data-section-title="Descarga de datos">
<div class="col s12" id="datos_descarga">
<h3 class="fuerte t_principal">Descargar datos</h3>
<li class="divider"></li>
<div class="row">
<div class="col s12 l10">
<div class="row">
<div class="col s4">
<p class="fuerte t_normal">Nombre</p>
</div>
<div class="col s4">
<p class="fuerte t_normal" >Institución</p>
</div>
<div class="col s3">
<p class="fuerte t_normal">Formato</p>
</div>
<div class="col s12">
<li class="divider griss"></li>
</div>
<div class="col s4">
<p class="gris t_sm" id="da_indicador">Razón de mortalidad materna</p>
</div>
<div class="col s4">
<p class="gris t_sm" id="da_institucion">Secretaría de Salud (SS). Dirección General de Información en Salud (DGIS).</p>
</div>
<div class="col s3" style="margin-top: 10px;">
<a class="icn col s12 l3 exportCSV">CSV</a>
<span class="col s12 l12" style="margin-top:10px;" id="exportarXLS"></span>
<!-- <a class="icns">XLS</a> -->
<!-- <a class="icnSDMX">SDMX</a>
<a class="icnPDF">PDF</a> -->
</div>
<div class="col s12">
<li class="divider griss"></li>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="tabla_export" style="display: none;"></div>
<div id="tabla_export2" style="display: none;"></div>
<footer class="page-footer id">
<div class="container">
<div class="row" id="fot">
<div class="col l3 s12">
<a href="index.html"><img src="img/logo_footer.svg" alt="" style="width: 60%;"/></a>
<br>
<br>
<div class="" style="display:inline;">
<!-- <a href="https://www.facebook.com" style="margin-right: 12%;"><img src="img/fill2.png" alt="" style="width:3%;"/></a>
<a href="https://twitter.com" style="margin-right: 12%;"><img src="img/fill1.png" alt="" style="width:7%;"/></a>
<a href="#"><img src="img/fill3.png" alt="" style="width:7%;"/></a> -->
</div>
</div>
<div class="col l3 s12">
<ul class="fuerte">
<li><a class="fuerte t_sm" href="objetivos.html">Indicadores</a></li>
<li><a class="fuerte t_sm" href="estados.html">Indicadores con desglose geográfico</a></li>
<!-- <li><a class="fuerte t_sm" href="como_vamos.html">¿Cómo vamos?</a></li> -->
<li><a class="fuerte t_sm" href="explora.html">Explora</a></li>
</ul>
</div>
<div class="col l3 s12">
<ul class="fuerte">
<!-- <li><a class="fuerte t_sm" href="compara.html">Compara</a></li> -->
<li><a class="fuerte t_sm" href="calendario.html">Calendario de actualizaciones</a></li>
<!-- <li><a class="fuerte t_sm" href="exportacion.html">Exportación masiva</a></li> -->
<li><a class="fuerte t_sm" href="acerca.html">Acerca de</a></li>
</ul>
</div>
<div class="col l3 s12" style="display:inline;">
<a href="https://www.gob.mx" target="_blank"><img src="img/logoPR.png" alt="" style="width: 45%; margin-right: 15%;"/></a>
<a href="http://www.inegi.org.mx" target="_blank"><img src="img/logoINEGI.png" alt="" style="width:25%;"/></a>
</div>
</div>
</div>
<!-- <div class="footer-copyright light-blue">
</div> -->
</footer>
<div class="disclaimer pop">
<h1>Aviso</h1>
<p>Esta es una versión beta de la Plataforma oficial para el seguimiento de los indicadores de los Objetivos de Desarrollo Sostenible. El INEGI y el Gobierno de la República trabajan para actualizar la información constantemente.</p>
</div>
<a href="#" id="contact"> <img src="img/informacion.png" alt="" /> </a>
<!-- Modal Grafica -->
<div id="modalGrafica" class="modal" >
<div class="modal-content">
<h5>Compartir</h5>
<div class="row">
<b>Redes Sociales</b>
<ul class="cuadrosSocial">
<li id="share_tw_grafica"></li>
<li>
<a class="waves-effect" href="javascript: void(0);" onclick="window.open('http://www.facebook.com/sharer.php?u='+ window.location ,'ventanacompartir', 'toolbar=0, status=0, width=650, height=450');"><i class="fa fa-facebook fa-lg" style="padding-left: 4px;"></i></a>
</li>
</ul>
</div>
<div class="row">
<!-- <i class="fa fa-code" aria-hidden="true"></i> <b>Embed</b>
<div class="input-field col s12">
<input placeholder="Placeholder" id="" type="text" class="validate" value="<script src='http://104.236.211.149/ods/embed.js'></script>">
<label for="">Copia este código para insertar el mapa en una página HTML</label>
</div> -->
</div>
<div class="row">
<i class="fa fa-code" aria-hidden="true"></i> <b>Liga</b>
<div class="input-field col s12">
<input placeholder="Placeholder" class="liga" type="text" class="validate" value="http://104.236.211.149/v2/compara.html#grafica">
</div>
</div>
<!-- <div class="row">
<i class="fa fa-code" aria-hidden="true"></i> <b>PDF</b>
<div class="input-field col s12">
<a class="waves-effect btn color claro">Descargar PDF</a>
</div>
</div> -->
<div class="modal-footer">
<a class=" modal-action modal-close waves-effect waves-green btn-flat">Cerrar</a>
</div>
</div>
</div>
<!-- Modal Structure -->
<div id="modalMapa" class="modal">
<div class="modal-content">
<h5>Compartir</h5>
<div class="row">
<b>Redes Sociales</b>
<ul class="cuadrosSocial">
<li id="share_tw_mapa"></li>
<li>
<a class="waves-effect" href="javascript: void(0);" onclick="window.open('http://www.facebook.com/sharer.php?u='+ window.location ,'ventanacompartir', 'toolbar=0, status=0, width=650, height=450');"><i class="fa fa-facebook fa-lg" style="padding-left: 4px;"></i></a>
</li>
</ul>
</div>
<!-- <div class="row">
<i class="fa fa-code" aria-hidden="true"></i> <b>Embed</b>
<div class="input-field col s12">
<input placeholder="++" id="" type="text" class="validate" value="<script src='http://104.236.211.149/ods/embed.js'></script>">
<label for="">Copia este código para insertar el mapa en una página HTML</label>
</div>
</div> -->
<div class="row">
<i class="fa fa-code" aria-hidden="true"></i> <b>Liga</b>
<div class="input-field col s12">
<input placeholder="++" class="liga" type="text" class="validate" value="http://104.236.211.149/v2/compara.html#mapa">
</div>
</div>
<!-- <div class="row">
<i class="fa fa-code" aria-hidden="true"></i> <b>PDF</b>
<div class="input-field col s12">
<a id="pdf_descarga" class="waves-effect btn color claro">Descargar PDF</a>
</div>
</div> -->
<div class="modal-footer">
<a class="modal-action modal-close waves-effect waves-green btn-flat">Cerrar</a>
</div>
</div>
</div>
<div class="row" style="display:none;">
</div>
<div class="row" id="show_grafica">
<div id="copia" style="width:100%; height:600px;"></div>
<div id="copias" style="width:100%; height:600px;"></div>
<div id="fondo" style="width:100%; height:600px;"></div>
<div id="todo" style="width:1298px; height:600px;"></div>
<div id="todo_listo" style="width:1298px; height:600px;"></div>
<div id="images" style="width:100%; height:600px;"></div>
<div id="forms" style="width:100%; height:600px;"></div>
</div>
<script src="https://npmcdn.com/leaflet@1.0.0-rc.3/dist/leaflet.js"></script>
<!-- <script type="text/javascript" src="entidad2.json"></script> -->
<!-- <script type="text/javascript" src="entidadCompara.json"></script> -->
<script type="text/javascript" src="json/entidad2.json"></script>
<!-- <script type="text/javascript" src="estados_indicador3.js"></script> -->
<script type="text/javascript" src="js/variable.js"></script>
<script type="text/javascript" src="json/municipio.json"></script>
<script type="text/javascript" src="json/nacion.json"></script>
<script src="lib/excellentexport.js"></script>
<!-- Load d3.js and c3.js -->
<script src="lib/d3.v3.min.js" charset="utf-8"></script>
<script src="lib/c3.min.js"></script>
<script src="lib/classybrew/build/classybrew.min.js"></script>
<script type="text/javascript" src="http://canvg.github.io/canvg/rgbcolor.js"></script>
<script type="text/javascript" src="http://canvg.github.io/canvg/StackBlur.js"></script>
<script type="text/javascript" src="http://canvg.github.io/canvg/canvg.js"></script>
<script type="text/javascript" src="lib/html2canvas.js"></script>
<script src='js/funcionesApi.js'></script>
<script src="lib/jquery.dotdotdot.js"></script>
<script src="js/cobertura.js"></script>
<script type="text/javascript" src="js/appExplora.js"></script>
<script type="text/javascript">
var titulo_des_graf="Razón de mortalidad materna";
var objeto;
var primera_carga = true;
var initialLoad = true;
var values = [];
var values2 = [];
$(document).ready(function()
{
function exportTableToCSV($table, filename) {
var $rows = $table.find('tr:has(td)'),
// Temporary delimiter characters unlikely to be typed by keyboard
// This is to avoid accidentally splitting the actual contents
tmpColDelim = String.fromCharCode(11), // vertical tab character
tmpRowDelim = String.fromCharCode(0), // null character
// actual delimiter characters for CSV format
colDelim = '","',
rowDelim = '"\r\n"',
// Grab text from table into CSV formatted string
csv = '"' + $rows.map(function (i, row) {
var $row = $(row),
$cols = $row.find('td');
return $cols.map(function (j, col) {
var $col = $(col),
text = $col.text();
return text.replace(/"/g, '""'); // escape double quotes
}).get().join(tmpColDelim);
}).get().join(tmpRowDelim)
.split(tmpRowDelim).join(rowDelim)
.split(tmpColDelim).join(colDelim) + '"';
// Deliberate 'false', see comment below
if (false && window.navigator.msSaveBlob) {
var blob = new Blob([decodeURIComponent(csv)], {
type: 'text/csv;charset=utf8'
});
// Crashes in IE 10, IE 11 and Microsoft Edge
// See MS Edge Issue #10396033: https://goo.gl/AEiSjJ
// Hence, the deliberate 'false'
// This is here just for completeness
// Remove the 'false' at your own risk
window.navigator.msSaveBlob(blob, filename);
} else if (window.Blob && window.URL) {
// HTML5 Blob
var blob = new Blob([csv], { type: 'text/csv;charset=utf8' });
var csvUrl = URL.createObjectURL(blob);
$(this)
.attr({
'download': filename,
'href': csvUrl
});
} else {
// Data URI
var csvData = 'data:application/csv;charset=utf-8,' + encodeURIComponent(csv);
$(this)
.attr({
'download': filename,
'href': csvData,
'target': '_blank'
});
}
}
function pruebaInicio(initialLoad){
if (initialLoad == true) {
console.log(':::::::::::::::::::::::: Indicador Inicial :::::::::::::::::::::::');
$("#exportarXLS").html('<a href="#" class="icns col s12 l3" download="Indicador.xls" onclick="return ExcellentExport.excel(this, '+"'miTabla33'"+', '+"'Indicadores'"+');">XLS</a>');
$(".exportCSV").on('click', function (event) {
var args;
args = [$('#miTabla33'), 'IndicadorExp.csv'];
exportTableToCSV.apply(this, args);
});
initialLoad = false;
} else {
console.log(':::::::::::::::::::::::: Indicador Diferente :::::::::::::::::::::::');
$("#exportarXLS").html('<a href="#" class="icns col s12 l3" download="Indicador.xls" onclick="return ExcellentExport.excel(this, '+"'miTabla22'"+', '+"'Indicadores'"+');">XLS</a>');
$(".exportCSV").on('click', function (event) {
// CSV
var args;
//Do work when it's not the initial load.
args = [$('#tabla_export2 table'), 'IndicadorExplora.csv'];
exportTableToCSV.apply(this, args);
initialLoad = false;
// If CSV, don't do event.preventDefault() or return false
// We actually need this to be a typical hyperlink
});
}
}
pruebaInicio(initialLoad);
// $('.modal').modal();
$('.modal-trigger').leanModal();
compartir();
$('#show_grafica').hide();
console.log('al inicio',$('#tit_map_des').html());
llamada(2,3);
//$("#obj_name").html('<option value="-1">Selecciona un Objetivo</option>');
$("#obj_name").on('change', function()
{
if($('#agregacion').val() == 1)
{
// initialLoad = false;
// pruebaInicio(initialLoad);
var indicador = $(this).val().split(".")[0];
console.log("entro",indicador);
console.log("Meta",objeto[indicador-1].Meta.length);
$("#indicadores").html('<option value="-1">Selecciona un Indicador</option>')
for(var i=0;i<objeto[indicador-1].Meta.length;i++)
{
console.log("Meta adentro",objeto[indicador-1].Meta.length);
for(var j=0;j<objeto[indicador-1].Meta[i].Indicador.length;j++)
{
console.log('------------------------- wachicol ----------------');
console.log(objeto[indicador-1].Meta[i].Indicador[j].TieneValores);
console.log(objeto[indicador-1].Meta[i].Indicador[j].DesGeo.Codigo_dg);
if($.trim(objeto[indicador-1].Meta[i].Indicador[j].DesGeo.Codigo_dg) == 'N' && objeto[indicador-1].Meta[i].Indicador[j].TieneValores == true){
$("#indicadores").append('<option value="'+objeto[indicador-1].Meta[i].Indicador[j].ClaveInd_arb+'">'+objeto[indicador-1].Meta[i].Indicador[j].Descrip_des+'</option>');
}
}
}
}else if($('#agregacion').val() == -1){/*no hacemos nada */}
else{
// initialLoad = false;
// pruebaInicio(initialLoad);
var indicador = $(this).val().split(".")[0];
console.log("entro",indicador);
console.log("Meta",objeto[indicador-1].Meta.length);
$("#indicadores").html('<option value="-1">Selecciona un Indicador</option>')
for(var i=0;i<objeto[indicador-1].Meta.length;i++)
{
console.log("Meta adentro",objeto[indicador-1].Meta.length);
for(var j=0;j<objeto[indicador-1].Meta[i].Indicador.length;j++)
{
console.log(objeto[indicador-1].Meta[i].Indicador[j].DesGeo.Codigo_dg);
if(($.trim(objeto[indicador-1].Meta[i].Indicador[j].DesGeo.Codigo_dg) == 'NE' && objeto[indicador-1].Meta[i].Indicador[j].TieneValores == true) || ($.trim(objeto[indicador-1].Meta[i].Indicador[j].DesGeo.Codigo_dg) == 'NEE' && objeto[indicador-1].Meta[i].Indicador[j].TieneValores == true)){
$("#indicadores").append('<option value="'+objeto[indicador-1].Meta[i].Indicador[j].ClaveInd_arb+'">'+objeto[indicador-1].Meta[i].Indicador[j].Descrip_des+'</option>');
}
}
}
}
$('select').material_select();
});
titulos(26);
$('#indicadores').on('change',function(){
$('#loader').show();
initialLoad = false;
pruebaInicio(initialLoad);
// var indicador = $(this).val().split(".")[0];
llamar_api();
$('#datos_descarga').show();//panel de datos de descarga
if($('#agregacion').val() != 1){
$('#datosNacional').hide( );
$('#datosEstatal').hide( );
$('#seccion_mapa').show();//panel de datos de descarga
$('#grafica_c').hide();
put_anios();
}else{
$('#grafica_c').show();
}
actualiza_grafica();
//else{
// // $('#headmap').show();
// // $('#footmapdatos').show();
// // $('#footmap').show();
// // $('#map').show();
// }
});
//activamos el change
});
function titulos(indicador){
var atributos = getAtributos(indicador);
var titulo = '<h4>'+ atributos.DescripInd_des +'</h4>' +
'<li class="divider"></li> ' +
'<p> '+ atributos.Serie[0].CobTemporal_ser +' </p>' +
'<span> '+ atributos.Serie[0].Descrip_uni +'</span>';
var pie =' <div> '+ ((atributos.Serie[0].Descrip_not != null || atributos.Serie[0].Descrip_not != "") ? '' : '<strong>Nota:</strong>' + atributos.Serie[0].Descrip_not)+
' <div><strong>Fuente:</strong> '+ atributos.Serie[0].Descrip_fue +' </div>'+
' <div><strong>Fecha de actualización:</strong> '+ atributos.FecProxAct_cal +'</div>'+
' </div>';
$('.pie_cuadro2').html(pie);
$('.cuadro_titulo').html(titulo);
titulo_des_graf = atributos.DescripInd_des;
put_datos(atributos.DescripInd_des, atributos.Descrip_ins);
}
function llamada(indicador, ser){
var url = PathAPI + 'Tematica/Todos';
//var url = 'https://operativos.inegi.org.mx/datos/api/Valores/PorClaveSerie';
var parametros = {"PIdioma":"ES"}
//var parametros = {'PCveInd':indicador,'PAnoIni':'0', 'PAnoFin':'0', 'POrden':'DESC','PCveSer': ser , 'PIdioma':'ES'}
$.ajax({
type: 'POST',
url: url,
data: parametros,
success: function( data, textStatus, jqxhr ) {
console.log(".-----",data);
objeto = data;
},
async:false
});
}
function llamar_api()
{
getInd($("#indicadores").val());
console.log('------------------------- estados -------------');
console.log(estados);
//cambio_anio('2015-01-01',1);
chart2.load({
columns: estados
});
titulos($("#indicadores").val());
}
function llamar_api_2(){
getSerie(26);
//cambio_anio('2015-01-01',1);
chart2.load({
columns: estados
});
}
var normal,fondo,todo;
$(document).ready(function()
{
$('#grafica_c').hide();
var lupa = false;
$('#buscar').click(function(){
if(lupa){
$('#cam_bus').hide();
lupa = false;
}else{
$('#cam_bus').show();
$('#buscar').hide();
lupa = true;
}
});
$(".button-collapse").sideNav();
$('select').material_select();
// $('.collapsible').collapsible(
// {
// accordion : true
// });
console.log($('#objetivos').find('li.active').children().children());
$('#agregacion').on('change', function (e)
{
$('#datos_descarga').hide();//panel de datos de descarga
$('#seccion_mapa').hide();//panel de datos de descarga
$('#grafica_c').hide();
$('#datosEstatal').hide();
// $('#row_filtros').hide();
// $('#headmap').hide();
// $('#footmapdatos').hide();
// $('#footmap').hide();
// $('#map').hide();
// $('#datosNacional').show();
//borramos el select
$("#obj_name").html('<option value="-1" disabled selected>Elige un objetivo</option>');
$("#indicadores").html('<option value="-1" disabled selected>Elige un indicador</option>');
console.log('------------------------ nuevo ---------------------');
// for(var i=0;i<objeto.length;i++)
// {
// var bkr = false;
// for (var j = 0; j < objeto[i].Meta.length; j++) {
// for (var k = 0; k < objeto[i].Meta[j].Indicador.length; k++) {
// if($('#agregacion').val() == 1 ){
// if($.trim(objeto[i].Meta[j].Indicador[k].DesGeo.Codigo_dg) == 'N'){
// console.log('nacional '+ k + objeto[i].Meta[j].Indicador[k].DesGeo.Codigo_dg);
// $("#obj_name").append('<option value="'+objeto[i].Codigo_des+'">'+objeto[i].Abrevia_des+'</option>');
// bkr = true;
// break;
// }
// }else{
// if($.trim(objeto[i].Meta[j].Indicador[k].DesGeo.Codigo_dg) == 'NE' || $.trim(objeto[i].Meta[j].Indicador[k].DesGeo.Codigo_dg) == 'NEE'){
// console.log('estatal '+ k + objeto[i].Meta[j].Indicador[k].DesGeo.Codigo_dg);
// $("#obj_name").append('<option value="'+objeto[i].Codigo_des+'">'+objeto[i].Abrevia_des+'</option>');
// bkr = true;
// break;