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
+22
View File
@@ -0,0 +1,22 @@
goog.provide('ol.structs.IHasChecksum');
/**
* @typedef {string}
*/
ol.structs.Checksum;
/**
* @interface
*/
ol.structs.IHasChecksum = function() {
};
/**
* @return {string} The checksum.
*/
ol.structs.IHasChecksum.prototype.getChecksum = function() {
};