I am trying to change a marker image on hover in here maps. Im doing in this way:
noiseMarker.addEventListener('pointerenter', changeMarker);
function changeMarker(evt) {
evt.target.getIcon().c.src = activeMarker;
}
In my marker object I can see that the image source has been changed, but on the map it is not showed. Is there anyone with experience in here maps that can help me?