ImageLayer

This commit is contained in:
tengge1 2019-04-10 19:22:53 +08:00
parent 67e69f6524
commit 15ec33a43d

View File

@ -0,0 +1,18 @@
import Layer from './Layer';
/**
* 图片图层
* @author tengge / https://github.com/tengge1
*/
function ImageLayer() {
Layer.call(this);
}
ImageLayer.prototype = Object.create(Layer.prototype);
ImageLayer.prototype.constructor = ImageLayer;
ImageLayer.prototype.get = function (x, y, z) {
};
export default ImageLayer;