Skip to main content

IMapDimension

geovisto-mapReadme | API


geovisto-map / IMapDimension

Interface: IMapDimension\<T>

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

Author

Jiri Hynek

Extends

Type parameters

T

Methods

findValue()

findValue(value): undefined | T

It finds the value of given string.

Parameters

value: string

Returns

undefined | T

Source

model/types/dimension/IMapDimension.ts:32


getName()

getName(): string

It returns the name of the map domain.

Returns

string

Inherited from

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

Source

model/types/dimension/IMapDimension.ts:18


setName()

setName(name): void

It sets the name of the dimension.

Parameters

name: string

Returns

void

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

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

Source

model/types/dimension/IMapDimension.ts:25