Пример #1
0
        void _map_ViewChangeStarted(object sender, ViewChangeStartedEventArgs e)
        {
            bool WasUserInitiated = pointerIsDragging;

            if (WasUserInitiated)
            {
                ScreenCenter.Text = "*";
            }
        }
Пример #2
0
        private void _map_ViewChangeStarted(object sender, ViewChangeStartedEventArgs e)
        {
            //Stop any processing that might be going on
            InvokeJS("TerminateWorker", null);

            if (!_skipStartEventOnce)
            {
                //Clear Heat Map
                _img.Visibility = Windows.UI.Xaml.Visibility.Collapsed;
                _img.Source     = null;
                _isMoving       = true;
            }
            else
            {
                _skipStartEventOnce = false;
            }
        }