Skip to content

Commit c27d36b

Browse files
committed
Add story presentation as a setting
1 parent 195b303 commit c27d36b

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

packages/schema/src/interfaces.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -417,4 +417,7 @@ export interface IJupyterGISSettings {
417417
objectPropertiesDisabled?: boolean;
418418
annotationsDisabled?: boolean;
419419
identifyDisabled?: boolean;
420+
421+
// Story maps
422+
storyMapPresentation: boolean;
420423
}

packages/schema/src/model.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ const DEFAULT_SETTINGS: IJupyterGISSettings = {
5353
objectPropertiesDisabled: false,
5454
annotationsDisabled: false,
5555
identifyDisabled: false,
56+
storyMapPresentation: false,
5657
};
5758

5859
export class JupyterGISModel implements IJupyterGISModel {

python/jupytergis_core/schema/jupytergis-settings.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,11 @@
4343
"type": "boolean",
4444
"title": "Disable Right Panel",
4545
"default": false
46+
},
47+
"storyMapPresentation": {
48+
"type": "boolean",
49+
"title": "Enable Story Map Presentations",
50+
"default": false
4651
}
4752
}
4853
}

0 commit comments

Comments
 (0)