function Sector(x, y, radius,startAngle,endAngle) { Point.apply(this, arguments); this.radius = radius; this.startAngle=startAngle; this.endAngle=endAngle; }; Sector.prototype.geoType = "Sector";