如何设置集成的Google地球上特定位置的坐标?

时间:2012-06-06 18:16:34

标签: c# google-earth

我在我的C#表单中集成了google earth,我想将相机设置为 使用代码选择的坐标ge.setcameraparams();但是 编译后没有错误,当我点击我有的按钮 编写代码,程序退出显示我有无效 参数。为什么会这样? 这是我的代码:

private void button4_Click_1(object sender, EventArgs e) 
{ 
     ge.SetCameraParams(1.3338139, 103.77629, 15.00, 0, 9.00, 10.00, 
 20.00, 1); 
} 

它有什么问题吗?

1 个答案:

答案 0 :(得分:1)

尝试:

ge.SetCameraParams(1.3338139, 103.77629, 15.00, 
EARTHLib.AltitudeModeGE.RelativeToGroundAltitudeGE, 9.00, 10.00, 20.00, 1);