Namespace: platformData

H.service.extension.platformData

This namespace contains classes related to fetching HERE map data using the HERE Fleet Telematics API.

Classes

Service
TileProvider

Type Definitions

H.service.extension.platformData.LayerConfig Object Deprecated : since 3.1.63.0

The map data layer configuration options from the HERE Fleet Telematics API.

Properties:
Name Type Argument Description
layerId string

The ID of the data layer, see HERE Fleet Telematics API for more details. For backward compatibility with older releases of the API you can pass this argument also under layer property name.

level number

The storage level of the data layer.

rowFilter H.service.extension.RowFilter <optional>

The optional function to filter rows from a tile response. It must be a pure function.

rowFilterContext Object <optional>

The execution context of the rowFilter. A this within rowFilter references the specified context object. For performance reasons it is recommended that this object contains only values that are necessary for the execution. Functions are not allowed.

columns Array.<string> <optional>

List of column names to keep for each row. By default all columns are kept.

H.service.extension.platformData.Table H.service.extension.dataView.ITable.<(string|Array.<(!Uint16Array|!Float32Array)>), (!Object.<string, *>|undefined)> Deprecated : since 3.1.63.0

An object to provide read access to the rows, columns and cells of a HERE Fleet Telematics API data layer. The type definition implements H.service.extension.dataView.ITable interface