@jupytergis/jupytergis-core 0.11.1 → 0.12.1
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 +3 -3
- package/schema/jupytergis-settings.json +31 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupytergis/jupytergis-core",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.12.1",
|
|
4
4
|
"description": "JupyterGIS core extension",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"jupyter",
|
|
@@ -54,8 +54,8 @@
|
|
|
54
54
|
},
|
|
55
55
|
"dependencies": {
|
|
56
56
|
"@jupyter/collaborative-drive": "^4.1.2",
|
|
57
|
-
"@jupytergis/base": "^0.
|
|
58
|
-
"@jupytergis/schema": "^0.
|
|
57
|
+
"@jupytergis/base": "^0.12.1",
|
|
58
|
+
"@jupytergis/schema": "^0.12.1",
|
|
59
59
|
"@jupyterlab/application": "^4.3.0",
|
|
60
60
|
"@jupyterlab/apputils": "^4.3.0",
|
|
61
61
|
"@jupyterlab/docregistry": "^4.3.0",
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
+
"jupyter.lab.setting-icon": "jupytergis::logoMini",
|
|
2
3
|
"title": "JupyterGIS Settings",
|
|
3
4
|
"description": "Settings for the JupyterGIS extension.",
|
|
4
5
|
"type": "object",
|
|
@@ -12,41 +13,61 @@
|
|
|
12
13
|
"leftPanelDisabled": {
|
|
13
14
|
"type": "boolean",
|
|
14
15
|
"title": "Disable Left Panel",
|
|
16
|
+
"description": "Disable Left Panel in the JupyterGIS interface.",
|
|
17
|
+
"default": false
|
|
18
|
+
},
|
|
19
|
+
"rightPanelDisabled": {
|
|
20
|
+
"type": "boolean",
|
|
21
|
+
"title": "Disable Right Panel",
|
|
22
|
+
"description": "Disable Right Panel in the JupyterGIS interface.",
|
|
23
|
+
"default": false
|
|
24
|
+
},
|
|
25
|
+
"layersDisabled": {
|
|
26
|
+
"type": "boolean",
|
|
27
|
+
"title": "Disable Layers",
|
|
28
|
+
"description": "Disable Layers tab from the Left Panel.",
|
|
15
29
|
"default": false
|
|
16
30
|
},
|
|
17
31
|
"stacBrowserDisabled": {
|
|
18
32
|
"type": "boolean",
|
|
19
33
|
"title": "Disable STAC Browser",
|
|
34
|
+
"description": "Disable STAC Browser tab from the Left Panel.",
|
|
20
35
|
"default": false
|
|
21
36
|
},
|
|
22
37
|
"filtersDisabled": {
|
|
23
38
|
"type": "boolean",
|
|
24
39
|
"title": "Disable Filters",
|
|
40
|
+
"description": "Disable Filters tab from the Left Panel.",
|
|
25
41
|
"default": false
|
|
26
42
|
},
|
|
27
|
-
"
|
|
43
|
+
"objectPropertiesDisabled": {
|
|
28
44
|
"type": "boolean",
|
|
29
|
-
"title": "Disable
|
|
45
|
+
"title": "Disable Object Properties",
|
|
46
|
+
"description": "Disable Object Properties tab from the Right Panel.",
|
|
30
47
|
"default": false
|
|
31
48
|
},
|
|
32
|
-
"
|
|
49
|
+
"storyMapsDisabled": {
|
|
33
50
|
"type": "boolean",
|
|
34
|
-
"title": "Disable
|
|
51
|
+
"title": "Disable Story Maps",
|
|
52
|
+
"description": "Disable Segments tab from the Left Panel and Story Editor tab from the Right Panel.",
|
|
35
53
|
"default": false
|
|
36
54
|
},
|
|
37
|
-
"
|
|
55
|
+
"annotationsDisabled": {
|
|
38
56
|
"type": "boolean",
|
|
39
|
-
"title": "Disable
|
|
57
|
+
"title": "Disable Annotations",
|
|
58
|
+
"description": "Disable Annotations tab from the Right Panel.",
|
|
40
59
|
"default": false
|
|
41
60
|
},
|
|
42
|
-
"
|
|
61
|
+
"identifyDisabled": {
|
|
43
62
|
"type": "boolean",
|
|
44
|
-
"title": "Disable
|
|
63
|
+
"title": "Disable Identify Features",
|
|
64
|
+
"description": "Disable Identify Features tab from the Right Panel and Identify command toolbar button.",
|
|
45
65
|
"default": false
|
|
46
66
|
},
|
|
47
|
-
"
|
|
67
|
+
"zoomButtonsEnabled": {
|
|
48
68
|
"type": "boolean",
|
|
49
|
-
"title": "
|
|
69
|
+
"title": "Enable Zoom Buttons",
|
|
70
|
+
"description": "Enable + / − zoom buttons on the map.",
|
|
50
71
|
"default": false
|
|
51
72
|
}
|
|
52
73
|
}
|