mapicgc-gl-js 0.0.75 → 0.0.76
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/package.json +5 -5
- package/test/exemples/addCompare.html +1 -1
- package/test/exemples/addControl.html +1 -1
- package/test/exemples/addFeatureQuery.html +1 -1
- package/test/exemples/addGeocoderICGC.html +1 -1
- package/test/exemples/addICGCTerrain.html +1 -1
- package/test/exemples/addImageLayerICGC.html +1 -1
- package/test/exemples/addLayerGeojson.html +1 -1
- package/test/exemples/addLayerTree.html +1 -1
- package/test/exemples/addLogo.html +1 -1
- package/test/exemples/addMapStyle.html +1 -1
- package/test/exemples/addMarker.html +1 -1
- package/test/exemples/addMouseCoordinateControl.html +1 -1
- package/test/exemples/addVectorLayerICGC.html +1 -1
- package/test/exemples/advancedExemple.html +1 -1
- package/test/exemples/fetchData.html +1 -1
- package/test/exemples/fetchDataAndMenu.html +1 -1
- package/test/exemples/styleOrto3D.html +1 -1
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mapicgc-gl-js",
|
|
3
3
|
"homepage": "https://openicgc.github.io/mapicgc-doc/",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.76",
|
|
5
5
|
"description": "mapicgc-gl-js library",
|
|
6
6
|
"author": "Institut Cartogràfic i Geològic de Catalunya",
|
|
7
7
|
"license": "BSD-3-Clause",
|
|
8
|
-
|
|
8
|
+
"type": "commonjs",
|
|
9
9
|
"keywords": [
|
|
10
10
|
"map",
|
|
11
11
|
"js",
|
|
@@ -24,12 +24,12 @@
|
|
|
24
24
|
"email": "geostart@icgc.cat"
|
|
25
25
|
}
|
|
26
26
|
],
|
|
27
|
-
"main": "dist/mapicgc-gl.
|
|
27
|
+
"main": "dist/mapicgc-gl.mjs",
|
|
28
28
|
"module": "dist/mapicgc-gl.js",
|
|
29
29
|
"exports": {
|
|
30
30
|
".": {
|
|
31
|
-
"import": "./dist/mapicgc-gl.
|
|
32
|
-
"require": "./dist/mapicgc-gl.
|
|
31
|
+
"import": "./dist/mapicgc-gl.mjs",
|
|
32
|
+
"require": "./dist/mapicgc-gl.mjs"
|
|
33
33
|
}
|
|
34
34
|
},
|
|
35
35
|
"scripts": {
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
<div id="map" class="map"></div>
|
|
24
24
|
<script>
|
|
25
25
|
async function initMap() {
|
|
26
|
-
const data = await mapicgcgl.
|
|
26
|
+
const data = await mapicgcgl.Config.getConfigICGC();;
|
|
27
27
|
const map = new mapicgcgl.Map({
|
|
28
28
|
container: "map",
|
|
29
29
|
style: data.Styles.TOPO,
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
<div id="map" class="map"></div>
|
|
25
25
|
<script>
|
|
26
26
|
async function initMap() {
|
|
27
|
-
const data = await mapicgcgl.
|
|
27
|
+
const data = await mapicgcgl.Config.getConfigICGC();;
|
|
28
28
|
const map = new mapicgcgl.Map({
|
|
29
29
|
container: "map",
|
|
30
30
|
style: data.Styles.ORTO,
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
<div id="map" class="map"></div>
|
|
27
27
|
<script>
|
|
28
28
|
async function initMap() {
|
|
29
|
-
const data = await mapicgcgl.
|
|
29
|
+
const data = await mapicgcgl.Config.getConfigICGC();;
|
|
30
30
|
const map = new mapicgcgl.Map({
|
|
31
31
|
container: "map",
|
|
32
32
|
style: data.Styles.TOPO,
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
<div id="map" class="map"></div>
|
|
27
27
|
<script>
|
|
28
28
|
async function initMap() {
|
|
29
|
-
const data = await mapicgcgl.
|
|
29
|
+
const data = await mapicgcgl.Config.getConfigICGC();;
|
|
30
30
|
const map = new mapicgcgl.Map({
|
|
31
31
|
container: "map",
|
|
32
32
|
style: data.Styles.TOPO,
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
<nav id="filter-group" class="filter-group"></nav>
|
|
28
28
|
<script>
|
|
29
29
|
async function initMap() {
|
|
30
|
-
const data = await mapicgcgl.
|
|
30
|
+
const data = await mapicgcgl.Config.getConfigICGC();;
|
|
31
31
|
const map = new mapicgcgl.Map({
|
|
32
32
|
container: "map",
|
|
33
33
|
style: data.Styles.TOPO,
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
<div id="map" class="map"></div>
|
|
27
27
|
<script>
|
|
28
28
|
async function initMap() {
|
|
29
|
-
const data = await mapicgcgl.
|
|
29
|
+
const data = await mapicgcgl.Config.getConfigICGC();;
|
|
30
30
|
const map = new mapicgcgl.Map({
|
|
31
31
|
container: 'map',
|
|
32
32
|
style: data.Styles.ORTO,
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
<div id="map" class="map"></div>
|
|
27
27
|
<script>
|
|
28
28
|
async function initMap() {
|
|
29
|
-
const data = await mapicgcgl.
|
|
29
|
+
const data = await mapicgcgl.Config.getConfigICGC();;
|
|
30
30
|
const map = new mapicgcgl.Map({
|
|
31
31
|
container: "map",
|
|
32
32
|
style: data.Styles.TOPO,
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
<div id="map" class="map"></div>
|
|
24
24
|
<script>
|
|
25
25
|
async function initMap() {
|
|
26
|
-
const data = await mapicgcgl.
|
|
26
|
+
const data = await mapicgcgl.Config.getConfigICGC();;
|
|
27
27
|
const map = new mapicgcgl.Map({
|
|
28
28
|
container: "map",
|
|
29
29
|
style: data.Styles.TOPO,
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
<nav id="menu-group" class="filter-group"></nav>
|
|
48
48
|
<script>
|
|
49
49
|
async function initMap() {
|
|
50
|
-
const data = await mapicgcgl.
|
|
50
|
+
const data = await mapicgcgl.Config.getConfigICGC();;
|
|
51
51
|
const map = new mapicgcgl.Map({
|
|
52
52
|
container: "map",
|
|
53
53
|
style: data.Styles.ORTO,
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
<div id="basemap-group" class="basemap-group"></div>
|
|
29
29
|
<script>
|
|
30
30
|
async function initMap() {
|
|
31
|
-
const data = await mapicgcgl.
|
|
31
|
+
const data = await mapicgcgl.Config.getConfigICGC();;
|
|
32
32
|
const map = new mapicgcgl.Map({
|
|
33
33
|
container: "map",
|
|
34
34
|
style: data.Styles.LIGHT,
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
<div id="map" class="map"></div>
|
|
39
39
|
<script>
|
|
40
40
|
async function initMap() {
|
|
41
|
-
const data = await mapicgcgl.
|
|
41
|
+
const data = await mapicgcgl.Config.getConfigICGC();;
|
|
42
42
|
const map = new mapicgcgl.Map({
|
|
43
43
|
container: "map",
|
|
44
44
|
style: data.Styles.TOPO,
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
<div id="map" class="map"></div>
|
|
55
55
|
<script>
|
|
56
56
|
async function initMap() {
|
|
57
|
-
const data = await mapicgcgl.
|
|
57
|
+
const data = await mapicgcgl.Config.getConfigICGC();;
|
|
58
58
|
const map = new mapicgcgl.Map({
|
|
59
59
|
container: 'map',
|
|
60
60
|
style: data.Styles.ORTO3D,
|