@jupytergis/jupytergis-core 0.8.1 → 0.9.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.
|
@@ -65,13 +65,11 @@ export class JupyterGISModelFactory {
|
|
|
65
65
|
* @returns The model
|
|
66
66
|
*/
|
|
67
67
|
createNew(options) {
|
|
68
|
-
|
|
68
|
+
return new JupyterGISModel({
|
|
69
69
|
sharedModel: options.sharedModel,
|
|
70
70
|
languagePreference: options.languagePreference,
|
|
71
71
|
annotationModel: this._annotationModel,
|
|
72
72
|
settingRegistry: this._settingRegistry,
|
|
73
73
|
});
|
|
74
|
-
model.initSettings();
|
|
75
|
-
return model;
|
|
76
74
|
}
|
|
77
75
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupytergis/jupytergis-core",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.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": "^3.0.0",
|
|
57
|
-
"@jupytergis/base": "^0.
|
|
58
|
-
"@jupytergis/schema": "^0.
|
|
57
|
+
"@jupytergis/base": "^0.9.1",
|
|
58
|
+
"@jupytergis/schema": "^0.9.1",
|
|
59
59
|
"@jupyterlab/application": "^4.3.0",
|
|
60
60
|
"@jupyterlab/apputils": "^4.3.0",
|
|
61
61
|
"@jupyterlab/docregistry": "^4.3.0",
|
|
@@ -8,6 +8,41 @@
|
|
|
8
8
|
"title": "Proxy URL",
|
|
9
9
|
"description": "The proxy URL to use for external requests.",
|
|
10
10
|
"default": "https://corsproxy.io"
|
|
11
|
+
},
|
|
12
|
+
"leftPanelDisabled": {
|
|
13
|
+
"type": "boolean",
|
|
14
|
+
"title": "Disable Left Panel",
|
|
15
|
+
"default": false
|
|
16
|
+
},
|
|
17
|
+
"stacBrowserDisabled": {
|
|
18
|
+
"type": "boolean",
|
|
19
|
+
"title": "Disable STAC Browser",
|
|
20
|
+
"default": false
|
|
21
|
+
},
|
|
22
|
+
"filtersDisabled": {
|
|
23
|
+
"type": "boolean",
|
|
24
|
+
"title": "Disable Filters",
|
|
25
|
+
"default": false
|
|
26
|
+
},
|
|
27
|
+
"annotationsDisabled": {
|
|
28
|
+
"type": "boolean",
|
|
29
|
+
"title": "Disable Annotations",
|
|
30
|
+
"default": false
|
|
31
|
+
},
|
|
32
|
+
"identifyDisabled": {
|
|
33
|
+
"type": "boolean",
|
|
34
|
+
"title": "Disable Identify Features",
|
|
35
|
+
"default": false
|
|
36
|
+
},
|
|
37
|
+
"objectPropertiesDisabled": {
|
|
38
|
+
"type": "boolean",
|
|
39
|
+
"title": "Disable Object Properties",
|
|
40
|
+
"default": false
|
|
41
|
+
},
|
|
42
|
+
"rightPanelDisabled": {
|
|
43
|
+
"type": "boolean",
|
|
44
|
+
"title": "Disable Right Panel",
|
|
45
|
+
"default": false
|
|
11
46
|
}
|
|
12
47
|
}
|
|
13
48
|
}
|