mapicgc-gl-js 0.0.42 → 0.0.43
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 +3 -1
- package/dist/mapicgc-gl.css +19 -1
- package/dist/mapicgc-gl.js +223 -223
- package/dist/mapicgc-gl.umd.js +223 -223
- package/docu_Map.md +0 -0
- package/package.json +2 -2
- package/public/mapicgc-gl.css +19 -1
- package/src/config.js +10 -3
- package/src/configNode.js +10 -3
- package/src/controls/LogoControl.js +48 -20
- package/src/map/Map.js +95 -48
- package/test/exemples/InstamapsExport.gpkg +0 -0
- package/test/exemples/addGeopackage.html +54 -0
- package/test/exemples/advancedExemple.html +98 -0
package/README.md
CHANGED
|
@@ -14,6 +14,8 @@
|
|
|
14
14
|
# MapICGC GL JS
|
|
15
15
|
|
|
16
16
|
|
|
17
|
+
> 🌠 __MAPLIBRE GL JS version:__ 4.1.2
|
|
18
|
+
|
|
17
19
|
The MapICGC GL JS library builds upon the open-source library [**MapLibre GL JS**](https://github.com/maplibre/maplibre-gl-js), exposing its existing capabilities while introducing new features specific to the MapICGC ecosystem. This library is tailored to seamlessly integrate with the MapICGC Cloud service, offering a comprehensive set of data to enhance web mapping experiences, including vector tiles, satellite raster tiles, DEM with Terrain RGB, and customizable styles with an editor.
|
|
18
20
|
|
|
19
21
|
Our goal is to simplify the development process for MapICGC developers! With MapICGC GL JS, you won't need to load external plugins for basic functionalities, deal with complex data source URLs, or search for syntax to enable 3D terrain every time you embark on a project. All these features are either built-in, loaded dynamically when necessary, or accessible through straightforward functions.
|
|
@@ -21,7 +23,7 @@ The MapICGC GL JS library builds upon the open-source library [**MapLibre GL JS
|
|
|
21
23
|
Moreover, MapICGC GL JS provides well-documented and user-friendly wrapper functions for MapICGC Cloud API services, including geocoding, static maps, geolocation, and a coordinate reference system search engine for transforming coordinates between different CRSs.
|
|
22
24
|
|
|
23
25
|
|
|
24
|
-
|
|
26
|
+
|
|
25
27
|
|
|
26
28
|
<br>
|
|
27
29
|
|
package/dist/mapicgc-gl.css
CHANGED
|
@@ -1529,7 +1529,7 @@ h4::selection {
|
|
|
1529
1529
|
z-index: 1000;
|
|
1530
1530
|
overflow-y: scroll;
|
|
1531
1531
|
cursor: grab;
|
|
1532
|
-
}
|
|
1532
|
+
};
|
|
1533
1533
|
#toggleLegend {
|
|
1534
1534
|
position: absolute;
|
|
1535
1535
|
top: 20px;
|
|
@@ -1543,5 +1543,23 @@ h4::selection {
|
|
|
1543
1543
|
line-height: 40px;
|
|
1544
1544
|
cursor: pointer;
|
|
1545
1545
|
z-index: 1000;
|
|
1546
|
+
};
|
|
1547
|
+
#geocoder-container {
|
|
1548
|
+
margin: 20px;
|
|
1549
|
+
position: absolute;
|
|
1550
|
+
top: 50px;
|
|
1551
|
+
right: 20px;
|
|
1552
|
+
};
|
|
1553
|
+
|
|
1554
|
+
#results {
|
|
1555
|
+
margin-top: 10px;
|
|
1556
|
+
};
|
|
1557
|
+
|
|
1558
|
+
.divLogos{
|
|
1559
|
+
display: flex;
|
|
1546
1560
|
}
|
|
1561
|
+
|
|
1562
|
+
|
|
1563
|
+
|
|
1564
|
+
|
|
1547
1565
|
}
|