Beispiel #1
0
        public void OnMapViewTouchesEnded(NMapView mapView, NSSet touches, UIEvent @event)
        {
            UITouch touch = touches.AnyObject as UITouch;

            if (touch != null)
            {
                var scrPoint = touch.LocationInView(mapView);
                RequestAddressByCoordination(mapView.FromPoint(scrPoint));
            }
        }