Namespace: extension
- Last UpdatedJul 9, 2025
- 1 minute read
This namespace contains implementations of service stubs and helper functionality to integrate the HERE Maps for JavaScript API with the HERE Fleet Telematics API.
Classes
Namespaces
Type Definitions
-
This function is a predicate, to test each
H.service.extension.dataView.IRow
.<*> from the HERE Fleet Telematics API response. The ID of the according layer is passed as second argument. Returntrue
to keep the row, otherwisefalse
.It must not modify the row! It must be a pure JavaScript function.
Example
function (row, layerId) { // Filter rows from layer "ROAD_GEOM_FC1" with link ID "123" return layerId == 'ROAD_GEOM_FC1' && row.getCell('LINK_ID') == '123'; }