Skip to main content

ISelectionToolDefaults

geovisto-mapReadme | API


geovisto-map / ISelectionToolDefaults

Interface: ISelectionToolDefaults

This interface declares functions which return the default state values.

Author

Jiri Hynek

Extends

Methods

getConfig()

getConfig(): ISelectionToolConfig

It returns default config if no config is given.

Returns

ISelectionToolConfig

Overrides

IMapToolDefaults.getConfig

Source

tools/selection/model/types/tool/ISelectionToolDefaults.ts:19


getIcon()

getIcon(): string

It returns the icon of the tool.

Returns

string

Inherited from

IMapToolDefaults.getIcon

Source

model/types/tool/IMapToolDefaults.ts:36


getId()

getId(): string

It returns identifier which is used when no identifier is specified.

Returns

string

Inherited from

IMapToolDefaults.getId

Source

model/types/object/IMapObjectDefaults.ts:32


getLabel()

getLabel(): string

It returns the label of the tool.

Returns

string

Inherited from

IMapToolDefaults.getLabel

Source

model/types/tool/IMapToolDefaults.ts:31


getProps()

getProps(): IMapObjectProps

It returns default props if no props are given.

Returns

IMapObjectProps

Inherited from

IMapToolDefaults.getProps

Source

model/types/object/IMapObjectDefaults.ts:17


getSelection()

getSelection(): null | IMapSelection

It returns default map selection.

Returns

null | IMapSelection

Source

tools/selection/model/types/tool/ISelectionToolDefaults.ts:24


getType()

getType(): string

It returns a unique type string of the map object.

Returns

string

Inherited from

IMapToolDefaults.getType

Source

model/types/object/IMapObjectDefaults.ts:27


isEnabled()

isEnabled(): boolean

By default, the tool is enabled.

Returns

boolean

Inherited from

IMapToolDefaults.isEnabled

Source

model/types/tool/IMapToolDefaults.ts:26


isSingleton()

isSingleton(): boolean

It returns a logical value whether the tool type is singleton.

Returns

boolean

Inherited from

IMapToolDefaults.isSingleton

Source

model/types/tool/IMapToolDefaults.ts:19