private void VEPushPin_Click(object sender, VEPushPinClickedEventArgs e)
        {
            VEPushPin pin = sender as VEPushPin;

            if (pin == null)
            {
                return;
            }
            map.FlyTo(pin.LatLong, -90, 0, 300, null);
        }
        private void SurfacePushPin_Click(object sender, VEPushPinClickedEventArgs e)
        {
            VEPushPin pin = sender as VEPushPin;

            map.FlyTo(pin.LatLong, -90, 0, 300, null);
        }
 private void VEPushPin_Click(object sender, VEPushPinClickedEventArgs e)
 {
     VEPushPin pin = sender as VEPushPin;
     map.FlyTo(pin.LatLong, -90, 0, 300, null);
 }
        private void VEPushPin_Click(object sender, VEPushPinClickedEventArgs e)
        {
            Point? ptTest = Map.LatLongToPoint(Map.VELatLong);
            VELatLong latTest = Map.PointToLatLong(ptTest);

            //VEPushPin pin = sender as VEPushPin;
            //Map.FlyTo(pin.LatLong, -90, 0, 300, null);
        }
 void ExpandingSurfaceVEPushPin_Click(object sender, VEPushPinClickedEventArgs e)
 {
     e.Handled = true;
     ToggleDetailState();
 }