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

@@ -1 +0,0 @@
@exportSymbol ol.interaction.DoubleClickZoom

View File

@@ -16,6 +16,7 @@ goog.require('ol.interaction.Interaction');
* @extends {ol.interaction.Interaction}
* @param {olx.interaction.DoubleClickZoomOptions=} opt_options Options.
* @todo stability experimental
* @todo api
*/
ol.interaction.DoubleClickZoom = function(opt_options) {

View File

@@ -1 +0,0 @@
@exportSymbol ol.interaction.DragAndDrop

View File

@@ -22,6 +22,7 @@ goog.require('ol.proj');
* @fires {@link ol.interaction.DragAndDropEvent}
* ol.interaction.DragAndDropEvent
* @param {olx.interaction.DragAndDropOptions=} opt_options Options.
* @todo api
*/
ol.interaction.DragAndDrop = function(opt_options) {

View File

@@ -1,2 +0,0 @@
@exportSymbol ol.interaction.DragBox
@exportProperty ol.interaction.DragBox.prototype.getGeometry

View File

@@ -84,6 +84,7 @@ goog.inherits(ol.DragBoxEvent, goog.events.Event);
* @fires {@link ol.DragBoxEvent} ol.DragBoxEvent
* @param {olx.interaction.DragBoxOptions=} opt_options Options.
* @todo stability experimental
* @todo api
*/
ol.interaction.DragBox = function(opt_options) {
@@ -135,6 +136,7 @@ ol.interaction.DragBox.prototype.handlePointerDrag = function(mapBrowserEvent) {
/**
* Returns geometry of last drawn box.
* @return {ol.geom.Geometry} Geometry.
* @todo api
*/
ol.interaction.DragBox.prototype.getGeometry = function() {
return this.box_.getGeometry();

View File

@@ -1 +0,0 @@
@exportSymbol ol.interaction.DragPan

View File

@@ -19,6 +19,7 @@ goog.require('ol.interaction.Pointer');
* @extends {ol.interaction.Pointer}
* @param {olx.interaction.DragPanOptions=} opt_options Options.
* @todo stability experimental
* @todo api
*/
ol.interaction.DragPan = function(opt_options) {

View File

@@ -1 +0,0 @@
@exportSymbol ol.interaction.DragRotate

View File

@@ -1 +0,0 @@
@exportSymbol ol.interaction.DragRotateAndZoom

View File

@@ -32,6 +32,7 @@ ol.interaction.DRAGROTATEANDZOOM_ANIMATION_DURATION = 400;
* @extends {ol.interaction.Pointer}
* @param {olx.interaction.DragRotateAndZoomOptions=} opt_options Options.
* @todo stability experimental
* @todo api
*/
ol.interaction.DragRotateAndZoom = function(opt_options) {

View File

@@ -25,6 +25,7 @@ ol.interaction.DRAGROTATE_ANIMATION_DURATION = 250;
* @constructor
* @extends {ol.interaction.Pointer}
* @param {olx.interaction.DragRotateOptions=} opt_options Options.
* @todo api
*/
ol.interaction.DragRotate = function(opt_options) {

View File

@@ -1 +0,0 @@
@exportSymbol ol.interaction.DragZoom

View File

@@ -24,6 +24,7 @@ ol.interaction.DRAGZOOM_ANIMATION_DURATION = 200;
* @extends {ol.interaction.DragBox}
* @param {olx.interaction.DragZoomOptions=} opt_options Options.
* @todo stability experimental
* @todo api
*/
ol.interaction.DragZoom = function(opt_options) {
var options = goog.isDef(opt_options) ? opt_options : {};

View File

@@ -1 +0,0 @@
@exportSymbol ol.interaction.Draw

View File

@@ -72,6 +72,7 @@ goog.inherits(ol.DrawEvent, goog.events.Event);
* @fires {@link ol.DrawEvent} ol.DrawEvent
* @param {olx.interaction.DrawOptions} options Options.
* @todo stability experimental
* @todo api
*/
ol.interaction.Draw = function(options) {

View File

@@ -1 +0,0 @@
@exportSymbol ol.interaction.defaults

View File

@@ -26,6 +26,7 @@ goog.require('ol.interaction.PinchZoom');
* @return {ol.Collection} A collection of interactions to be used with
* the ol.Map constructor's interactions option.
* @todo stability experimental
* @todo api
*/
ol.interaction.defaults = function(opt_options) {

View File

@@ -1 +0,0 @@
@exportSymbol ol.interaction.KeyboardPan

View File

@@ -34,6 +34,7 @@ ol.interaction.KEYBOARD_PAN_DURATION = 100;
* @extends {ol.interaction.Interaction}
* @param {olx.interaction.KeyboardPanOptions=} opt_options Options.
* @todo stability experimental
* @todo api
*/
ol.interaction.KeyboardPan = function(opt_options) {

View File

@@ -1 +0,0 @@
@exportSymbol ol.interaction.KeyboardZoom

View File

@@ -24,6 +24,7 @@ goog.require('ol.interaction.Interaction');
* @param {olx.interaction.KeyboardZoomOptions=} opt_options Options.
* @extends {ol.interaction.Interaction}
* @todo stability experimental
* @todo api
*/
ol.interaction.KeyboardZoom = function(opt_options) {

View File

@@ -1 +0,0 @@
@exportSymbol ol.interaction.Modify

View File

@@ -40,6 +40,7 @@ ol.interaction.SegmentDataType;
* @constructor
* @extends {ol.interaction.Pointer}
* @param {olx.interaction.ModifyOptions} options Options.
* @todo api
*/
ol.interaction.Modify = function(options) {

View File

@@ -1 +0,0 @@
@exportSymbol ol.interaction.MouseWheelZoom

View File

@@ -29,6 +29,7 @@ ol.interaction.MOUSEWHEELZOOM_TIMEOUT_DURATION = 80;
* @extends {ol.interaction.Interaction}
* @param {olx.interaction.MouseWheelZoomOptions=} opt_options Options.
* @todo stability experimental
* @todo api
*/
ol.interaction.MouseWheelZoom = function(opt_options) {

View File

@@ -1 +0,0 @@
@exportSymbol ol.interaction.PinchRotate

View File

@@ -24,6 +24,7 @@ ol.interaction.ROTATE_ANIMATION_DURATION = 250;
* @extends {ol.interaction.Pointer}
* @param {olx.interaction.PinchRotateOptions=} opt_options Options.
* @todo stability experimental
* @todo api
*/
ol.interaction.PinchRotate = function(opt_options) {

View File

@@ -1 +0,0 @@
@exportSymbol ol.interaction.PinchZoom

View File

@@ -18,6 +18,7 @@ goog.require('ol.interaction.Pointer');
* @extends {ol.interaction.Pointer}
* @param {olx.interaction.PinchZoomOptions=} opt_options Options.
* @todo stability experimental
* @todo api
*/
ol.interaction.PinchZoom = function(opt_options) {

View File

@@ -1,3 +0,0 @@
@exportSymbol ol.interaction.Select
@exportProperty ol.interaction.Select.prototype.getFeatures
@exportProperty ol.interaction.Select.prototype.setMap

View File

@@ -19,6 +19,7 @@ goog.require('ol.interaction.Interaction');
* @extends {ol.interaction.Interaction}
* @param {olx.interaction.SelectOptions=} opt_options Options.
* @todo stability experimental
* @todo api
*/
ol.interaction.Select = function(opt_options) {
@@ -101,6 +102,7 @@ goog.inherits(ol.interaction.Select, ol.interaction.Interaction);
/**
* @return {ol.Collection} Features collection.
* @todo stability experimental
* @todo api
*/
ol.interaction.Select.prototype.getFeatures = function() {
return this.featureOverlay_.getFeatures();
@@ -171,6 +173,7 @@ ol.interaction.Select.prototype.handleMapBrowserEvent =
/**
* @inheritDoc
* @todo api
*/
ol.interaction.Select.prototype.setMap = function(map) {
var currentMap = this.getMap();