Marking the api.

git-svn-id: http://svn.openlayers.org/trunk/openlayers@9001 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
Tim Schaub
2009-03-10 22:36:37 +00:00
parent 8c0d034516
commit 9e3bf16b0d

View File

@@ -49,7 +49,7 @@ OpenLayers.Control.Split = OpenLayers.Class(OpenLayers.Control, {
EVENT_TYPES: ["beforesplit", "split", "aftersplit"],
/**
* Property: layer
* APIProperty: layer
* {<OpenLayers.Layer.Vector>} The target layer with features to be split.
* Set at construction or after construction with <setLayer>.
*/
@@ -72,7 +72,7 @@ OpenLayers.Control.Split = OpenLayers.Class(OpenLayers.Control, {
sourceOptions: null,
/**
* Property: tolerance
* APIProperty: tolerance
* {Number} Distance between the calculated intersection and a vertex on
* the source geometry below which the existing vertex will be used
* for the split. Default is null.
@@ -80,7 +80,7 @@ OpenLayers.Control.Split = OpenLayers.Class(OpenLayers.Control, {
tolerance: null,
/**
* Property: edge
* APIProperty: edge
* {Boolean} Allow splits given intersection of edges only. Default is
* true. If false, a vertex on the source must be within the
* <tolerance> distance of the calculated intersection for a split
@@ -89,7 +89,7 @@ OpenLayers.Control.Split = OpenLayers.Class(OpenLayers.Control, {
edge: true,
/**
* Property: deferDelete
* APIProperty: deferDelete
* {Boolean} Instead of removing features from the layer, set feature
* states of split features to DELETE. This assumes a save strategy
* or other component is in charge of removing features from the
@@ -99,7 +99,7 @@ OpenLayers.Control.Split = OpenLayers.Class(OpenLayers.Control, {
deferDelete: false,
/**
* Property: mutual
* APIProperty: mutual
* {Boolean} If source and target layers are the same, split source
* features and target features where they intersect. Default is
* true. If false, only target features will be split.
@@ -107,7 +107,7 @@ OpenLayers.Control.Split = OpenLayers.Class(OpenLayers.Control, {
mutual: true,
/**
* Property: targetFilter
* APIProperty: targetFilter
* {OpenLayers.Filter} Optional filter that will be evaluated
* to determine if a feature from the target layer is eligible for
* splitting.
@@ -115,7 +115,7 @@ OpenLayers.Control.Split = OpenLayers.Class(OpenLayers.Control, {
targetFilter: null,
/**
* Property: sourceFilter
* APIProperty: sourceFilter
* {OpenLayers.Filter} Optional filter that will be evaluated
* to determine if a feature from the target layer is eligible for
* splitting.