Merge pull request #2043 from ahocevar/nicer-api-docs

Nicer API docs
This commit is contained in:
Andreas Hocevar
2014-05-07 09:20:22 -05:00
81 changed files with 2267 additions and 934 deletions

View File

@@ -8,7 +8,7 @@ goog.require('ol.source.StaticVector');
/**
* @constructor
* @extends {ol.source.StaticVector}
* @fires {@link ol.source.VectorEvent} ol.source.VectorEvent
* @fires ol.source.VectorEvent
* @param {olx.source.GeoJSONOptions=} opt_options Options.
* @todo api
*/

View File

@@ -8,7 +8,7 @@ goog.require('ol.source.StaticVector');
/**
* @constructor
* @extends {ol.source.StaticVector}
* @fires {@link ol.source.VectorEvent} ol.source.VectorEvent
* @fires ol.source.VectorEvent
* @param {olx.source.GPXOptions=} opt_options Options.
* @todo api
*/

View File

@@ -8,7 +8,7 @@ goog.require('ol.source.StaticVector');
/**
* @constructor
* @extends {ol.source.StaticVector}
* @fires {@link ol.source.VectorEvent} ol.source.VectorEvent
* @fires ol.source.VectorEvent
* @param {olx.source.IGCOptions=} opt_options Options.
* @todo api
*/

View File

@@ -8,7 +8,7 @@ goog.require('ol.source.StaticVector');
/**
* @constructor
* @extends {ol.source.StaticVector}
* @fires {@link ol.source.VectorEvent} ol.source.VectorEvent
* @fires ol.source.VectorEvent
* @param {olx.source.KMLOptions=} opt_options Options.
* @todo api
*/

View File

@@ -8,7 +8,7 @@ goog.require('ol.source.StaticVector');
/**
* @constructor
* @extends {ol.source.StaticVector}
* @fires {@link ol.source.VectorEvent} ol.source.VectorEvent
* @fires ol.source.VectorEvent
* @param {olx.source.OSMXMLOptions=} opt_options Options.
* @todo api
*/

View File

@@ -9,7 +9,10 @@ goog.require('ol.proj');
/**
* State of the source. `0` means 'loading', `1` means 'ready', and `2` means
* 'error'.
* @enum {number}
* @todo api
*/
ol.source.State = {
LOADING: 0,

View File

@@ -8,7 +8,7 @@ goog.require('ol.source.State');
/**
* @constructor
* @extends {ol.source.FormatVector}
* @fires {@link ol.source.VectorEvent} ol.source.VectorEvent
* @fires ol.source.VectorEvent
* @param {olx.source.StaticVectorOptions} options Options.
* @todo api
*/

View File

@@ -8,7 +8,7 @@ goog.require('ol.source.StaticVector');
/**
* @constructor
* @extends {ol.source.StaticVector}
* @fires {@link ol.source.VectorEvent} ol.source.VectorEvent
* @fires ol.source.VectorEvent
* @param {olx.source.TopoJSONOptions=} opt_options Options.
* @todo api
*/

View File

@@ -41,7 +41,7 @@ ol.source.VectorEventType = {
/**
* @constructor
* @extends {ol.source.Source}
* @fires {@link ol.source.VectorEvent} ol.source.VectorEvent
* @fires ol.source.VectorEvent
* @param {olx.source.VectorOptions=} opt_options Vector source options.
* @todo api
*/