mapicgc-gl-js 0.0.52 → 0.0.54
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/dist/mapicgc-gl.css +46 -1
- package/dist/mapicgc-gl.js +65 -23
- package/dist/mapicgc-gl.umd.js +65 -23
- package/docu_Map.md +0 -0
- package/package.json +1 -1
- package/public/mapicgc-gl.css +46 -1
- package/src/config.js +809 -809
- package/src/configNode.js +809 -809
- package/src/constants/Layers.js +165 -165
- package/src/map/Map.js +132 -19
- package/test/exemples/addFeatureQuery.html +12 -4
- package/test/exemples/addImageLayerICGC.html +2 -1
- package/test/exemples/advancedExemple.html +13 -9
- package/test/exemples/fetchDataAndMenu.html +8 -6
- package/test/exemples/addFGBLayerICGC.html +0 -55
package/dist/mapicgc-gl.css
CHANGED
|
@@ -528,6 +528,7 @@ a.maplibregl-ctrl-logo.maplibregl-compact {
|
|
|
528
528
|
border-right: none;
|
|
529
529
|
}
|
|
530
530
|
.maplibregl-popup-close-button {
|
|
531
|
+
color: white;
|
|
531
532
|
background-color: transparent;
|
|
532
533
|
border: 0;
|
|
533
534
|
border-radius: 0 3px 0 0;
|
|
@@ -543,7 +544,7 @@ a.maplibregl-ctrl-logo.maplibregl-compact {
|
|
|
543
544
|
background: #fff;
|
|
544
545
|
border-radius: 3px;
|
|
545
546
|
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
|
|
546
|
-
padding:
|
|
547
|
+
padding: 0px;
|
|
547
548
|
pointer-events: auto;
|
|
548
549
|
position: relative;
|
|
549
550
|
word-wrap: break-word !important
|
|
@@ -947,6 +948,7 @@ background: #d4d4d4;
|
|
|
947
948
|
|
|
948
949
|
.maplibregl-popup {
|
|
949
950
|
max-width: 200px;
|
|
951
|
+
position: relative;
|
|
950
952
|
}
|
|
951
953
|
#basemapSplide{
|
|
952
954
|
position: relative;
|
|
@@ -1560,6 +1562,49 @@ h4::selection {
|
|
|
1560
1562
|
}
|
|
1561
1563
|
|
|
1562
1564
|
|
|
1565
|
+
.popup {
|
|
1566
|
+
position: relative !important;
|
|
1567
|
+
pointer-events: none;
|
|
1568
|
+
color: #000;
|
|
1569
|
+
line-height: 12px;
|
|
1570
|
+
box-shadow: #00000040 0px 2px 10px;
|
|
1571
|
+
}
|
|
1572
|
+
|
|
1573
|
+
.popupBody {
|
|
1574
|
+
/* position: absolute; */
|
|
1575
|
+
background: white;
|
|
1576
|
+
width: 100%;
|
|
1577
|
+
height: auto;
|
|
1578
|
+
top: 0;
|
|
1579
|
+
border-radius: 2px;
|
|
1580
|
+
/* padding: 3px; */
|
|
1581
|
+
}
|
|
1582
|
+
|
|
1583
|
+
.popupTop {
|
|
1584
|
+
border-top-left-radius: inherit;
|
|
1585
|
+
border-top-right-radius: inherit;
|
|
1586
|
+
width: 100%;
|
|
1587
|
+
height: 20px;
|
|
1588
|
+
line-height: 20px;
|
|
1589
|
+
text-align: center;
|
|
1590
|
+
background: #4d4d4d;
|
|
1591
|
+
color: white;
|
|
1592
|
+
font-size: 15px;
|
|
1593
|
+
font-weight: 400;
|
|
1594
|
+
}
|
|
1595
|
+
|
|
1596
|
+
.popupBottom {
|
|
1597
|
+
border-radius: inherit;
|
|
1598
|
+
/* width: 100%; */
|
|
1599
|
+
height: calc(100% - 20px);
|
|
1600
|
+
/* display: flex; */
|
|
1601
|
+
margin: 7px;
|
|
1602
|
+
overflow: auto;
|
|
1603
|
+
|
|
1604
|
+
}
|
|
1605
|
+
.popupBottomDown {
|
|
1606
|
+
text-align: -webkit-right;
|
|
1607
|
+
}
|
|
1563
1608
|
|
|
1564
1609
|
|
|
1565
1610
|
}
|