標籤:枚舉類型 world 表徵圖 ati pil point icm mic res
所謂路徑漫遊:即建立一個動態對象和一條由多點組成的線,然後讓動態對象沿著線飛行
首先繪製一條線,實際上路徑漫遊是不需要繪製線的,我這裡只是為了確認動態對象是否沿著線路在飛行,代碼如下:
//繪製路徑 double[] cVerticesArray = null; cVerticesArray = new double[] { 116.35, 27.98, 0, 116.45, 28.98, 0, 116.45, 28.11, 0, 116.65, 28.45, 0, }; ILineString pILineString = sgWorld.Creator.GeometryCreator.CreateLineStringGeometry(cVerticesArray); IColor66 color = sgWorld.Creator.CreateColor(255, 0, 0, 125); var polyline = sgWorld.Creator.CreatePolyline(pILineString, color);
接下來建立動態對象,代碼如下:
var dynamicObject = this.sgWorld.Creator.CreateDynamicObject(0, DynamicMotionStyle.MOTION_GROUND_VEHICLE, DynamicObjectType.DYNAMIC_IMAGE_LABEL, @"F:\專案管理\智慧撫州\使用的Fly\data11\汽車表徵圖\整車.png", 50, AltitudeTypeCode.ATC_TERRAIN_RELATIVE, "", "動態對象");
參數說明:
第一個參數0:一組 IRouteWaypoint66對象,後續向動態對象中添加
第二個參數DynamicMotionStyle:移動方式,是一個枚舉類型,具體的效果大家可以去試一下
第三個參數DynamicObjectType:動態物件類型,是一個枚舉類型,該參數也決定了你第四個參數的檔案類型
第四個參數:由於第三個參數選擇的Image_label,這裡我選擇了一張圖片
第五個參數50:檔案縮放大小
第六個參數AltitudeTypeCode:高度模式
動態對象建立完成之後就是建立路徑的拐點,代碼如下:
var wayPoint1 = this.sgWorld.Creator.CreateRouteWaypoint(116.35, 27.98, 0, 2000); var wayPoint2 = this.sgWorld.Creator.CreateRouteWaypoint(116.45, 28.98, 0, 2000); var wayPoint3 = this.sgWorld.Creator.CreateRouteWaypoint(116.55, 28.11, 0, 800); var wayPoint4 = this.sgWorld.Creator.CreateRouteWaypoint(116.65, 28.45, 0, 800);
然後將拐點添加到動態對象中:
dynamicObject.Waypoints.AddWaypoint(wayPoint1); dynamicObject.Waypoints.AddWaypoint(wayPoint2); dynamicObject.Waypoints.AddWaypoint(wayPoint3); dynamicObject.Waypoints.AddWaypoint(wayPoint4); dynamicObject.CircularRoute = false; dynamicObject.RestartRoute(0);
最後調用飛行到對象,就可以實現路徑漫遊效果:
sgWorld.Navigate.FlyTo(dynamicObject.ID, ActionCode.AC_JUMP);
Skyline案頭二次開發之路徑漫遊(C#)