Annotations for exports
This commit is contained in:
@@ -1 +0,0 @@
|
||||
@exportSymbol ol.layer.Heatmap
|
||||
@@ -26,6 +26,7 @@ ol.layer.HeatmapLayerProperty = {
|
||||
* @fires {@link ol.render.Event} ol.render.Event
|
||||
* @param {olx.layer.HeatmapOptions=} opt_options Options.
|
||||
* @todo stability experimental
|
||||
* @todo api
|
||||
*/
|
||||
ol.layer.Heatmap = function(opt_options) {
|
||||
var options = goog.isDef(opt_options) ? opt_options : {};
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
@exportSymbol ol.layer.Image
|
||||
@@ -10,6 +10,7 @@ goog.require('ol.layer.Layer');
|
||||
* @fires {@link ol.render.Event} ol.render.Event
|
||||
* @param {olx.layer.LayerOptions} options Layer options.
|
||||
* @todo stability experimental
|
||||
* @todo api
|
||||
*/
|
||||
ol.layer.Image = function(options) {
|
||||
goog.base(this, options);
|
||||
|
||||
@@ -1,2 +0,0 @@
|
||||
@exportSymbol ol.layer.Layer
|
||||
@exportProperty ol.layer.Layer.prototype.getSource
|
||||
@@ -23,6 +23,7 @@ goog.require('ol.source.Source');
|
||||
* @todo observable visible {boolean} the visiblity of the layer
|
||||
* @todo observable maxResolution {number} the maximum resolution of the layer
|
||||
* @todo observable minResolution {number} the minimum resolution of the layer
|
||||
* @todo api
|
||||
*/
|
||||
ol.layer.Layer = function(options) {
|
||||
|
||||
@@ -67,6 +68,7 @@ ol.layer.Layer.prototype.getLayerStatesArray = function(opt_states) {
|
||||
/**
|
||||
* @return {ol.source.Source} Source.
|
||||
* @todo stability experimental
|
||||
* @todo api
|
||||
*/
|
||||
ol.layer.Layer.prototype.getSource = function() {
|
||||
return this.source_;
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
@exportSymbol ol.layer.Group
|
||||
@@ -31,6 +31,7 @@ ol.layer.GroupProperty = {
|
||||
* @todo stability experimental
|
||||
* @todo observable layers {ol.Collection} collection of layers that are part
|
||||
* of this group
|
||||
* @todo api
|
||||
*/
|
||||
ol.layer.Group = function(opt_options) {
|
||||
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
@exportSymbol ol.layer.Tile
|
||||
@@ -20,6 +20,7 @@ ol.layer.TileProperty = {
|
||||
* @param {olx.layer.TileOptions} options Tile layer options.
|
||||
* @todo stability experimental
|
||||
* @todo observable preload {number} the level to preload tiles up to
|
||||
* @todo api
|
||||
*/
|
||||
ol.layer.Tile = function(options) {
|
||||
goog.base(this, options);
|
||||
|
||||
@@ -1,4 +0,0 @@
|
||||
@exportSymbol ol.layer.Vector
|
||||
@exportProperty ol.layer.Vector.prototype.getStyle
|
||||
@exportProperty ol.layer.Vector.prototype.getStyleFunction
|
||||
@exportProperty ol.layer.Vector.prototype.setStyle
|
||||
@@ -22,6 +22,7 @@ ol.layer.VectorProperty = {
|
||||
* @fires {@link ol.render.Event} ol.render.Event
|
||||
* @param {olx.layer.VectorOptions=} opt_options Options.
|
||||
* @todo stability experimental
|
||||
* @todo api
|
||||
*/
|
||||
ol.layer.Vector = function(opt_options) {
|
||||
|
||||
@@ -70,6 +71,7 @@ ol.layer.Vector.prototype.getRenderOrder = function() {
|
||||
* option at construction or to the `setStyle` method.
|
||||
* @return {ol.style.Style|Array.<ol.style.Style>|ol.feature.StyleFunction}
|
||||
* Layer style.
|
||||
* @todo api
|
||||
*/
|
||||
ol.layer.Vector.prototype.getStyle = function() {
|
||||
return this.style_;
|
||||
@@ -80,6 +82,7 @@ ol.layer.Vector.prototype.getStyle = function() {
|
||||
* Get the style function.
|
||||
* @return {ol.feature.StyleFunction|undefined} Layer style function.
|
||||
* @todo stability experimental
|
||||
* @todo api
|
||||
*/
|
||||
ol.layer.Vector.prototype.getStyleFunction = function() {
|
||||
return this.styleFunction_;
|
||||
@@ -102,6 +105,7 @@ ol.layer.Vector.prototype.setRenderOrder = function(renderOrder) {
|
||||
* @param {ol.style.Style|Array.<ol.style.Style>|ol.feature.StyleFunction} style
|
||||
* Layer style.
|
||||
* @todo stability experimental
|
||||
* @todo api
|
||||
*/
|
||||
ol.layer.Vector.prototype.setStyle = function(style) {
|
||||
this.style_ = style;
|
||||
|
||||
Reference in New Issue
Block a user