This issue may be coming from the javascript mapstraction files themselves, but if anyone can or has found a solution let me know.

Thanks!

Comments

levelos’s picture

Status: Active » Closed (fixed)

This issue lies in the Mapstraction library itself. Unfortunately, some providers are only partially implemented. You can discuss on the mailing list, http://lists.mapstraction.com/listinfo.cgi/mapstraction-mapstraction.com, or code repo, http://code.google.com/p/mapstraction/.

chrsnlsn’s picture

Yeah, I found it, if anyone wants to know to get info bubbles in BING add this line
mmarker.SetTitle(this.infoBubble);
where it is below in that function around line 305 in mxn.microsoft.core.js

Marker: {

toProprietary: function(Marker) {
var mmarker = new VEShape(VEShapeType.Pushpin, this.location.toProprietary('microsoft'));
mmarker.SetTitle(this.infoBubble);
return mmarker;
},

For the custom icon add this line after the new SetTitle line
mmarker.SetCustomIcon(this.iconUrl);