Пример #1
0
        private void Mh_OnMouseMove(oepMouseEventHandler handle, oepVec3f p, int keybutton)
        {
            string lat = this.Resources["lat"] as string;
            string lng = this.Resources["lat"] as string;
            string alt = this.Resources["lat"] as string;

            this.coords.Dispatcher.Invoke(new Action(() => { this.coords.Text = lat + p.x.ToString() + lng + p.y.ToString() + alt + p.z.ToString(); }));
        }
Пример #2
0
        private void Ax_OnEarthViewReady(bool bready)
        {
            Project.CurrentMap = StartMap;
            oepMouseEventHandler mh = new oepMouseEventHandler();

            mh.Keep         = true;
            mh.OnMouseMove += Mh_OnMouseMove;
            ax.render.Handlers.Add(mh);
        }