0
我正在使用「Nokia Here Maps」API嘗試使用工具提示更改標準標記圖標。我試圖使用屬性icon: url
,但圖標不變。諾基亞在這裏映射api:infobubble標記圖標
這裏是我的歸屬性代碼:
marker = new InfoBubbleMarker(data.location.position,infoBubbles,"<font style='font-size:2em'>"+ name</font>",{
eventDelegationContainer: markersContainer,
brush: { color: "#1080dd" },
icon: "../images/icon.png",
text: (markersContainer.objects.getLength() + 1),
draggable: false
});
markersContainer.objects.add(marker);
如何更改標準圖標?