File tree Expand file tree Collapse file tree 3 files changed +9
-0
lines changed
python/jupytergis_core/schema Expand file tree Collapse file tree 3 files changed +9
-0
lines changed Original file line number Diff line number Diff 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}
Original file line number Diff line number Diff line change @@ -53,6 +53,7 @@ const DEFAULT_SETTINGS: IJupyterGISSettings = {
5353 objectPropertiesDisabled : false ,
5454 annotationsDisabled : false ,
5555 identifyDisabled : false ,
56+ storyMapPresentation : false ,
5657} ;
5758
5859export class JupyterGISModel implements IJupyterGISModel {
Original file line number Diff line number Diff line change 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}
You can’t perform that action at this time.
0 commit comments