mapicgc-gl-js 0.0.31 → 0.0.32

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 CHANGED
@@ -11,13 +11,13 @@
11
11
 
12
12
  <br>
13
13
 
14
- Version 0.0.31
14
+ Version 0.0.32
15
15
 
16
16
 
17
17
 
18
18
  The MapICGC GL JS library builds upon the MapLibre GL JS framework, 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.
19
19
 
20
- 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. While the SDK is opinionated, being closely tied to MapICGC Cloud data, its MapLibre core ensures 100% compatibility with other data sources..
20
+ 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
21
 
22
22
  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.
23
23
 
@@ -49,7 +49,7 @@ Moreover, MapICGC GL JS provides well-documented and user-friendly wrapper funct
49
49
 
50
50
  const map = Map({
51
51
  container: 'map',
52
- style: "Style.Topografic", // style from mapicgc library
52
+ style: mapicgcgl.Styles.LIGHT, // style from mapicgc library
53
53
  center: [2.1464, 41.306], // starting position [lng, lat]
54
54
  zoom: 7.4, //starting zoom
55
55
  });