Docs: Set many links as {<...>}
This commit is contained in:
@@ -47,7 +47,7 @@ OpenLayers.Control.DragPan = OpenLayers.Class(OpenLayers.Control, {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Property: kinetic
|
* Property: kinetic
|
||||||
* {OpenLayers.Kinetic} The OpenLayers.Kinetic object.
|
* {<OpenLayers.Kinetic>} The OpenLayers.Kinetic object.
|
||||||
*/
|
*/
|
||||||
kinetic: null,
|
kinetic: null,
|
||||||
|
|
||||||
|
|||||||
@@ -98,7 +98,7 @@ OpenLayers.Control.Graticule = OpenLayers.Class(OpenLayers.Control, {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Property: gratLayer
|
* Property: gratLayer
|
||||||
* {OpenLayers.Layer.Vector} vector layer used to draw the graticule on
|
* {<OpenLayers.Layer.Vector>} vector layer used to draw the graticule on
|
||||||
*/
|
*/
|
||||||
gratLayer: null,
|
gratLayer: null,
|
||||||
|
|
||||||
|
|||||||
@@ -115,7 +115,7 @@ OpenLayers.Control.Snapping = OpenLayers.Class(OpenLayers.Control, {
|
|||||||
* the control.
|
* the control.
|
||||||
*
|
*
|
||||||
* Valid options:
|
* Valid options:
|
||||||
* layer - {OpenLayers.Layer.Vector} The editable layer. Features from this
|
* layer - {<OpenLayers.Layer.Vector>} The editable layer. Features from this
|
||||||
* layer that are digitized or modified may have vertices snapped to
|
* layer that are digitized or modified may have vertices snapped to
|
||||||
* features from any of the target layers.
|
* features from any of the target layers.
|
||||||
* targets - {Array(Object | OpenLayers.Layer.Vector)} A list of objects for
|
* targets - {Array(Object | OpenLayers.Layer.Vector)} A list of objects for
|
||||||
@@ -141,7 +141,7 @@ OpenLayers.Control.Snapping = OpenLayers.Class(OpenLayers.Control, {
|
|||||||
* continues after an eligible feature is found in a target layer.
|
* continues after an eligible feature is found in a target layer.
|
||||||
*
|
*
|
||||||
* Valid target properties:
|
* Valid target properties:
|
||||||
* layer - {OpenLayers.Layer.Vector} A target layer. Features from this
|
* layer - {<OpenLayers.Layer.Vector>} A target layer. Features from this
|
||||||
* layer will be eligible to act as snapping target for the editable
|
* layer will be eligible to act as snapping target for the editable
|
||||||
* layer.
|
* layer.
|
||||||
* tolerance - {Float} The distance (in pixels) at which snapping may occur.
|
* tolerance - {Float} The distance (in pixels) at which snapping may occur.
|
||||||
@@ -159,7 +159,7 @@ OpenLayers.Control.Snapping = OpenLayers.Class(OpenLayers.Control, {
|
|||||||
* edgeTolerance - {Float} Optional distance at which snapping may occur
|
* edgeTolerance - {Float} Optional distance at which snapping may occur
|
||||||
* for edges specifically. If none is provided, <tolerance> will be
|
* for edges specifically. If none is provided, <tolerance> will be
|
||||||
* used.
|
* used.
|
||||||
* filter - {OpenLayers.Filter} Optional filter to evaluate to determine if
|
* filter - {<OpenLayers.Filter>} Optional filter to evaluate to determine if
|
||||||
* feature is eligible for snapping. If filter evaluates to true for a
|
* feature is eligible for snapping. If filter evaluates to true for a
|
||||||
* target feature a vertex may be snapped to the feature.
|
* target feature a vertex may be snapped to the feature.
|
||||||
* minResolution - {Number} If a minResolution is provided, snapping to this
|
* minResolution - {Number} If a minResolution is provided, snapping to this
|
||||||
@@ -198,7 +198,7 @@ OpenLayers.Control.Snapping = OpenLayers.Class(OpenLayers.Control, {
|
|||||||
* layer is set.
|
* layer is set.
|
||||||
*
|
*
|
||||||
* Parameters:
|
* Parameters:
|
||||||
* layer - {OpenLayers.Layer.Vector} The new editable layer.
|
* layer - {<OpenLayers.Layer.Vector>} The new editable layer.
|
||||||
*/
|
*/
|
||||||
setLayer: function(layer) {
|
setLayer: function(layer) {
|
||||||
if(this.active) {
|
if(this.active) {
|
||||||
|
|||||||
@@ -106,7 +106,7 @@ OpenLayers.Control.Split = OpenLayers.Class(OpenLayers.Control, {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* APIProperty: targetFilter
|
* APIProperty: targetFilter
|
||||||
* {OpenLayers.Filter} Optional filter that will be evaluated
|
* {<OpenLayers.Filter>} Optional filter that will be evaluated
|
||||||
* to determine if a feature from the target layer is eligible for
|
* to determine if a feature from the target layer is eligible for
|
||||||
* splitting.
|
* splitting.
|
||||||
*/
|
*/
|
||||||
@@ -114,7 +114,7 @@ OpenLayers.Control.Split = OpenLayers.Class(OpenLayers.Control, {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* APIProperty: sourceFilter
|
* APIProperty: sourceFilter
|
||||||
* {OpenLayers.Filter} Optional filter that will be evaluated
|
* {<OpenLayers.Filter>} Optional filter that will be evaluated
|
||||||
* to determine if a feature from the target layer is eligible for
|
* to determine if a feature from the target layer is eligible for
|
||||||
* splitting.
|
* splitting.
|
||||||
*/
|
*/
|
||||||
@@ -141,10 +141,10 @@ OpenLayers.Control.Split = OpenLayers.Class(OpenLayers.Control, {
|
|||||||
* the control.
|
* the control.
|
||||||
*
|
*
|
||||||
* Valid options:
|
* Valid options:
|
||||||
* layer - {OpenLayers.Layer.Vector} The target layer. Features from this
|
* layer - {<OpenLayers.Layer.Vector>} The target layer. Features from this
|
||||||
* layer will be split by new or modified features on the source layer
|
* layer will be split by new or modified features on the source layer
|
||||||
* or temporary sketch layer.
|
* or temporary sketch layer.
|
||||||
* source - {OpenLayers.Layer.Vector} Optional source layer. If provided
|
* source - {<OpenLayers.Layer.Vector>} Optional source layer. If provided
|
||||||
* newly created features or modified features will be used to split
|
* newly created features or modified features will be used to split
|
||||||
* features on the target layer. If not provided, a temporary sketch
|
* features on the target layer. If not provided, a temporary sketch
|
||||||
* layer will be created for drawing lines.
|
* layer will be created for drawing lines.
|
||||||
@@ -158,10 +158,10 @@ OpenLayers.Control.Split = OpenLayers.Class(OpenLayers.Control, {
|
|||||||
* mutual - {Boolean} If source and target are the same, split source
|
* mutual - {Boolean} If source and target are the same, split source
|
||||||
* features and target features where they intersect. Default is
|
* features and target features where they intersect. Default is
|
||||||
* true. If false, only target features will be split.
|
* true. If false, only target features will be split.
|
||||||
* targetFilter - {OpenLayers.Filter} Optional filter that will be evaluated
|
* targetFilter - {<OpenLayers.Filter>} Optional filter that will be evaluated
|
||||||
* to determine if a feature from the target layer is eligible for
|
* to determine if a feature from the target layer is eligible for
|
||||||
* splitting.
|
* splitting.
|
||||||
* sourceFilter - {OpenLayers.Filter} Optional filter that will be evaluated
|
* sourceFilter - {<OpenLayers.Filter>} Optional filter that will be evaluated
|
||||||
* to determine if a feature from the target layer is eligible for
|
* to determine if a feature from the target layer is eligible for
|
||||||
* splitting.
|
* splitting.
|
||||||
*/
|
*/
|
||||||
@@ -180,7 +180,7 @@ OpenLayers.Control.Split = OpenLayers.Class(OpenLayers.Control, {
|
|||||||
* Set the source layer for edits layer.
|
* Set the source layer for edits layer.
|
||||||
*
|
*
|
||||||
* Parameters:
|
* Parameters:
|
||||||
* layer - {OpenLayers.Layer.Vector} The new source layer layer. If
|
* layer - {<OpenLayers.Layer.Vector>} The new source layer layer. If
|
||||||
* null, a temporary sketch layer will be created.
|
* null, a temporary sketch layer will be created.
|
||||||
*/
|
*/
|
||||||
setSource: function(layer) {
|
setSource: function(layer) {
|
||||||
|
|||||||
@@ -205,7 +205,7 @@ OpenLayers.Format.ArcXML = OpenLayers.Class(OpenLayers.Format.XML, {
|
|||||||
* data - {String} or {DOMElement} data to read/parse.
|
* data - {String} or {DOMElement} data to read/parse.
|
||||||
*
|
*
|
||||||
* Returns:
|
* Returns:
|
||||||
* {OpenLayers.Format.ArcXML.Response} An ArcXML response. Note that this response
|
* {<OpenLayers.Format.ArcXML.Response>} An ArcXML response. Note that this response
|
||||||
* data may change in the future.
|
* data may change in the future.
|
||||||
*/
|
*/
|
||||||
read: function(data) {
|
read: function(data) {
|
||||||
|
|||||||
@@ -153,7 +153,7 @@ OpenLayers.Geometry.LinearRing = OpenLayers.Class(
|
|||||||
* ratio - {Float} Optional x:y ratio for resizing. Default ratio is 1.
|
* ratio - {Float} Optional x:y ratio for resizing. Default ratio is 1.
|
||||||
*
|
*
|
||||||
* Returns:
|
* Returns:
|
||||||
* {OpenLayers.Geometry} - The current geometry.
|
* {<OpenLayers.Geometry>} - The current geometry.
|
||||||
*/
|
*/
|
||||||
resize: function(scale, origin, ratio) {
|
resize: function(scale, origin, ratio) {
|
||||||
for(var i=0, len=this.components.length; i<len - 1; ++i) {
|
for(var i=0, len=this.components.length; i<len - 1; ++i) {
|
||||||
|
|||||||
@@ -212,7 +212,7 @@ OpenLayers.Geometry.Point = OpenLayers.Class(OpenLayers.Geometry, {
|
|||||||
* ratio - {Float} Optional x:y ratio for resizing. Default ratio is 1.
|
* ratio - {Float} Optional x:y ratio for resizing. Default ratio is 1.
|
||||||
*
|
*
|
||||||
* Returns:
|
* Returns:
|
||||||
* {OpenLayers.Geometry} - The current geometry.
|
* {<OpenLayers.Geometry>} - The current geometry.
|
||||||
*/
|
*/
|
||||||
resize: function(scale, origin, ratio) {
|
resize: function(scale, origin, ratio) {
|
||||||
ratio = (ratio == undefined) ? 1 : ratio;
|
ratio = (ratio == undefined) ? 1 : ratio;
|
||||||
|
|||||||
@@ -363,7 +363,7 @@ OpenLayers.Layer.ArcGISCache = OpenLayers.Class(OpenLayers.Layer.XYZ, {
|
|||||||
* Get this layer's maximum extent.
|
* Get this layer's maximum extent.
|
||||||
*
|
*
|
||||||
* Returns:
|
* Returns:
|
||||||
* {OpenLayers.Bounds}
|
* {<OpenLayers.Bounds>}
|
||||||
*/
|
*/
|
||||||
getMaxExtent: function() {
|
getMaxExtent: function() {
|
||||||
var resolution = this.map.getResolution();
|
var resolution = this.map.getResolution();
|
||||||
|
|||||||
@@ -817,7 +817,7 @@ OpenLayers.Layer.Grid = OpenLayers.Class(OpenLayers.Layer.HTTPRequest, {
|
|||||||
* potential specific implementations in sub-classes.)
|
* potential specific implementations in sub-classes.)
|
||||||
*
|
*
|
||||||
* Returns:
|
* Returns:
|
||||||
* {OpenLayers.Bounds}
|
* {<OpenLayers.Bounds>}
|
||||||
*/
|
*/
|
||||||
getMaxExtent: function() {
|
getMaxExtent: function() {
|
||||||
return this.maxExtent;
|
return this.maxExtent;
|
||||||
|
|||||||
@@ -69,7 +69,7 @@ OpenLayers.Layer.PointGrid = OpenLayers.Class(OpenLayers.Layer.Vector, {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* APIProperty: origin
|
* APIProperty: origin
|
||||||
* {OpenLayers.LonLat} Grid origin. The grid lattice will be aligned with
|
* {<OpenLayers.LonLat>} Grid origin. The grid lattice will be aligned with
|
||||||
* the origin. If not set at construction, the center of the map's maximum
|
* the origin. If not set at construction, the center of the map's maximum
|
||||||
* extent is used. Read-only. Use the <setOrigin> method to modify this
|
* extent is used. Read-only. Use the <setOrigin> method to modify this
|
||||||
* value.
|
* value.
|
||||||
|
|||||||
@@ -359,7 +359,7 @@ OpenLayers.Map = OpenLayers.Class({
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Property: panTween
|
* Property: panTween
|
||||||
* {OpenLayers.Tween} Animated panning tween object, see panTo()
|
* {<OpenLayers.Tween>} Animated panning tween object, see panTo()
|
||||||
*/
|
*/
|
||||||
panTween: null,
|
panTween: null,
|
||||||
|
|
||||||
|
|||||||
@@ -36,7 +36,7 @@ OpenLayers.Protocol = OpenLayers.Class({
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Property: defaultFilter
|
* Property: defaultFilter
|
||||||
* {OpenLayers.Filter} Optional default filter to read requests
|
* {<OpenLayers.Filter>} Optional default filter to read requests
|
||||||
*/
|
*/
|
||||||
defaultFilter: null,
|
defaultFilter: null,
|
||||||
|
|
||||||
@@ -59,7 +59,7 @@ OpenLayers.Protocol = OpenLayers.Class({
|
|||||||
* Merge filter passed to the read method with the default one
|
* Merge filter passed to the read method with the default one
|
||||||
*
|
*
|
||||||
* Parameters:
|
* Parameters:
|
||||||
* filter - {OpenLayers.Filter}
|
* filter - {<OpenLayers.Filter>}
|
||||||
*/
|
*/
|
||||||
mergeWithDefaultFilter: function(filter) {
|
mergeWithDefaultFilter: function(filter) {
|
||||||
var merged;
|
var merged;
|
||||||
|
|||||||
@@ -384,7 +384,7 @@ OpenLayers.Protocol.WFS.v1 = OpenLayers.Class(OpenLayers.Protocol, {
|
|||||||
* Send a request that deletes all features by their filter.
|
* Send a request that deletes all features by their filter.
|
||||||
*
|
*
|
||||||
* Parameters:
|
* Parameters:
|
||||||
* filter - {OpenLayers.Filter} filter
|
* filter - {<OpenLayers.Filter>} filter
|
||||||
*/
|
*/
|
||||||
filterDelete: function(filter, options) {
|
filterDelete: function(filter, options) {
|
||||||
options = OpenLayers.Util.extend({}, options);
|
options = OpenLayers.Util.extend({}, options);
|
||||||
|
|||||||
@@ -105,7 +105,7 @@ OpenLayers.Strategy.Fixed = OpenLayers.Class(OpenLayers.Strategy, {
|
|||||||
* Add all features to the layer.
|
* Add all features to the layer.
|
||||||
*
|
*
|
||||||
* Parameters:
|
* Parameters:
|
||||||
* mapProjection - {OpenLayers.Projection} the map projection
|
* mapProjection - {<OpenLayers.Projection>} the map projection
|
||||||
* resp - {Object} options to pass to protocol read.
|
* resp - {Object} options to pass to protocol read.
|
||||||
*/
|
*/
|
||||||
merge: function(mapProjection, resp) {
|
merge: function(mapProjection, resp) {
|
||||||
|
|||||||
@@ -202,7 +202,7 @@ OpenLayers.Style = OpenLayers.Class({
|
|||||||
* Method: applySymbolizer
|
* Method: applySymbolizer
|
||||||
*
|
*
|
||||||
* Parameters:
|
* Parameters:
|
||||||
* rule - {OpenLayers.Rule}
|
* rule - {<OpenLayers.Rule>}
|
||||||
* style - {Object}
|
* style - {Object}
|
||||||
* feature - {<OpenLayer.Feature.Vector>}
|
* feature - {<OpenLayer.Feature.Vector>}
|
||||||
*
|
*
|
||||||
|
|||||||
Reference in New Issue
Block a user