I'm writing a simple standalone mapping app, and need to detect which pushpin a user has clicked on. I've tried the following
MapPoint.FindResults findresults = Map.ObjectsFromPoint(e.x, e.y);
object index = null;
for (int i = 0; i < findresults.Count; i++)
{
... etc
}
but it doesn't return any pushpins, only streetnames/countries, etc. When you click on a map, you get a popup with the things close to where you clicked, including pushpins, so it must be possible.
thanks, A