How can I get latitude and longitude from place where I tap/click on the map ?
I found example using GeoCoordinate class but it was sample from Win 7 mobile and this class does not exists in Win 8 Metro
I found the Geocoordinate class but it is totaly diffrent and also I can't convert my map to this class like in sample
My sample from Win 7 looks like this
Point p = e.GetPosition(this.MapMain);
GeoCoordinate geo = new GeoCoordinate();
geo = MapMain.ViewportPointToLocation(p);
As for now I've created new project, added bing map and set Tapped action. But I have no idea and can't find anywhere how to get coordinates based on tap
