SuperMap.Geometry.Curve

几何对象曲线类。

Inherits

Summary
SuperMap.Geometry.Curve 几何对象曲线类。
Constructor
SuperMap.Geometry.Curve 实例化曲线几何对象类。
Functions
getGeodesicLength 计算几何对象投影到球面上的近似大地测量长度。
getLength 获取曲线的总长度。 Returns: {Float} 曲线对象的长度。

Constructor

SuperMap.Geometry.Curve

实例化曲线几何对象类。

Parameters

point {Array(SuperMap.Geometry.Point)}
var point1 = new SuperMap.Geometry.Point(10,20);
var point2 = new SuperMap.Geometry.Point(30,40);
var curve = new SuperMap.Geometry.Curve([point1,point2]);

Functions

getLength

getLength: function()

获取曲线的总长度。 Returns: {Float} 曲线对象的长度。

getGeodesicLength

getGeodesicLength: function( projection )

计算几何对象投影到球面上的近似大地测量长度。

projection {SuperMap.Projection} 空间参考系统的几何坐标。如果没有设置,默认 WGS84。

Returns

{Float} 几何图形的近似大地测量长度,单位:meters。

getLength: function()
获取曲线的总长度。 Returns: {Float} 曲线对象的长度。
getGeodesicLength: function( projection )
计算几何对象投影到球面上的近似大地测量长度。
点几何对象类。
坐标转换类。这个类封装了与 proj4js 投影对象进行交互的几种方法。
Close