Adding angle brackets to link class names in the docs (see #983).

git-svn-id: http://svn.openlayers.org/trunk/openlayers@4353 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
Tim Schaub
2007-09-17 16:59:16 +00:00
parent 1812c7fb0d
commit 2337f9f2d8
5 changed files with 25 additions and 25 deletions

View File

@@ -93,7 +93,7 @@ OpenLayers.Control = OpenLayers.Class({
/** /**
* Property: handler * Property: handler
* {<OpenLayers.Handler}> null * {<OpenLayers.Handler>} null
*/ */
handler: null, handler: null,

View File

@@ -31,9 +31,9 @@ OpenLayers.Control.DragFeature = OpenLayers.Class(OpenLayers.Control, {
* that is about to be dragged and the pixel location of the mouse. * that is about to be dragged and the pixel location of the mouse.
* *
* Parameters: * Parameters:
* feature - {OpenLayers.Feature.Vector} The feature that is about to be * feature - {<OpenLayers.Feature.Vector>} The feature that is about to be
* dragged. * dragged.
* pixel - {OpenLayers.Pixel} The pixel location of the mouse. * pixel - {<OpenLayers.Pixel>} The pixel location of the mouse.
*/ */
onStart: function(feature, pixel) {}, onStart: function(feature, pixel) {},
@@ -44,8 +44,8 @@ OpenLayers.Control.DragFeature = OpenLayers.Class(OpenLayers.Control, {
* feature that is being dragged and the pixel location of the mouse. * feature that is being dragged and the pixel location of the mouse.
* *
* Parameters: * Parameters:
* feature - {OpenLayers.Feature.Vector} The feature that was dragged. * feature - {<OpenLayers.Feature.Vector>} The feature that was dragged.
* pixel - {OpenLayers.Pixel} The pixel location of the mouse. * pixel - {<OpenLayers.Pixel>} The pixel location of the mouse.
*/ */
onDrag: function(feature, pixel) {}, onDrag: function(feature, pixel) {},
@@ -57,26 +57,26 @@ OpenLayers.Control.DragFeature = OpenLayers.Class(OpenLayers.Control, {
* mouse. * mouse.
* *
* Parameters: * Parameters:
* feature - {OpenLayers.Feature.Vector} The feature that was dragged. * feature - {<OpenLayers.Feature.Vector>} The feature that was dragged.
* pixel - {OpenLayers.Pixel} The pixel location of the mouse. * pixel - {<OpenLayers.Pixel>} The pixel location of the mouse.
*/ */
onComplete: function(feature, pixel) {}, onComplete: function(feature, pixel) {},
/** /**
* Property: layer * Property: layer
* {OpenLayers.Layer.Vector} * {<OpenLayers.Layer.Vector>}
*/ */
layer: null, layer: null,
/** /**
* Property: feature * Property: feature
* {OpenLayers.Feature.Vector} * {<OpenLayers.Feature.Vector>}
*/ */
feature: null, feature: null,
/** /**
* Property: dragHandler * Property: dragHandler
* {OpenLayers.Handler.Drag} * {<OpenLayers.Handler.Drag>}
*/ */
dragHandler: null, dragHandler: null,
@@ -88,7 +88,7 @@ OpenLayers.Control.DragFeature = OpenLayers.Class(OpenLayers.Control, {
/** /**
* Property: featureHandler * Property: featureHandler
* {OpenLayers.Handler.Feature} * {<OpenLayers.Handler.Feature>}
*/ */
featureHandler: null, featureHandler: null,
@@ -100,7 +100,7 @@ OpenLayers.Control.DragFeature = OpenLayers.Class(OpenLayers.Control, {
/** /**
* Property: lastPixel * Property: lastPixel
* {OpenLayers.Pixel} * {<OpenLayers.Pixel>}
*/ */
lastPixel: null, lastPixel: null,
@@ -109,7 +109,7 @@ OpenLayers.Control.DragFeature = OpenLayers.Class(OpenLayers.Control, {
* Create a new control to drag features. * Create a new control to drag features.
* *
* Parameters: * Parameters:
* layer - {OpenLayers.Layer.Vector} The layer containing features to be * layer - {<OpenLayers.Layer.Vector>} The layer containing features to be
* dragged. * dragged.
* options - {Object} Optional object whose properties will be set on the * options - {Object} Optional object whose properties will be set on the
* control. * control.
@@ -179,7 +179,7 @@ OpenLayers.Control.DragFeature = OpenLayers.Class(OpenLayers.Control, {
* This activates the drag handler. * This activates the drag handler.
* *
* Parameters: * Parameters:
* feature - {OpenLayers.Feature.Vector} The selected feature. * feature - {<OpenLayers.Feature.Vector>} The selected feature.
*/ */
overFeature: function(feature) { overFeature: function(feature) {
if(!this.dragHandler.dragging) { if(!this.dragHandler.dragging) {
@@ -202,7 +202,7 @@ OpenLayers.Control.DragFeature = OpenLayers.Class(OpenLayers.Control, {
* Called when the drag handler detects a mouse-down. * Called when the drag handler detects a mouse-down.
* *
* Parameters: * Parameters:
* pixel - {OpenLayers.Pixel} Location of the mouse event. * pixel - {<OpenLayers.Pixel>} Location of the mouse event.
*/ */
downFeature: function(pixel) { downFeature: function(pixel) {
this.lastPixel = pixel; this.lastPixel = pixel;
@@ -215,7 +215,7 @@ OpenLayers.Control.DragFeature = OpenLayers.Class(OpenLayers.Control, {
* optional onDrag method. * optional onDrag method.
* *
* Parameters: * Parameters:
* pixel - {OpenLayers.Pixel} Location of the mouse event. * pixel - {<OpenLayers.Pixel>} Location of the mouse event.
*/ */
moveFeature: function(pixel) { moveFeature: function(pixel) {
var res = this.map.getResolution(); var res = this.map.getResolution();
@@ -232,7 +232,7 @@ OpenLayers.Control.DragFeature = OpenLayers.Class(OpenLayers.Control, {
* optional onComplete method. * optional onComplete method.
* *
* Parameters: * Parameters:
* pixel - {OpenLayers.Pixel} Location of the mouse event. * pixel - {<OpenLayers.Pixel>} Location of the mouse event.
*/ */
upFeature: function(pixel) { upFeature: function(pixel) {
if(!this.over) { if(!this.over) {
@@ -248,7 +248,7 @@ OpenLayers.Control.DragFeature = OpenLayers.Class(OpenLayers.Control, {
* Called when the drag handler is done dragging. * Called when the drag handler is done dragging.
* *
* Parameters: * Parameters:
* pixel - {OpenLayers.Pixel} The last event pixel location. If this event * pixel - {<OpenLayers.Pixel>} The last event pixel location. If this event
* came from a mouseout, this may not be in the map viewport. * came from a mouseout, this may not be in the map viewport.
*/ */
doneDragging: function(pixel) { doneDragging: function(pixel) {
@@ -260,7 +260,7 @@ OpenLayers.Control.DragFeature = OpenLayers.Class(OpenLayers.Control, {
* Called when the feature handler detects a mouse-out on a feature. * Called when the feature handler detects a mouse-out on a feature.
* *
* Parameters: * Parameters:
* feature - {OpenLayers.Feature.Vector} The feature that the mouse left. * feature - {<OpenLayers.Feature.Vector>} The feature that the mouse left.
*/ */
outFeature: function(feature) { outFeature: function(feature) {
if(!this.dragHandler.dragging) { if(!this.dragHandler.dragging) {
@@ -290,7 +290,7 @@ OpenLayers.Control.DragFeature = OpenLayers.Class(OpenLayers.Control, {
* Set the map property for the control and all handlers. * Set the map property for the control and all handlers.
* *
* Parameters: * Parameters:
* map - {OpenLayers.Map} The control's map. * map - {<OpenLayers.Map>} The control's map.
*/ */
setMap: function(map) { setMap: function(map) {
this.dragHandler.setMap(map); this.dragHandler.setMap(map);

View File

@@ -30,7 +30,7 @@ OpenLayers.Control.ModifyFeature = OpenLayers.Class(OpenLayers.Control, {
/** /**
* Property: layer * Property: layer
* {OpenLayers.Layer.Vector} * {<OpenLayers.Layer.Vector>}
*/ */
layer: null, layer: null,
@@ -116,7 +116,7 @@ OpenLayers.Control.ModifyFeature = OpenLayers.Class(OpenLayers.Control, {
* Create a new modify feature control. * Create a new modify feature control.
* *
* Parameters: * Parameters:
* layer - {OpenLayers.Layer.Vector} Layer that contains features that * layer - {<OpenLayers.Layer.Vector>} Layer that contains features that
* will be modified. * will be modified.
* options - {Object} Optional object whose properties will be set on the * options - {Object} Optional object whose properties will be set on the
* control. * control.
@@ -450,7 +450,7 @@ OpenLayers.Control.ModifyFeature = OpenLayers.Class(OpenLayers.Control, {
* Set the map property for the control and all handlers. * Set the map property for the control and all handlers.
* *
* Parameters: * Parameters:
* map - {OpenLayers.Map} The control's map. * map - {<OpenLayers.Map>} The control's map.
*/ */
setMap: function(map) { setMap: function(map) {
this.selectControl.setMap(map); this.selectControl.setMap(map);

View File

@@ -53,7 +53,7 @@ OpenLayers.Control.OverviewMap = OpenLayers.Class(OpenLayers.Control, {
/** /**
* APIProperty: minRatio * APIProperty: minRatio
* {Numver} The ratio of the overview map resolution to the main map * {Float} The ratio of the overview map resolution to the main map
* resolution at which to zoom farther out on the overview map. * resolution at which to zoom farther out on the overview map.
*/ */
minRatio: 8, minRatio: 8,

View File

@@ -284,7 +284,7 @@ OpenLayers.Handler.RegularPolygon = OpenLayers.Class(OpenLayers.Handler.Drag, {
* Calculate the angle based on settings. * Calculate the angle based on settings.
* *
* Parameters: * Parameters:
* point - {OpenLayers.Geometry.Point} * point - {<OpenLayers.Geometry.Point>}
* evt - {Event} * evt - {Event}
*/ */
calculateAngle: function(point, evt) { calculateAngle: function(point, evt) {