Merge pull request #14 from tsauerwein/webgl-point-atlas-manager

[webgl-point] Add atlas manager
This commit is contained in:
Tobias Sauerwein
2014-11-07 14:50:33 +01:00
9 changed files with 919 additions and 14 deletions

View File

@@ -6227,3 +6227,36 @@ olx.ViewState.prototype.resolution;
* @api
*/
olx.ViewState.prototype.rotation;
/**
* @typedef {{size: (number|undefined),
* maxSize: (number|undefined),
* space: (number|undefined)}}
* @api
*/
olx.style.AtlasManagerOptions;
/**
* The size in pixels of the first atlas image (default: 256).
* @type {number|undefined}
* @api
*/
olx.style.AtlasManagerOptions.prototype.size;
/**
* The maximum size in pixels of atlas images (default: 2048).
* @type {number|undefined}
* @api
*/
olx.style.AtlasManagerOptions.prototype.maxSize;
/**
* The space in pixels between images (default: 1).
* @type {number|undefined}
* @api
*/
olx.style.AtlasManagerOptions.prototype.space;