Annotations for exports

This commit is contained in:
Tim Schaub
2014-04-08 13:40:35 -06:00
parent 457cfe851a
commit fb497f5288
243 changed files with 456 additions and 451 deletions

View File

@@ -20,6 +20,7 @@ goog.require('ol.source.wms.ServerType');
* @extends {ol.source.Image}
* @param {olx.source.ImageWMSOptions=} opt_options Options.
* @todo stability experimental
* @todo api
*/
ol.source.ImageWMS = function(opt_options) {
@@ -124,6 +125,7 @@ goog.inherits(ol.source.ImageWMS, ol.source.Image);
* in the `LAYERS` parameter will be used. `VERSION` should not be
* specified here.
* @return {string|undefined} GetFeatureInfo URL.
* @todo api
*/
ol.source.ImageWMS.prototype.getGetFeatureInfoUrl =
function(coordinate, resolution, projection, params) {
@@ -173,6 +175,7 @@ ol.source.ImageWMS.prototype.getGetFeatureInfoUrl =
* Get the user-provided params, i.e. those passed to the constructor through
* the "params" option, and possibly updated using the updateParams method.
* @return {Object} Params.
* @todo api
*/
ol.source.ImageWMS.prototype.getParams = function() {
return this.params_;
@@ -316,6 +319,7 @@ ol.source.ImageWMS.prototype.getRequestUrl_ =
* Return the URL used for this WMS source.
* @return {string|undefined} URL.
* @todo stability experimental
* @todo api
*/
ol.source.ImageWMS.prototype.getUrl = function() {
return this.url_;
@@ -324,6 +328,7 @@ ol.source.ImageWMS.prototype.getUrl = function() {
/**
* @param {string|undefined} url URL.
* @todo api
*/
ol.source.ImageWMS.prototype.setUrl = function(url) {
if (url != this.url_) {
@@ -337,6 +342,7 @@ ol.source.ImageWMS.prototype.setUrl = function(url) {
/**
* Update the user-provided params.
* @param {Object} params Params.
* @todo api
*/
ol.source.ImageWMS.prototype.updateParams = function(params) {
goog.object.extend(this.params_, params);