IMapDataManager
geovisto-map / IMapDataManager
Interface: IMapDataManager
The interface declares map data domain manager which and data wrapper.
Author
Jiri Hynek
Extends
Methods
getDataRecordValues()
getDataRecordValues(
dataDomain,dataRecord):unknown[]
It returns values stored of the selected data domain stored in the given data record.
Parameters
• dataDomain: IMapDataDomain
• dataRecord: IMapDataRecord
Returns
unknown[]
Source
model/types/data/IMapDataManager.ts:44
getDataRecords()
getDataRecords():
IMapData
It returns the preprocessed data as a list of data reconds of the same object type.
Returns
Source
model/types/data/IMapDataManager.ts:21
getDataRecordsValues()
getDataRecordsValues(
dataDomain,dataRecords):unknown[]
It returns list of all values of the selected data domain stored in the given data records.
Parameters
• dataDomain: IMapDataDomain
• dataRecords: IMapData
Returns
unknown[]
Source
model/types/data/IMapDataManager.ts:36
getDomain()
getDomain(
name):undefined|IMapDataDomain
The function returns map domains of given name.
Parameters
• name: string
Returns
undefined | IMapDataDomain
Inherited from
Source
model/types/domain/IMapDomainManager.ts:27
getDomainNames()
getDomainNames():
string[]
It sets the data domain which is set to the map dimension.
Returns
string[]
Inherited from
IMapDomainManager.getDomainNames
Source
model/types/domain/IMapDomainManager.ts:20
getDomains()
getDomains():
undefined|IMapDataDomain[]
It returns data domain which is set to the map dimension.
Returns
undefined | IMapDataDomain[]
Inherited from
Source
model/types/domain/IMapDomainManager.ts:13
getOriginalData()
getOriginalData():
unknown
It returns the original input data.
Returns
unknown
Source
model/types/data/IMapDataManager.ts:16
getValues()
getValues(
dataDomain):unknown[]
It returns list of all values of the selected data domain.
Parameters
• dataDomain: IMapDataDomain
Returns
unknown[]