git-svn-id: http://svn.openlayers.org/tags/openlayers/release-2.4-rc3@3113 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
111 lines
3.6 KiB
JavaScript
111 lines
3.6 KiB
JavaScript
/* Copyright (c) 2006 MetaCarta, Inc., published under the BSD license.
|
|
* See http://svn.openlayers.org/trunk/openlayers/release-license.txt
|
|
* for the full text of the license. */
|
|
|
|
|
|
/**
|
|
* Handler to draw a path on the map. Polygon is displayed on mouse down,
|
|
* moves on mouse move, and is finished on mouse up.
|
|
*
|
|
* @class
|
|
* @requires OpenLayers/Handler/Path.js
|
|
* @requires OpenLayers/Geometry/Polygon.js
|
|
*/
|
|
OpenLayers.Handler.Polygon = OpenLayers.Class.create();
|
|
OpenLayers.Handler.Polygon.prototype =
|
|
OpenLayers.Class.inherit(OpenLayers.Handler.Path, {
|
|
|
|
/**
|
|
* @type OpenLayers.Feature.Vector
|
|
* @private
|
|
*/
|
|
polygon: null,
|
|
|
|
/**
|
|
* @constructor
|
|
*
|
|
* @param {OpenLayers.Control} control
|
|
* @param {Array} callbacks An object with a 'done' property whos value is
|
|
* a function to be called when the path drawing is
|
|
* finished. The callback should expect to recieve a
|
|
* single argument, the polygon geometry.
|
|
* If the callbacks object contains a 'point'
|
|
* property, this function will be sent each point
|
|
* as they are added. If the callbacks object contains
|
|
* a 'cancel' property, this function will be called when
|
|
* the handler is deactivated while drawing. The cancel
|
|
* should expect to receive a geometry.
|
|
* @param {Object} options
|
|
*/
|
|
initialize: function(control, callbacks, options) {
|
|
OpenLayers.Handler.Path.prototype.initialize.apply(this, arguments);
|
|
},
|
|
|
|
/**
|
|
* Add temporary geometries
|
|
*/
|
|
createFeature: function() {
|
|
this.polygon = new OpenLayers.Feature.Vector(
|
|
new OpenLayers.Geometry.Polygon());
|
|
this.line = new OpenLayers.Feature.Vector(
|
|
new OpenLayers.Geometry.LinearRing());
|
|
this.polygon.geometry.addComponent(this.line.geometry);
|
|
this.point = new OpenLayers.Feature.Vector(
|
|
new OpenLayers.Geometry.Point());
|
|
},
|
|
|
|
/**
|
|
* Destroy temporary geometries
|
|
*/
|
|
destroyFeature: function() {
|
|
this.polygon.destroy();
|
|
this.point.destroy();
|
|
},
|
|
|
|
/**
|
|
* Modify the existing geometry given the new point
|
|
*
|
|
*/
|
|
modifyFeature: function() {
|
|
var index = this.line.geometry.components.length - 2;
|
|
this.line.geometry.components[index].x = this.point.geometry.x;
|
|
this.line.geometry.components[index].y = this.point.geometry.y;
|
|
},
|
|
|
|
/**
|
|
* Render geometries on the temporary layer.
|
|
*/
|
|
drawFeature: function() {
|
|
this.layer.drawFeature(this.polygon, this.style);
|
|
this.layer.drawFeature(this.point, this.style);
|
|
},
|
|
|
|
/**
|
|
* Return a clone of the relevant geometry.
|
|
*
|
|
* @type OpenLayers.Geometry.Polygon
|
|
*/
|
|
geometryClone: function() {
|
|
return this.polygon.geometry.clone();
|
|
},
|
|
|
|
/**
|
|
* Handle double-clicks. Finish the geometry and send it back
|
|
* to the control.
|
|
*
|
|
* @param {Event} evt
|
|
*/
|
|
dblclick: function(evt) {
|
|
if(!this.freehandMode(evt)) {
|
|
// remove the penultimate point
|
|
var index = this.line.geometry.components.length - 2;
|
|
this.line.geometry.removeComponent(this.line.geometry.components[index]);
|
|
this.finalize();
|
|
}
|
|
return false;
|
|
},
|
|
|
|
/** @final @type String */
|
|
CLASS_NAME: "OpenLayers.Handler.Polygon"
|
|
});
|