SceneControl中如何将屏幕坐标转为地理坐标?

SceneControl中如何将屏幕坐标转为地理坐标?
已邀请:

朱新颖

赞同来自:

【解决办法】:
使用ISceneGraph.Locate();方法,返回的point即为地理坐标坐标。

参考代码:


IPoint point = null;
object ppOwner =null;
object ppObject = null;
pSceneGraph.Locate(m_sceneHookHelper.ActiveViewer, X, Y, esriScenePickMode.esriScenePickFastLocation, true, out point, out ppOwner, out ppObject);

要回复问题请先登录注册