new SuperMap.Geometry.GeoText(x, y, text)
Name | Type | Description |
---|---|---|
x |
float |
x-坐标,必设参数。 |
y |
float |
y-坐标,必设参数。 |
text |
string |
标签中的文本内容,必设参数。 |
Extends
Members
-
boundsSuperMap.Bounds
-
几何对象的范围
-
bsInfoObject
-
标签范围的基础信息,包含下面2个属性。
- w: bounds 的宽;
- h: bounds 的高度;
-
idstring
-
此几何对象的唯一标示符。
-
parentSuperMap.Geometry
-
This is set when a Geometry is added as component of another geometry
-
SRIDinterger
-
投影坐标参数。通过该参数,服务器判断Geometry对象的坐标参考系是否与数据集相同,如果不同,则在数据入库前进行投影变换。
Example
var geometry= new SuperMap.Geometry(); geometry. SRID=4326;
-
textstring
-
标签中的文本内容。
-
xfloat
-
横坐标。
-
yfloat
-
纵坐标。
Methods
-
calculateBounds()
common/commontypes/geometry/GeoText.js, line 93 -
计算标签对象的范围。
-
inherited clearBounds()
common/commontypes/Geometry.js, line 81 -
清除几何对象的bounds。 如果该对象有父类,也会清除父类几何对象的bounds。
-
clone(){SuperMap.Geometry.GeoText}
common/commontypes/geometry/GeoText.js, line 80 -
克隆标签对象。
Returns:
Type Description SuperMap.Geometry.GeoText 克隆后的标签对象。 -
destroy()
common/commontypes/geometry/GeoText.js, line 60 -
销毁文本标签类。
-
inherited extendBounds(newBounds)
common/commontypes/Geometry.js, line 94 -
Extend the existing bounds to include the new bounds. If geometry's bounds is not yet set, then set a new Bounds.
Name Type Description newBounds
SuperMap.Bounds -
-
inherited getArea(){float}
common/commontypes/Geometry.js, line 143 -
计算几何对象的面积 ,此方法需要在子类中定义 。
Returns:
Type Description float The area of the collection by summing its parts -
inherited getBounds(){SuperMap.Bounds}
common/commontypes/Geometry.js, line 111 -
获得几何图形的边界。如果没有设置边界,可通过计算获得。
Returns:
Type Description SuperMap.Bounds 返回的几何对象的边界。 -
getCentroid(){SuperMap.Geometry.Point}
common/commontypes/geometry/GeoText.js, line 71 -
获取标签对象的质心。
Returns:
Type Description SuperMap.Geometry.Point 标签对象的质心。 -
getLabelPxBoundsByLabel(locationPixel, labelWidth, labelHeight, style){SuperMap.Bounds}
common/commontypes/geometry/GeoText.js, line 102 -
根据绘制好的标签获取文字标签的像素范围,参数的单位是像素;此方法相对于 getLabelPxBoundsByText 效率较低,但支持所有格式的文本。
Name Type Description locationPixel
Object 标签的位置点,该对象含有属性x(横坐标),属性y(纵坐标)。
labelWidth
string 标签的宽度,如:“90px”。
labelHeight
string 标签的高度。
style
Object 标签的style。
Returns:
Type Description SuperMap.Bounds 标签的像素范围。 -
getLabelPxBoundsByText(locationPixel, style){SuperMap.Bounds}
common/commontypes/geometry/GeoText.js, line 175 -
根据文本内容获取文字标签的像素范围
Name Type Description locationPixel
Object 标签的位置点,该对象含有属性x(横坐标),属性y(纵坐标)。
style
Object 标签的样式
Returns:
Type Description SuperMap.Bounds 标签的像素范围。 -
getLabelPxSize(style){Object}
common/commontypes/geometry/GeoText.js, line 242 -
获取label的像素大小
Name Type Description style
Object 标签样式。
Returns:
Type Description Object 标签大小对象,属性w表示标签的宽度,属性h表示标签的高度。 -
getTextCount(text){Object}
common/commontypes/geometry/GeoText.js, line 294 -
获取text中的字符个数。
Name Type Description text
string 字符串。
Returns:
Type Description Object 字符个数统计结果,属性cnC表示中文字符个数,属性enC表示英文字符个数,属性textC表示字符总个数。 -
inherited getVertices(nodes){Array}
common/commontypes/Geometry.js, line 134 -
返回几何图形的所有顶点的列表。(需要在子类中实现此方法)
Name Type Description nodes
Boolean 如果是true,线则只返回线的末端点,如果false,仅仅返回顶点,如果没有设置,则返回顶点。
Returns:
Type Description Array 几何图形的顶点列表。 -
inherited setBounds(bounds)
common/commontypes/Geometry.js, line 69 -
设置此几何对象的bounds。
Name Type Description bounds
SuperMap.Bounds -
-
inherited toString(){string}
common/commontypes/Geometry.js, line 155 -
返回geometry对象的字符串表述,需要引入
SuperMap.Format.WKT
。此方法只能在子类实现,在父类使用会报错。Returns:
Type Description string geometry对象的字符串表述(Well-Known Text)