Map tap event / mouse down event in windows phone 8?
问题 I am using the windows phone emulator. I wrote a very simple program: draw a marker on the map when the user tap the map once. Then I used map_tap event, and get the tapped location as follows, private void map_Tap(object sender, System.Windows.Input.GestureEventArgs e) { Point p = e.GetPosition(null); GeoCoordinate s = map.ConvertViewportPointToGeoCoordinate(p); Ellipse myCircle = new Ellipse(); myCircle.Fill = new SolidColorBrush(Colors.Blue); myCircle.Height = 20; myCircle.Width = 20;