Move MapOptionsInternal to PluggableMap

This commit is contained in:
Andreas Hocevar
2018-03-07 13:46:36 +01:00
parent 7decf90b6a
commit 938e475db1
2 changed files with 11 additions and 11 deletions

View File

@@ -31,6 +31,17 @@ import {DROP} from './structs/PriorityQueue.js';
import {create as createTransform, apply as applyTransform} from './transform.js';
/**
* @typedef {Object} MapOptionsInternal
* @property {module:ol/Collection~Collection.<module:ol/control/Control~Control>} [controls]
* @property {module:ol/Collection~Collection.<module:ol/interaction/Interaction~Interaction>} [interactions]
* @property {Element|Document} keyboardEventTarget
* @property {module:ol/Collection~Collection.<module:ol/Overlay~Overlay>} overlays
* @property {olx.MapRendererPlugin} mapRendererPlugin
* @property {Object.<string, *>} values
*/
/**
* Object literal with config options for the map.
* @typedef {{controls: (ol.Collection.<ol.control.Control>|Array.<ol.control.Control>|undefined),

View File

@@ -366,17 +366,6 @@ ol.LoadingStrategy;
ol.LRUCacheEntry;
/**
* @typedef {{controls: (ol.Collection.<ol.control.Control>|undefined),
* interactions: (ol.Collection.<ol.interaction.Interaction>|undefined),
* keyboardEventTarget: (Element|Document),
* overlays: ol.Collection.<ol.Overlay>,
* mapRendererPlugin: olx.MapRendererPlugin,
* values: Object.<string, *>}}
*/
ol.MapOptionsInternal;
/**
* An array representing an affine 2d transformation for use with
* {@link ol.transform} functions. The array has 6 elements.