Skip to main content

Display Settings Deep Links

Display settings can be configured/applied automatically by passing in a displaySettings query parameter with the desired configuration. The displaySettings parameter configuration is a JSON object with the desired display settings.

Display Settings JSON

THe following display settings JSON configuration represents all of the display settings available. By passing the following JSON configuration as a displaySettings parameter, all available components would be hidden.

NOTE: by default all displays are "visible", so only settings that should be turned off need to be passed (unless user settings or config packages display settings are overriding the default "visible" state of a given component).

{
"toolbar": {
"logo": false,
"syncEdits": false,
"layouts": false,
"media": false,
"theme": false,
"offlineIndicator": false
},
"leftMenu": {
"data": {
"addData": false,
"layerList": false,
"configureLayers": false,
"changeGdbVersion": false
},
"configPackages": false,
"panelLayouts": {
"manageLayouts": false,
"saveCurrent": false,
"copyLink": false,
"download": false
},
"save": {
"current": false,
"new": false,
"export": false,
"webmap": false,
"newWebmap": false
},
"offline": {
"manage": false,
"draw": false,
"box": false,
"extent": false
},
"settings": false,
"organization": false,
"admin": false,
"userGuide": false,
"more": {
"displaySettings": false,
"integrations": false,
"storage": false,
"advanced": {
"resourceSync": false,
"securedServices": false,
"logs": false,
"restUtil": false
}
},
"account": { "info": false, "switchOrg": false, "logout": false }
},
"rightMenu": {
"layers": false,
"tables": false,
"selection": false,
"lrs": false,
"drafts": false,
"offline": false,
"location": false,
"bookmarks": false,
"directions": false
}
}

Examples

Hide toolbar/header organization logo:

https://omni.rizing.app/your_org?displaySettings={"toolbar":{"logo":false}}

Hide bookmarks panel and entire account menu in the left sidebar:

https://omni.rizing.app/your_org?displaySettings={"leftMenu":{"account":{"info":false,"switchOrg":false,"logout":false}},"rightMenu":{"bookmarks":false}}