mapicgc-gl-js 0.0.37 → 0.0.39
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/mapicgc-gl.css +59 -5
- package/dist/mapicgc-gl.js +1873 -138
- package/dist/mapicgc-gl.umd.js +1873 -138
- package/docu_Map.md +0 -0
- package/exemples/compare.html +6 -39
- package/exemples/orto3d.html +115 -0
- package/nodeDeploy.js +1 -1
- package/nodeSetConfig.js +23 -17
- package/package.json +11 -7
- package/public/mapicgc-gl.css +59 -5
- package/src/config.js +94 -71
- package/src/configNode.js +94 -71
- package/src/constants/Layers.js +23 -22
- package/src/constants/Styles.js +2 -1
- package/src/constants/Terrains.js +2 -2
- package/src/map/Map.js +265 -107
- package/test/Proposa_DAC_min.geojson +3599 -1
- package/test/index.html +15 -6
- package/vite.config.mjs +4 -0
package/README.md
CHANGED
package/dist/mapicgc-gl.css
CHANGED
|
@@ -751,7 +751,46 @@ a.maplibregl-ctrl-logo.maplibregl-compact {
|
|
|
751
751
|
border-radius: 3px;
|
|
752
752
|
width: auto;
|
|
753
753
|
color: #fff;
|
|
754
|
+
overflow-y: auto;
|
|
755
|
+
max-height: 500px;
|
|
756
|
+
overflow-x: hidden;
|
|
754
757
|
}
|
|
758
|
+
.filter-group::-webkit-scrollbar {
|
|
759
|
+
width: 8px; /* Tamaño del scroll en vertical */
|
|
760
|
+
height: 8px; /* Tamaño del scroll en horizontal */
|
|
761
|
+
display: block; /* Ocultar scroll */
|
|
762
|
+
}
|
|
763
|
+
|
|
764
|
+
/* Ponemos un color de fondo y redondeamos las esquinas del thumb */
|
|
765
|
+
.filter-group::-webkit-scrollbar-thumb {
|
|
766
|
+
background: #ccc;
|
|
767
|
+
border-radius: 4px;
|
|
768
|
+
}
|
|
769
|
+
|
|
770
|
+
/* Cambiamos el fondo y agregamos una sombra cuando esté en hover */
|
|
771
|
+
.filter-group::-webkit-scrollbar-thumb:hover {
|
|
772
|
+
background: #daac56;
|
|
773
|
+
box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
|
|
774
|
+
}
|
|
775
|
+
|
|
776
|
+
/* Cambiamos el fondo cuando esté en active */
|
|
777
|
+
.filter-group::-webkit-scrollbar-thumb:active {
|
|
778
|
+
background-color: #d8b97f;
|
|
779
|
+
}
|
|
780
|
+
/* Ponemos un color de fondo y redondeamos las esquinas del track */
|
|
781
|
+
.filter-group::-webkit-scrollbar-track {
|
|
782
|
+
background: #e1e1e1;
|
|
783
|
+
border-radius: 4px;
|
|
784
|
+
}
|
|
785
|
+
|
|
786
|
+
/* Cambiamos el fondo cuando esté en active o hover */
|
|
787
|
+
.filter-group::-webkit-scrollbar-track:hover,
|
|
788
|
+
.filter-group::-webkit-scrollbar-track:active {
|
|
789
|
+
background: #d4d4d4;
|
|
790
|
+
}
|
|
791
|
+
|
|
792
|
+
|
|
793
|
+
|
|
755
794
|
|
|
756
795
|
.filter-group input[type='checkbox']:first-child + label {
|
|
757
796
|
border-radius: 3px 3px 0 0;
|
|
@@ -767,21 +806,21 @@ a.maplibregl-ctrl-logo.maplibregl-compact {
|
|
|
767
806
|
}
|
|
768
807
|
|
|
769
808
|
.filter-group input[type='checkbox'] + label {
|
|
770
|
-
background-color: #
|
|
809
|
+
background-color: #798e9f;
|
|
771
810
|
display: block;
|
|
772
811
|
cursor: pointer;
|
|
773
|
-
padding:
|
|
812
|
+
padding: 7px;
|
|
774
813
|
border-bottom: 1px solid rgba(0, 0, 0, 0.25);
|
|
775
814
|
}
|
|
776
815
|
|
|
777
816
|
.filter-group input[type='checkbox'] + label {
|
|
778
|
-
background-color: #
|
|
817
|
+
background-color: #798e9f;
|
|
779
818
|
text-transform: capitalize;
|
|
780
819
|
}
|
|
781
820
|
|
|
782
821
|
.filter-group input[type='checkbox'] + label:hover,
|
|
783
822
|
.filter-group input[type='checkbox']:checked + label {
|
|
784
|
-
background-color: #
|
|
823
|
+
background-color: #798e9f;
|
|
785
824
|
}
|
|
786
825
|
|
|
787
826
|
.filter-group input[type='checkbox']:checked + label:before {
|
|
@@ -1466,4 +1505,19 @@ h4::selection {
|
|
|
1466
1505
|
font-size: 16px;
|
|
1467
1506
|
text-align: center;
|
|
1468
1507
|
}
|
|
1469
|
-
|
|
1508
|
+
#titleDivMenu{
|
|
1509
|
+
height: 25px;
|
|
1510
|
+
background-color:rgb(214 132 0);
|
|
1511
|
+
min-width: 130px;
|
|
1512
|
+
text-align: -webkit-center;
|
|
1513
|
+
}
|
|
1514
|
+
|
|
1515
|
+
#titleDivMenuSub{
|
|
1516
|
+
height: 25px;
|
|
1517
|
+
background-color: #7e8765;
|
|
1518
|
+
padding-left: 24px;
|
|
1519
|
+
/* min-width: 130px; */
|
|
1520
|
+
/* text-align: -webkit-center; */
|
|
1521
|
+
}
|
|
1522
|
+
|
|
1523
|
+
}
|