projects/angular-cesium/src/lib/angular-cesium/models/context-menu-options.ts
Interface of context menu options that can be passed when opening a context menu.
Properties |
|
closeOnLeftCLick |
closeOnLeftCLick:
|
Type : boolean
|
Optional |
closeOnLeftClickPriority |
closeOnLeftClickPriority:
|
Type : number
|
Optional |
data |
data:
|
Type : D
|
Optional |
export interface ContextMenuOptions<D = any> {
data?: D;
closeOnLeftCLick?: boolean;
closeOnLeftClickPriority?: number;
}