com.supermap.mobjects.situationsimulation

类 GeoEntitySimulation

  • java.lang.Object
    • com.supermap.data.InternalHandle
      • com.supermap.data.InternalHandleDisposable
        • com.supermap.mobjects.situationsimulation.GeoEntitySimulation
  • 所有已实现的接口:
    IDisposable


    public class GeoEntitySimulation
    extends com.supermap.data.InternalHandleDisposable
    态势仿真特效类
    • 构造器详细资料

      • GeoEntitySimulation

        public GeoEntitySimulation()
        构造函数
    • 方法详细资料

      • dispose

        public void dispose()
        释放对象
      • targetAttack

        public boolean targetAttack(GeoEntity pShellGeoEntity,
                                    GeoEntity pAttrackerGeoEntity,
                                    GeoEntity pSuffererGeoEntity,
                                    Point3Ds ptsPath,
                                    int nFlyTime,
                                    int nDelayTime,
                                    boolean bReset,
                                    double dModelScale,
                                    String strSuffererFinishModelPath,
                                    double dBlastRadius,
                                    int nBlastDuringTime,
                                    double dFireRadius,
                                    int nFireDuringTime,
                                    GeoStyle3D pTrackLineStyle3D,
                                    long nShowPointCount,
                                    SignPro pSignPro)
        目标攻击(路径点为坐标点)。
        参数:
        pShellGeoEntity - 炮弹实体对象。
        pAttrackerGeoEntity - 攻击者实体对象。
        pSuffererGeoEntity - 被攻击(被摧毁)者实体对象。
        ptsPath - 炮弹飞行路径(三维空间经纬度坐标点)。
        nFlyTime - 炮弹飞行时间(单位: 秒)。
        nDelayTime - 攻击者多久之后发射炮弹(单位: 秒)。
        bReset - 结束后是否复位。
        dModelScale - 炮弹缩放倍数。
        strSuffererFinishModelPath - 被摧毁后的模型路径。
        dBlastRadius - 目标到达终点的爆炸粒子效果的半径(单位: 米)。
        nBlastDuringTime - 爆炸效果的持续时间(单位: 秒)。
        dFireRadius - 目标到达终点的火焰粒子效果的半径(单位: 米)。
        nFireDuringTime - 火焰效果的持续时间(单位: 秒)。
        pTrackLineStyle3D - 轨迹线样式。
        nShowPointCount - 轨迹线长度。
        pSignPro - 标牌属性。
        返回:
        成功返回true,失败返回false
      • targetAttack

        public boolean targetAttack(GeoEntity pShellGeoEntity,
                                    GeoEntity pAttrackerGeoEntity,
                                    GeoEntity pSuffererGeoEntity,
                                    Point2Ds ptsRatioPath,
                                    int nFlyTime,
                                    int nDelayTime,
                                    boolean bReset,
                                    double dModelScale,
                                    String strSuffererFinishModelPath,
                                    double dBlastRadius,
                                    int nBlastDuringTime,
                                    double dFireRadius,
                                    int nFireDuringTime,
                                    GeoStyle3D pTrackLineStyle3D,
                                    long nShowPointCount,
                                    SignPro pSignPro)
        目标攻击(路径为比例点(起点和终点比例,相对高度))。
        参数:
        pShellGeoEntity - 炮弹实体对象。
        pAttrackerGeoEntity - 攻击者实体对象。
        pSuffererGeoEntity - 被攻击(被摧毁)者实体对象。
        ptsRatioPath - 炮弹飞行路径(起点和终点比例,相对高度)。
        nFlyTime - 炮弹飞行时间(单位: 秒)。
        nDelayTime - 攻击者多久之后发射炮弹(单位: 秒)。
        bReset - 结束后是否复位。
        dModelScale - 炮弹缩放倍数。
        strSuffererFinishModelPath - 被摧毁后的模型路径。
        dBlastRadius - 目标到达终点的爆炸粒子效果的半径(单位: 米)。
        nBlastDuringTime - 爆炸效果的持续时间(单位: 秒)。
        dFireRadius - 目标到达终点的火焰粒子效果的半径(单位: 米)。
        nFireDuringTime - 火焰效果的持续时间(单位: 秒)。
        pTrackLineStyle3D - 轨迹线样式。
        nShowPointCount - 轨迹线长度。
        pSignPro - 标牌属性。
        返回:
        成功返回true,失败返回false
      • targetMove

        public boolean targetMove(GeoEntity pGeoEntity,
                                  GeoEntity pTargetGeoEntity,
                                  Point3Ds ptsPath,
                                  int nTime,
                                  int nDelayTime,
                                  boolean bReset,
                                  String strModelPath,
                                  double dModelScale)
        指定地理实体,在指定时间内,沿着指定路经运动到目的地,运动过程中使用指定模型显示
        参数:
        pGeoEntity - 实体对象
        pTargetGeoEntity - 目标实体对象(此对象设置为null时,必须设置运动轨迹的控制点)
        ptsPath - 运动轨迹的控制点
        nTime - 运动的时间,单位秒
        nDelayTime - 多久之后开始移动(单位: 秒)
        bReset - 移动停止后是否复位
        strModelPath - 运动中模型文件的路径
        dModelScale - 运动中模型的缩放(为0则表示与静止状态缩放保持一致)
        返回:
        成功返回true,失败返回false
      • targetChange

        public boolean targetChange(GeoEntity pGeoEntity,
                                    String strModelPath,
                                    double dModelScale,
                                    double dDelayTime)
        指定地理实体,修改地理实体的模型
        参数:
        pGeoEntity - 实体对象
        strModelPath - 模型文件的路径
        dModelScale - 模型的缩放,若为0,则使用变化前模型缩放
        dDelayTime - 延时时间(单位:秒)
        返回:
        成功返回true,失败返回false
      • targetVisible

        public boolean targetVisible(GeoEntity pGeoEntity,
                                     boolean bVisible,
                                     double dDelayTime)
        指定地理实体,修改地理实体的显隐
        参数:
        pGeoEntity - 实体对象
        bVisible - 显隐
        dDelayTime - 延时时间(单位:秒)
        返回:
        成功返回true,失败返回false
      • addSign

        public boolean addSign(GeoEntity pGeoEntity,
                               SignPro pSignPro,
                               Point3D ptOffset)
        给指定地理实体添加标牌
        参数:
        pGeoEntity - 实体对象
        pSignPro - 标牌属性
        ptOffset - 偏移量
        返回:
        成功返回true,失败返回false
      • removeSign

        public boolean removeSign(GeoEntity pGeoEntity)
        移除指定地理实体的标牌
        参数:
        pGeoEntity - 实体对象
        返回:
        成功返回true,失败返回false
      • addAttackLine

        public boolean addAttackLine(GeoEntity pGeoEntity,
                                     GeoEntity pTargetGeoEntity,
                                     String strModelPath,
                                     double dModelScale,
                                     Point2Ds ptsRatioPath,
                                     int nTime,
                                     GeoStyle3D pTrackLineStyle3D)
        为指定实体添加打击线特效
        参数:
        pGeoEntity - 实体对象
        pTargetGeoEntity - 目标实体对象
        strModelPath - 模型路径
        dModelScale - 模型缩放
        ptsRatioPath - 目标运动轨迹的控制点(起点和终点比例,相对高度)
        nTime - 目标运动的时间(单位:秒)
        pTrackLineStyle3D - 打击线样式
        返回:
        成功返回true,失败返回false
      • removeAttackLine

        public boolean removeAttackLine(GeoEntity pGeoEntity)
        移除打击线
        参数:
        pGeoEntity - 实体对象
        返回:
        成功返回true,失败返回false
      • addScanWave

        public boolean addScanWave(GeoEntity pGeoEntity,
                                   double dLength,
                                   double dWidth,
                                   double dHeight,
                                   double dAngle,
                                   Point3D ptRotation,
                                   int nSectionSlices,
                                   GeoStyle3D geoStyle3D,
                                   ArrayList<String> arrTexturePath,
                                   ArrayList<Double> arrVTiling,
                                   ArrayList<Double> arrSpeedV,
                                   ArrayList<UVWMappingMode> arrMappingMode,
                                   Point3D ptOffset)
        为指定实体添加扫描波
        参数:
        pGeoEntity - 实体对象
        dLength - 扫描波长度
        dWidth - 扫描波宽度
        dHeight - 扫描波高度
        dAngle - 扫描角度(角度单位)
        ptRotation - 旋转角度
        nSectionSlices - 界面正多边形拆分次数
        geoStyle3D - 样式
        arrTexturePath - 材质纹理图片文件路径列表
        arrVTiling - 材质重复次数列表
        arrSpeedV - 材质运动速度列表
        arrMappingMode - 纹理映射模式列表。
        ptOffset - 扫描波偏移量(偏移量=偏移参数*地理实体大小)
        返回:
        成功返回true,失败返回false
      • removeScanWave

        public boolean removeScanWave(GeoEntity pGeoEntity)
        移除扫描波
        参数:
        pGeoEntity - 实体对象
        返回:
        成功返回true,失败返回false
      • addTrackLine

        public boolean addTrackLine(GeoEntity pGeoEntity,
                                    int nTrackType,
                                    GeoStyle pTrackStyle,
                                    int nShowPointCount,
                                    double dStreamerWidth,
                                    Point3D ptOffset)
        为指定实体添加轨(航)迹线
        参数:
        pGeoEntity - 实体对象
        nTrackType - 轨迹类型
        pTrackStyle - 轨迹样式
        nShowPointCount - 最大显示点数
        dStreamerWidth - 飘带宽度
        ptOffset - 偏移量
        返回:
        成功返回true,失败返回false
      • removeTrackLine

        public boolean removeTrackLine(GeoEntity pGeoEntity)
        移除轨(航)迹线
        参数:
        pGeoEntity - 实体对象
        返回:
        成功返回true,失败返回false
      • addScanCone

        public boolean addScanCone(GeoEntity pGeoEntity,
                                   GeoStyle3D pStyle3D,
                                   double dOutRadius,
                                   int nType,
                                   double dInRadius,
                                   double dVstartAngle,
                                   double dVendAngle,
                                   double dHConeAngle,
                                   double dHAngle,
                                   double dVAngle,
                                   Point3D ptOffset)
        为指定实体添加扫描锥体
        参数:
        pGeoEntity - 实体对象
        pStyle3D - 扫描锥体样式
        dOutRadius - 外圆半径
        nType - 扫描锥体类型
        dInRadius - 内圆半径
        dVstartAngle - 锥体竖直方向起始角度
        dVendAngle - 锥体竖直方向结束角度
        dHConeAngle - 锥体水平方向角度范围
        dHAngle - 水平探测角度范围
        dVAngle - 竖直探测角度范围
        ptOffset - 偏移量
        返回:
        成功返回true,失败返回false
      • removeScanCone

        public boolean removeScanCone(GeoEntity pGeoEntity)
        移除扫描锥体
        参数:
        pGeoEntity - 实体对象
        返回:
        成功返回true,失败返回false
      • addDetectionCone

        public boolean addDetectionCone(GeoEntity pGeoEntity,
                                        GeoStyle3D pStyle3D,
                                        Point3D ptBottom,
                                        double dRadius,
                                        Point3D ptOffset)
        为指定实体添加探测锥体
        参数:
        pGeoEntity - 实体对象
        pStyle3D - 探测锥体风格
        ptBottom - 地面圆心坐标
        dRadius - 地面圆半径
        ptOffset - 偏移量
        返回:
        成功返回true,失败返回false
      • removeDetectionCone

        public boolean removeDetectionCone(GeoEntity pGeoEntity)
        移除探测锥体
        参数:
        pGeoEntity - 实体对象
        返回:
        成功返回true,失败返回false
      • addTubularCommLinkLine

        public boolean addTubularCommLinkLine(GeoEntity pStartGeoEntity,
                                              GeoEntity pEndGeoEntity,
                                              double dStartDimeter,
                                              double dEndDimeter,
                                              int nSectionSlices,
                                              GeoStyle3D geoStyle3D,
                                              ArrayList<String> arrTexturePath,
                                              ArrayList<Double> arrVTiling,
                                              ArrayList<Double> arrSpeedV,
                                              ArrayList<UVWMappingMode> arrMappingMode,
                                              Point3D ptOffset)
        为指定实体添加管状通信链路线
        参数:
        pStartGeoEntity - 起点实体对象
        pEndGeoEntity - 终点实体对象
        dStartDimeter - 起点直径
        dEndDimeter - 终点直径
        nSectionSlices - 界面正多边形拆分次数
        geoStyle3D - 样式
        arrTexturePath - 材质纹理图片文件路径列表
        arrVTiling - 材质重复次数列表
        arrSpeedV - 材质运动速度列表
        arrMappingMode - 纹理映射模式列表
        ptOffset - 链路两端偏移量(偏移量=偏移参数*地理实体大小)
        返回:
        成功返回true,失败返回false
      • removeTubularCommLinkLine

        public boolean removeTubularCommLinkLine(GeoEntity pStartGeoEntity,
                                                 GeoEntity pEndGeoEntity)
        移除连续的管状间隔通信链路
        参数:
        pStartGeoEntity - 起点实体对象
        pEndGeoEntity - 终点实体对象
        返回:
        成功返回true,失败返回false
      • addArrowCommLinkLine

        public boolean addArrowCommLinkLine(GeoEntity pStartGeoEntity,
                                            GeoEntity pEndGeoEntity,
                                            String strArrorTexturePath,
                                            double dMinWidth,
                                            float fSpeed,
                                            double dVTilingWidth,
                                            Point3D ptOffset)
        为指定实体添加箭头通信链路线
        参数:
        pStartGeoEntity - 起点实体对象
        pEndGeoEntity - 终点实体对象
        strArrorTexturePath - 纹理图片路径
        dMinWidth - 设置链路显示时的最小宽度
        fSpeed - 纹理图片在线上的流动速度
        dVTilingWidth - 设置材质循环一次的宽度
        ptOffset - 偏移量
        返回:
        成功返回true,失败返回false
      • removeArrowCommLinkLine

        public boolean removeArrowCommLinkLine(GeoEntity pStartGeoEntity,
                                               GeoEntity pEndGeoEntity)
        移除PBR形式的流动箭头
        参数:
        pStartGeoEntity - 起点实体对象
        pEndGeoEntity - 终点实体对象
        返回:
        成功返回true,失败返回false
      • addBasicCommLinkLine

        public boolean addBasicCommLinkLine(GeoEntity pStartGeoEntity,
                                            GeoEntity pEndGeoEntity,
                                            GeoStyle3D pLinkLineStyle3D,
                                            GeoStyle3D pSignalLineStyle3D,
                                            double dSignalSpeed,
                                            double dSignalLengthRatio,
                                            boolean bBothWay,
                                            Point3D ptOffset)
        为指定实体添加基础通信链路线
        参数:
        pStartGeoEntity - 起点实体对象
        pEndGeoEntity - 终点实体对象
        pLinkLineStyle3D - 连接线样式
        pSignalLineStyle3D - 信号线样式
        dSignalSpeed - 信号速度 默认光速 3*10^8 m/s
        dSignalLengthRatio - 信号线默认长度(总长度的1/10)
        bBothWay - 是否双向流动
        ptOffset - 偏移量
        返回:
        成功返回true,失败返回false
      • removeBasicCommLinkLine

        public boolean removeBasicCommLinkLine(GeoEntity pStartGeoEntity,
                                               GeoEntity pEndGeoEntity)
        移除基础通信链路线
        参数:
        pStartGeoEntity - 起点实体对象
        pEndGeoEntity - 终点实体对象
        返回:
        成功返回true,失败返回false
      • addMeteorCommLinkLine

        public boolean addMeteorCommLinkLine(GeoEntity pStartGeoEntity,
                                             GeoEntity pEndGeoEntity,
                                             GeoStyle3D pLinkLineStyle3D,
                                             GeoStyle3D pSignalLineStyle3D,
                                             double dSignalSpeed,
                                             double dSignalLengthRatio,
                                             boolean bBothWay,
                                             Point3D ptOffset)
        为指定实体添加流星通信链路线
        参数:
        pStartGeoEntity - 起点实体对象
        pEndGeoEntity - 终点实体对象
        pLinkLineStyle3D - 连接线样式
        pSignalLineStyle3D - 信号线样式
        dSignalSpeed - 信号速度
        dSignalLengthRatio - 信号线默认长度
        ptOffset - 偏移量
        返回:
        成功返回true,失败返回false
      • removeMeteorCommLinkLine

        public boolean removeMeteorCommLinkLine(GeoEntity pStartGeoEntity,
                                                GeoEntity pEndGeoEntity)
        移除流星通信链路线
        参数:
        pStartGeoEntity - 起点实体对象
        pEndGeoEntity - 终点实体对象
        返回:
        成功返回true,失败返回false
      • addFlowCommLinkLine

        public boolean addFlowCommLinkLine(GeoEntity pStartGeoEntity,
                                           GeoEntity pEndGeoEntity,
                                           Color colorValue3DLine,
                                           Color colorValue3DGap,
                                           double dLineWidth,
                                           double dGapLength,
                                           Point3D ptOffset,
                                           int shortDashPattern)
        为指定实体添加流动通信链路线
        参数:
        pStartGeoEntity - 起点实体对象
        pEndGeoEntity - 终点实体对象
        colorValue3DLine - 流动线颜色
        colorValue3DGap - 间隔线颜色
        dLineWidth - 流动线线宽
        dGapLength - 间隔线线宽
        ptOffset - 偏移量
        shortDashPattern - 线型(默认255)
        返回:
        成功返回true,失败返回false
      • removeFlowCommLinkLine

        public boolean removeFlowCommLinkLine(GeoEntity pStartGeoEntity,
                                              GeoEntity pEndGeoEntity)
        移除流动通信链路线
        参数:
        pStartGeoEntity - 起点实体对象
        pEndGeoEntity - 终点实体对象
        返回:
        成功返回true,失败返回false
      • addWake

        public boolean addWake(GeoEntity pGeoEntity,
                               double dLength,
                               double dWidth)
        为指定实体添加尾浪
        参数:
        pGeoEntity - 实体对象
        dLength - 长度
        dWidth - 宽度
        返回:
        成功返回true,失败返回false
      • removeWake

        public boolean removeWake(GeoEntity pGeoEntity)
        移除尾浪
        参数:
        pGeoEntity - 实体对象
        返回:
        成功返回true,失败返回false
      • addRotorWash

        public boolean addRotorWash(GeoEntity pGeoEntity,
                                    double dRotorDiameter)
        为指定实体添加沉船涟漪
        参数:
        pGeoEntity - 实体对象
        dRotorDiameter - 涟漪直径
        返回:
        成功返回true,失败返回false
      • removeRotorWash

        public boolean removeRotorWash(GeoEntity pGeoEntity)
        移除沉船涟漪
        参数:
        pGeoEntity - 实体对象
        返回:
        成功返回true,失败返回false
      • addTailflame

        public boolean addTailflame(GeoEntity pGeoEntity,
                                    double dCrossDiameter,
                                    Point3D ptOffset)
        为指定实体添加尾焰
        参数:
        pGeoEntity - 实体对象
        dCrossDiameter - 直径
        ptOffset - 偏移量
        返回:
        成功返回true,失败返回false
      • removeTailflame

        public boolean removeTailflame(GeoEntity pGeoEntity)
        移除尾焰
        参数:
        pGeoEntity - 实体对象
        返回:
        成功返回true,失败返回false
      • addTailgas

        public boolean addTailgas(GeoEntity pGeoEntity,
                                  double dCrossDiameter,
                                  Point3D ptOffset)
        为指定实体添加尾气
        参数:
        pGeoEntity - 实体对象
        dCrossDiameter - 直径
        ptOffset - 偏移量
        返回:
        成功返回true,失败返回false
      • removeTailgas

        public boolean removeTailgas(GeoEntity pGeoEntity)
        移除尾气
        参数:
        pGeoEntity - 实体对象
        返回:
        成功返回true,失败返回false
      • addBlast

        public boolean addBlast(GeoEntity pGeoEntity,
                                double dBlastRadius,
                                Point3D ptOffset)
        为指定实体添加爆炸效果
        参数:
        pGeoEntity - 实体对象
        dBlastRadius - 半径
        ptOffset - 偏移量
        返回:
        成功返回true,失败返回false
      • removeBlast

        public boolean removeBlast(GeoEntity pGeoEntity)
        移除爆炸效果
        参数:
        pGeoEntity - 实体对象
        返回:
        成功返回true,失败返回false
      • addFiresmoke

        public boolean addFiresmoke(GeoEntity pGeoEntity,
                                    double dFiresmokeRadius,
                                    Point3D ptOffset)
        为指定实体添加火焰
        参数:
        pGeoEntity - 实体对象
        dFiresmokeRadius - 半径
        ptOffset - 偏移量
        返回:
        成功返回true,失败返回false
      • removeFiresmoke

        public boolean removeFiresmoke(GeoEntity pGeoEntity)
        移除火焰
        参数:
        pGeoEntity - 实体对象
        返回:
        成功返回true,失败返回false
      • addCustomRadar

        public boolean addCustomRadar(GeoEntity pGeoEntity,
                                      Point2Ds pts2DsModelSection,
                                      double dRadarRadius,
                                      Color sphereColor,
                                      Color lineColor,
                                      boolean bGridShow,
                                      double dPitchAngle,
                                      RadarScanState[] arrRadarScanParam,
                                      double dScanSpeed,
                                      PolygonFrontFace eCullModeType)
        为指定实体添加自定义雷达
        参数:
        pGeoEntity - 实体对象
        pts2DsModelSection - 切面点串。
        dRadarRadius - 雷达半径(单位:千米)。
        sphereColor - 包络填充色。
        lineColor - 外包络线颜色。
        bGridShow - 外包络线显示标志。
        dPitchAngle - 切面旋转角度。
        arrRadarScanParam - 扫描瓣。
        dScanSpeed - 扫描瓣速度。
        eCullModeType - 渲染方式。
        返回:
        成功返回true,失败返回false
      • removeCustomRadar

        public boolean removeCustomRadar(GeoEntity pGeoEntity)
        移除自定义雷达
        参数:
        pGeoEntity - 实体对象
        返回:
        成功返回true,失败返回false
      • addMechanicalRadar

        public boolean addMechanicalRadar(GeoEntity pGeoEntity,
                                          double dRadarRadius,
                                          Color sphereColor,
                                          Color lineColor,
                                          boolean bGridShow,
                                          RadarScanState[] arrRadarScanParam,
                                          double dScanSpeed,
                                          PolygonFrontFace eCullModeType)
        为指定实体添加机械雷达
        参数:
        pGeoEntity - 实体对象
        dRadarRadius - 雷达半径(单位:千米)。
        sphereColor - 圆球包络填充色。
        lineColor - 外包络线颜色。
        bGridShow - 外包络线显示标志。
        arrRadarScanParam - 扫描瓣。
        dScanSpeed - 扫描瓣速度。
        eCullModeType - 渲染方式。
        返回:
        成功返回true,失败返回false
      • removeMechanicalRadar

        public boolean removeMechanicalRadar(GeoEntity pGeoEntity)
        移除机械雷达
        参数:
        pGeoEntity - 实体对象
        返回:
        成功返回true,失败返回false
      • addPieRadar

        public boolean addPieRadar(GeoEntity pGeoEntity,
                                   double dRadarRadius,
                                   Color sphereColor,
                                   Color lineColor,
                                   boolean bGridShow,
                                   double dPitchAngle,
                                   RadarScanState[] arrRadarScanParam,
                                   double dScanSpeed,
                                   PolygonFrontFace eCullModeType)
        为指定实体添加饼状雷达
        参数:
        pGeoEntity - 实体对象
        dRadarRadius - 雷达半径(单位:千米)。
        sphereColor - 圆球包络填充色。
        lineColor - 外包络线颜色。
        bGridShow - 外包络线显示标志。
        dPitchAngle - 竖直方向的探视角度。
        arrRadarScanParam - 扫描瓣。
        dScanSpeed - 扫描瓣速度。
        eCullModeType - 渲染方式。
        返回:
        成功返回true,失败返回false
      • removePieRadar

        public boolean removePieRadar(GeoEntity pGeoEntity)
        移除机械雷达
        参数:
        pGeoEntity - 实体对象
        返回:
        成功返回true,失败返回false
      • addCircleRadar

        public boolean addCircleRadar(GeoEntity pGeoEntity,
                                      double dCircleRadiusOuter,
                                      Color sphereColor,
                                      boolean bGridShow,
                                      double dCircleRadiusInner,
                                      double dClockAngleMin,
                                      double dClockAngleMax,
                                      double dHalfAngleInner,
                                      double dHalfAngleOuter,
                                      RadarScanState[] arrRadarScanParam,
                                      double dScanSpeed,
                                      PolygonFrontFace eCullModeType)
        为指定实体添加球形雷达
        参数:
        pGeoEntity - 实体对象
        dCircleRadiusOuter - 外圆半径(单位:千米)。
        sphereColor - 圆球包络填充色。
        bGridShow - 外包络线显示标志。
        dCircleRadiusInner - 内圆半径(km)。
        dClockAngleMin - 内圆周角[-360, 360]。
        dClockAngleMax - 外圆周角[-360, 360]。
        dHalfAngleInner - 内锥角[-90, 90]。
        dHalfAngleOuter - 外锥角[-90, 90]。
        arrRadarScanParam - 扫描瓣。
        dScanSpeed - 扫描瓣速度。
        eCullModeType - 渲染方式。
        返回:
        成功返回true,失败返回false
      • removeCircleRadar

        public boolean removeCircleRadar(GeoEntity pGeoEntity)
        移除球形雷达
        参数:
        pGeoEntity - 实体对象
        返回:
        成功返回true,失败返回false

Copyright © 2021–2024 SuperMap. All rights reserved.