com.supermap.web.iServerJava6R.networkAnalystServices
public class ComputeWeightMatrixParameters
继承 ComputeWeightMatrixParameters Inheritance Object

耗费矩阵分析参数类.

该类用于设置耗费矩阵分析(ComputeWeightMatrixService)所需的参数。

另请参见

ComputeWeightMatrixService


公共属性
  属性 定义方
    isAnalyzeById : Boolean
是否通过结点 ID 号来指定耗费矩阵结点,默认为 false,即通过坐标指定。
ComputeWeightMatrixParameters
    nodes : Array
要计算耗费矩阵的点数组,必设字段.
ComputeWeightMatrixParameters
    parameter : TransportationAnalystParameter
交通网络分析通用参数 TransportationAnalystParameter。通过本类设置耗费字段、障碍边、障碍点等。
ComputeWeightMatrixParameters
公共方法
  方法 定义方
   
初始化 ComputeWeightMatrixParameters 类的新实例。
ComputeWeightMatrixParameters
属性详细信息
isAnalyzeById 属性
isAnalyzeById:Boolean

是否通过结点 ID 号来指定耗费矩阵结点,默认为 false,即通过坐标指定。


Implementation
    public function get isAnalyzeById():Boolean
    public function set isAnalyzeById(value:Boolean):void
nodes 属性  
nodes:Array

要计算耗费矩阵的点数组,必设字段.

ComputeWeightMatrixParameters.isAnalyzeById = false 时,nodes 应为点的坐标(Point2D)数组;当 ComputeWeightMatrixParameters.isAnalyzeById = true 时,nodes 应为结点的 ID 数组。


Implementation
    public function get nodes():Array
    public function set nodes(value:Array):void
parameter 属性  
parameter:TransportationAnalystParameter

交通网络分析通用参数 TransportationAnalystParameter。通过本类设置耗费字段、障碍边、障碍点等。


Implementation
    public function get parameter():TransportationAnalystParameter
    public function set parameter(value:TransportationAnalystParameter):void
构造函数详细信息
ComputeWeightMatrixParameters () 构造函数
public function ComputeWeightMatrixParameters()

初始化 ComputeWeightMatrixParameters 类的新实例。