//CLASS:几何对象线类。 function LineMeasure(points) { Geometry.apply(this, arguments); this.points = points; this.width; }; LineMeasure.prototype = new Geometry(); LineMeasure.prototype.geoType = "LineMeasure";