示例#1
0
        protected virtual void OnTap(TapEventArgs e)
        {
            var handler = Tap;

            if (handler != null)
            {
                handler(this, e);
            }
        }
示例#2
0
 private void Map_Tap(object sender, TapEventArgs e)
 {
     UpdatePosition(e.Position, map.VisibleRegion != null ? map.VisibleRegion.Radius : new Distance(300));
 }