Why is the here map's custom icons not showing up in angular?

Viewed 20
1 Answers

First of all you have defined some functions, but are not calling any of them. Since you are using elements from the DOM, you should probably use angular lifecycle hook AfterViewInit (https://angular.io/api/core/AfterViewInit) to call your initial setup-function, which seems to be loadMap1(data, data1).

After that errors should pop up in the console, which can be handled.

Related