I’m using Bing Maps in my Windows Store app, I display some pushpins with some locations on it.
What I want to do is when the user taps on a pushpin, a popup appears with some info related to the location of that push pin. something similar to the popup when the user taps on my location in Microsoft maps application
How can this be done ?
Very easy, you can use the
Tappedevent of your Pushpin to trigger a popup then use aMapLayer.SetPositionto position your popup see http://msdn.microsoft.com/en-us/library/hh846488.aspxLike this
then
Try using a Popup control or fake one like this
You can either use a Popup control (see MSDN documentation here) or toggle visibility of a Border element to fake a Popup using
Visibility="Collapsed", try this