Changeset 3829
- Timestamp:
- 07/31/07 16:02:03 (1 year ago)
- Files:
-
- trunk/openlayers/lib/OpenLayers/BaseTypes/Bounds.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Control/ArgParser.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Control/LayerSwitcher.js (modified) (2 diffs)
- trunk/openlayers/lib/OpenLayers/Events.js (modified) (3 diffs)
- trunk/openlayers/lib/OpenLayers/Format/WFS.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Geometry/Collection.js (modified) (2 diffs)
- trunk/openlayers/lib/OpenLayers/Geometry/MultiLineString.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Geometry/Point.js (modified) (2 diffs)
- trunk/openlayers/lib/OpenLayers/Handler.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Handler/Feature.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Handler/Path.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Handler/Point.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Handler/Polygon.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Layer/Grid.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Layer/TileCache.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Layer/Vector.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Map.js (modified) (2 diffs)
- trunk/openlayers/lib/OpenLayers/Renderer/SVG.js (modified) (1 diff)
- trunk/openlayers/lib/Rico/Corner.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/openlayers/lib/OpenLayers/BaseTypes/Bounds.js
r3814 r3829 481 481 * 482 482 * Parameters: 483 * bbox - {Array } Array of bounds values (ex. <i>[5,42,10,45]</i>)483 * bbox - {Array(Float)} Array of bounds values (ex. <i>[5,42,10,45]</i>) 484 484 * 485 485 * Return: trunk/openlayers/lib/OpenLayers/Control/ArgParser.js
r3787 r3829 28 28 /** 29 29 * Parameter: layers 30 * {Array }30 * {Array(<OpenLayers.Layer>)} 31 31 */ 32 32 layers: null, trunk/openlayers/lib/OpenLayers/Control/LayerSwitcher.js
r3815 r3829 35 35 /** 36 36 * Property: baseLayers 37 * {Array }37 * {Array(<OpenLayers.Layer>)} 38 38 */ 39 39 baseLayers: null, … … 54 54 /** 55 55 * Property: dataLayers 56 * {Array }56 * {Array(<OpenLayers.Layer>)} 57 57 */ 58 58 dataLayers: null, trunk/openlayers/lib/OpenLayers/Events.js
r3815 r3829 338 338 /** 339 339 * Constant: BROWSER_EVENTS 340 * {Array } supported events340 * {Array(String)} supported events 341 341 */ 342 342 BROWSER_EVENTS: [ … … 367 367 /** 368 368 * Property: eventTypes 369 * {Array } list of support application events369 * {Array(String)} list of support application events 370 370 */ 371 371 eventTypes: null, … … 390 390 * object - {Object} The js object to which this Events object is being 391 391 * added element - {DOMElement} A dom element to respond to browser events 392 * eventTypes - {Array } Array of custom application events392 * eventTypes - {Array(String)} Array of custom application events 393 393 * fallThrough - {Boolean} Allow events to fall through after these have 394 394 * been handled? trunk/openlayers/lib/OpenLayers/Format/WFS.js
r3787 r3829 53 53 * 54 54 * Parameters: 55 * features - {Array }55 * features - {Array(<OpenLayers.Feature.Vector>)} 56 56 */ 57 57 write: function(features) { trunk/openlayers/lib/OpenLayers/Geometry/Collection.js
r3815 r3829 251 251 * angle - {Float} Rotation angle in radians (measured counterclockwise 252 252 * from the positive x-axis) 253 * origin - { OpenLayers.Geometry.Point} Center point for the rotation253 * origin - {<OpenLayers.Geometry.Point>} Center point for the rotation 254 254 */ 255 255 rotate: function(angle, origin) { … … 269 269 * (lines, for example, will be twice as long, and polygons 270 270 * will have four times the area). 271 * origin - { OpenLayers.Geometry.Point} Point of origin for resizing271 * origin - {<OpenLayers.Geometry.Point>} Point of origin for resizing 272 272 */ 273 273 resize: function(scale, origin) { trunk/openlayers/lib/OpenLayers/Geometry/MultiLineString.js
r3787 r3829 30 30 * 31 31 * Parameters: 32 * components - {Array( OpenLayers.Geometry.LineString)}32 * components - {Array(<OpenLayers.Geometry.LineString>)} 33 33 * 34 34 */ trunk/openlayers/lib/OpenLayers/Geometry/Point.js
r3787 r3829 138 138 * angle - {Float} Rotation angle in radians (measured counterclockwise 139 139 * from the positive x-axis) 140 * origin - { OpenLayers.Geometry.Point} Center point for the rotation140 * origin - {<OpenLayers.Geometry.Point>} Center point for the rotation 141 141 */ 142 142 rotate: function(angle, origin) { … … 157 157 * distance from the origin. A scale of 2 doubles the 158 158 * distance between the point and origin. 159 * origin - { OpenLayers.Geometry.Point} Point of origin for resizing159 * origin - {<OpenLayers.Geometry.Point>} Point of origin for resizing 160 160 */ 161 161 resize: function(scale, origin) { trunk/openlayers/lib/OpenLayers/Handler.js
r3787 r3829 184 184 * name - {String} The key for the callback that is one of the properties 185 185 * of the handler's callbacks object. 186 * args - {Array } An array of arguments with which to call the callback187 * (defined by the control).186 * args - {Array(*)} An array of arguments (any type) with which to call 187 * the callback (defined by the control). 188 188 */ 189 189 callback: function (name, args) { trunk/openlayers/lib/OpenLayers/Handler/Feature.js
r3787 r3829 31 31 * Parameters: 32 32 * control - {<OpenLayers.Control>} 33 * layers - {Array} List of OpenLayers.Layer.Vector 34 * callbacks - {Array} An object with a 'over' property whos value is 35 * a function to be called when the mouse is over 36 * a feature. The callback should expect to recieve 37 * a single argument, the feature. 33 * layers - {Array(<OpenLayers.Layer.Vector>)} 34 * callbacks - {Object} An object with a 'over' property whos value is 35 * a function to be called when the mouse is over a feature. The 36 * callback should expect to recieve a single argument, the feature. 38 37 * options - {Object} 39 38 */ trunk/openlayers/lib/OpenLayers/Handler/Path.js
r3787 r3829 48 48 * Parameters: 49 49 * control - {<OpenLayers.Control>} 50 * callbacks - { Array} An object with a 'done' property whos value is a51 * function to be called when the path drawing is finished. The callback52 * should expect to recieve a single argument, the line string geometry.53 * If the callbacks object contains a 'point' property, this function will54 * be sent each point as they are added. If the callbacks object contains55 * a 'cancel' property, this function will be called when the handler is56 * deactivated while drawing. The cancel should expect to receive a57 * geometry.50 * callbacks - {Object} An object with a 'done' property whos value is a 51 * function to be called when the path drawing is finished. The 52 * callback should expect to recieve a single argument, the line 53 * string geometry. If the callbacks object contains a 'point' 54 * property, this function will be sent each point as they are added. 55 * If the callbacks object contains a 'cancel' property, this function 56 * will be called when the handler is deactivated while drawing. The 57 * cancel should expect to receive a geometry. 58 58 * options - {Object} An optional object with properties to be set on the 59 59 * handler trunk/openlayers/lib/OpenLayers/Handler/Point.js
r3787 r3829 61 61 * Parameters: 62 62 * control - {<OpenLayers.Control>} The control that owns this handler 63 * callbacks - { Array} An object with a 'done' property whos value is a63 * callbacks - {Object} An object with a 'done' property whos value is a 64 64 * function to be called when the point drawing is finished. 65 65 * The callback should expect to recieve a single argument, trunk/openlayers/lib/OpenLayers/Handler/Polygon.js
r3787 r3829 30 30 * Parameters: 31 31 * control - {<OpenLayers.Control>} 32 * callbacks - { Array} An object with a 'done' property whos value is32 * callbacks - {Object} An object with a 'done' property whos value is 33 33 * a function to be called when the path drawing is 34 34 * finished. The callback should expect to recieve a trunk/openlayers/lib/OpenLayers/Layer/Grid.js
r3815 r3829 24 24 /** 25 25 * Property: grid 26 * {Array} This is an array of rows, each row is an array of tiles 26 * {Array(Array(<OpenLayers.Tile>))} This is an array of rows, each row is 27 * an array of tiles. 27 28 */ 28 29 grid: null, trunk/openlayers/lib/OpenLayers/Layer/TileCache.js
r3770 r3829 89 89 * 90 90 * Parameters: 91 * bounds - { OpenLayers.Bounds}91 * bounds - {<OpenLayers.Bounds>} 92 92 * 93 93 * Returns: trunk/openlayers/lib/OpenLayers/Layer/Vector.js
r3815 r3829 344 344 * 345 345 * Parameters: 346 * features - {Array( OpenLayers.Feature.Vector)}346 * features - {Array(<OpenLayers.Feature.Vector>)} 347 347 */ 348 348 eraseFeatures: function(features) { trunk/openlayers/lib/OpenLayers/Map.js
r3815 r3829 26 26 /** 27 27 * Constant: EVENT_TYPES 28 * {Array } supported application event types28 * {Array(String)} supported application event types 29 29 */ 30 30 EVENT_TYPES: [ … … 156 156 /** 157 157 * APIProperty: resolutions 158 * {Array } A list of map resolutions (map units per pixel) in descending159 * order. If this is not set in the layer constructor, it will be set160 * based on other resolution related properties (maxExtent, maxResolution,161 * maxScale, etc.).158 * {Array(Float)} A list of map resolutions (map units per pixel) in 159 * descending order. If this is not set in the layer constructor, it 160 * will be set based on other resolution related properties 161 * (maxExtent, maxResolution, maxScale, etc.). 162 162 */ 163 163 resolutions: null, trunk/openlayers/lib/OpenLayers/Renderer/SVG.js
r3787 r3829 511 511 * 512 512 * Parameters: 513 * components - {Array } Array of points513 * components - {Array(<OpenLayers.Geometry.Point)} Array of points 514 514 */ 515 515 getComponentsString: function(components) { trunk/openlayers/lib/Rico/Corner.js
r2541 r3829 93 93 * supplied to the `round` method. 94 94 * 95 * @param { Array} options - list of options95 * @param {Object} options - list of options 96 96 */ 97 97 reRound: function(theDiv, options) {
