I am switching to HARP engine in the Nuxt 3 project. I use the latest version of HERE maps API for Javascript (1.61.2). Also, I defined Nuxt Plugin of Here Maps based:
export default defineNuxtPlugin( () => {
return {
provide: {
H: HereMap,
}
}
})
and added it to my config file.
During initizalization of Here Map in my .vue file, following the documenatation I use the EngineType HARP:
let maptypes = platform.value.createDefaultLayers({
lg: getLocaleLanguage(props.locale),
lg2: "en",
engineType,
});
But I keep getting the
InvalidArgumentError: H.service.Platform#Xl (Argument #0 HARP engine is not supported, module not found)
Shouldn't be the HARP engine already available in my plugin?