用于在 Google Earth COM API 中侦听 MouseEvents 的样板代码
我正在尝试使用 browsercontrol 和 IGEPlugin 在 Windows 窗体应用程序中获取鼠标的 LAT/LON 位置。 有人有线索吗?
I'm trying to get the LAT/LON position of the mouse in a Windows Forms app using the browsercontrol and IGEPlugin.
Anyone got a clue?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用免费的 Winforms Geplugin 控件库,这并不是太难 - 只需遵循以下简单步骤
您需要告诉 Web 浏览器对象您想要侦听 mousemove 事件
然后您需要设置一些事件处理程序。下面的代码应该很容易阅读。您可以从 DoMouseMove 方法中的 mouseEvent 参数确定鼠标光标的纬度/经度
This isn't too hard if you use the free Winforms Geplugin control librar y- just follow these simple steps
You need to tell the web browser object that you want to listen for mousemove events
Then you need setup some event handlers. The code below should be easy to read. You can determine the lat / long of the mouse cursor from the mouseEvent argument in the DoMouseMove method