* visible * For now, just store this state in the url hash * set/get whether the 3d viewer is visible
()
| 185 | * set/get whether the 3d viewer is visible |
| 186 | */ |
| 187 | get visible() { |
| 188 | const urlhash = this.context.systems.urlhash; |
| 189 | return !!urlhash.getParam('map3d'); |
| 190 | } |
| 191 | |
| 192 | set visible(val) { |
| 193 | const context = this.context; |