Move things specific to the atlas manager to AtlasManager.js

This commit is contained in:
Tim Schaub
2017-12-12 16:24:53 -07:00
parent c40d9634bb
commit 6afd7b4783
3 changed files with 16 additions and 34 deletions
+13 -1
View File
@@ -1,9 +1,21 @@
/**
* @module ol/style/AtlasManager
*/
import {INITIAL_ATLAS_SIZE, MAX_ATLAS_SIZE, WEBGL_MAX_TEXTURE_SIZE, nullFunction} from '../index.js';
import {WEBGL_MAX_TEXTURE_SIZE, nullFunction} from '../index.js';
import _ol_style_Atlas_ from '../style/Atlas.js';
/**
* @type {number} The size in pixels of the first atlas image.
*/
var INITIAL_ATLAS_SIZE = 256;
/**
* @type {number} The maximum size in pixels of atlas images.
*/
var MAX_ATLAS_SIZE = -1;
/**
* Manages the creation of image atlases.
*