Skip to main content

IMapDynamicDomainDimension

geovisto-mapReadme | API


geovisto-map / IMapDynamicDomainDimension

Interface: IMapDynamicDomainDimension\<T>

This interface declares functions for using a map dimension which allows to set a data domain.

Author

Jiri Hynek

Extends

Type parameters

T extends IMapDomain

Methods

findValue()

findValue(value): undefined | T

It finds the value of given string.

Parameters

value: string

Returns

undefined | T

Inherited from

IMapDomainDimension.findValue

Source

model/types/dimension/IMapDimension.ts:32


getDomainManager()

getDomainManager(): IMapDomainManager\<T>

It returns the map domain manager which provides options to the map dimension.

Returns

IMapDomainManager\<T>

Inherited from

IMapDomainDimension.getDomainManager

Source

model/types/dimension/IMapDomainDimension.ts:15


getDomainManagerLoader()

getDomainManagerLoader(): () => IMapDomainManager\<T>

It returns the map domain manager loader which is set to the map dimension.

Returns

Function

Returns

IMapDomainManager\<T>

Source

model/types/dimension/IMapDynamicDomainDimension.ts:15


getName()

getName(): string

It returns the name of the map domain.

Returns

string

Inherited from

IMapDomainDimension.getName

Source

model/types/domain/IMapDomain.ts:11


getValue()

getValue(): undefined | T

It returns the map domain which is set to the map dimension.

Returns

undefined | T

Inherited from

IMapDomainDimension.getValue

Source

model/types/dimension/IMapDimension.ts:18


setDomainManager()

setDomainManager(domain): void

It sets a map domain manager which provides options to the map dimension.

Parameters

domain: IMapDomainManager\<T>

Returns

void

Inherited from

IMapDomainDimension.setDomainManager

Source

model/types/dimension/IMapDomainDimension.ts:22


setDomainManagerLoader()

setDomainManagerLoader(domainManagerLoader): void

It sets a map domain manager loader which is set to the map dimension.

Parameters

domainManagerLoader

Returns

void

Source

model/types/dimension/IMapDynamicDomainDimension.ts:22


setName()

setName(name): void

It sets the name of the dimension.

Parameters

name: string

Returns

void

Inherited from

IMapDomainDimension.setName

Source

model/types/dimension/IMapDimension.ts:13


setStringValue()

setStringValue(value): void

It deserializes the string representation of a given value.

Parameters

value: string

Returns

void

Inherited from

IMapDomainDimension.setStringValue

Source

model/types/dimension/IMapDimension.ts:39


setValue()

setValue(domain): void

It sets a new map domain to the map dimension.

Parameters

domain: undefined | T

Returns

void

Inherited from

IMapDomainDimension.setValue

Source

model/types/dimension/IMapDimension.ts:25