What I wanted to do was upon hovering over another element on the page, was to change the opacity of the Bing Maps V8 Pushpins. I know this is possible through Google Maps as I had it implemented there, but I haven't been able to find such an option with Bing Maps yet.
Currently I am using a modified Pushpin to mark the location of a bus on a map:
Here is an example of the code I use to initialize the pins:
new Microsoft.Maps.Pushpin(map.getCenter(), {
icon: 'img/bus1.png',
anchor: new Microsoft.Maps.Point(14, 44),
visible: false,
text: "",
title: ""
})
The PushpinOptions object doesn't seem to have anything relating to opacity. Is there an official or hack-y way that is used to go about this?