Skip to main content

IMapDomainDimension

geovisto-mapReadme | API


geovisto-map / IMapDomainDimension

Interface: IMapDomainDimension\<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

IMapDimension.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>

Source

model/types/dimension/IMapDomainDimension.ts:15


getName()

getName(): string

It returns the name of the map domain.

Returns

string

Inherited from

IMapDimension.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

IMapDimension.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

Source

model/types/dimension/IMapDomainDimension.ts:22


setName()

setName(name): void

It sets the name of the dimension.

Parameters

name: string

Returns

void

Inherited from

IMapDimension.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

IMapDimension.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

IMapDimension.setValue

Source

model/types/dimension/IMapDimension.ts:25