SuperMap.Style.RegularShape

正多边形类.

Summary
SuperMap.Style.RegularShape 正多边形类.
Properties
angle {number} 旋转角度
pointsLength {number} 图形与外包园的交点数
radius1 {number} 中心点与内接圆的半径,单位像素。PS: 如果radius1 = radius 即是正多边形。
Constructor
SuperMap.Style.RegularShape 多边形
Functions
destroy 销毁该类,释放相关资源

Properties

pointsLength

{number} 图形与外包园的交点数

radius1

{number} 中心点与内接圆的半径,单位像素。PS: 如果radius1 = radius 即是正多边形。

angle

{number} 旋转角度

Constructor

SuperMap.Style.RegularShape

多边形

Examples

var RegularShape = new SuperMap.Style.RegularShape({
      pointsLength:5
      radius: 15,
      radius1: 8,
      angle: 60,
      fill: new SuperMap.Style.Fill({
         color: "rgba(238, 153, 0, 0.4)"
      }),
      stroke: new SuperMap.Style.Stroke({
         color: "#ff0000",
         width: 1
     })
} );

 var graphic = new SuperMap.Graphic(new SuperMap.Geometry.Point(0,0));
 graphic.style = { image: RegularShape}

Parameters

opt_options {Object}
Object.pointsLength {number} 图形与外接圆的点数量
Object.radius {Number} 外接圆半径
Object.radius1 {Number} 内接圆半径
Object.angle {Number} 旋转角度
Object.fill {SuperMap.Style.Fill}
Object.stroke {SuperMap.Style.Fill}

Functions

destroy

destroy: function()

销毁该类,释放相关资源

destroy: function()
销毁该类,释放相关资源
填充类.
Close