Options
All
  • Public
  • Public/Protected
  • All
Menu

Class Polyline

Hierarchy

  • Polyline

Implements

Index

Constructors

Properties

Constructors

constructor

  • 通过连接字符串中指定的点来创建模型。模型将被“闭合”——即最后一个点将连接到第一个点.

    Example:

    var c = new vjgeo.models.Polyline('-10 0 10 0 0 20'); // 3 coordinates to form a triangle
    

    Parameters

    • numericList: string

      包含数字列表的字符串,可以用空格、逗号或任何允许的非数字分隔).

    • Optional data: IProperties

      属性数据

    Returns Polyline

  • 通过连接字符串中指定的点来创建模型。模型可能处于闭合状态,也可能保持打开状态.

    Example:

    var c = new vjgeo.models.Polyline(false, '-10 0 10 0 0 20'); // 3 coordinates to form a polyline
    

    Parameters

    • isClosed: boolean

      Flag to specify if last point should connect to the first point.

    • numericList: string

      包含数字列表的字符串,可以用空格、逗号或任何允许的非数字分隔).

    • Optional data: IProperties

      属性数据

    Returns Polyline

  • 通过连接数字数组中指定的点来创建模型。模型将被“闭合”——即最后一个点将连接到第一个点.

    Example:

    var c = new vjgeo.models.Polyline([-10, 0, 10, 0, 0, 20]); // 3 coordinates to form a triangle
    

    Parameters

    • coords: number[]

      Array of coordinates.

    • Optional data: IProperties

      属性数据

    Returns Polyline

  • 通过连接数字数组中指定的点来创建模型。模型可能处于闭合状态,也可能保持打开状态.

    Example:

    var c = new vjgeo.models.Polyline(false, [-10, 0, 10, 0, 0, 20]); // 3 coordinates to form a polyline
    

    Parameters

    • isClosed: boolean

      Flag to specify if last point should connect to the first point.

    • coords: number[]

      Array of coordinates.

    • Optional data: IProperties

      属性数据

    Returns Polyline

  • 通过连接点数组中指定的点来创建模型。模型可能处于闭合状态,也可能保持打开状态.

    Example:

    var c = new vjgeo.models.Polyline(false, [[-10, 0], [10, 0], [0, 20]]); // 3 coordinates left open
    

    Parameters

    • isClosed: boolean

      Flag to specify if last point should connect to the first point.

    • points: IPoint[]

      Array of IPoints.

    • Optional data: IProperties

      属性数据

    Returns Polyline

  • 多线.

    Example:

    var c = new vjgeo.models.Polyline(false, [[[-10, 0], [10, 0], [0, 20]],[[-20, 0], [20, 0], [10, 20]]]); // 3 coordinates left open
    

    Parameters

    Returns Polyline

Properties

data

paths

paths: IPathMap

Generated using TypeDoc