-
Notifications
You must be signed in to change notification settings - Fork 20
Sidebar component
Filip Leitner edited this page Apr 30, 2024
·
3 revisions
List of useful config parameters for the sidebar component can be found here:
import {HsConfig} from 'hslayers-ng/config';
@Component({
selector: 'your-app-component',
templateUrl: 'your-app-component.html',
})
export class YourAppComponent {
constructor(hsConfig: HsConfig) {
this.HsConfig.update({
componentsEnabled: {
guiOverlay: true, //(true by default)
sidebar: true //(true by default)
},
sidebarPosition: 'right', ('right' by default),
pureMap: false (false by default)
});
}
}
Quick Links: Home ➖ App configuration ➖ Layer configuration ➖ Cesium configuration ➖ Composition schema (separate repo)