Example #1
0
        private void OnClickInsertMarker(object sender, EventArgs e)
        {
            if (_mapMarker?.IsDisposed == false)
            {
                return;
            }

            _mapMarker = new MapMarker(_currPoint.X, _currPoint.Y, _currMapInt)
            {
                TopMost = true
            };

            _mapMarker.Show();
        }