mirror of
https://github.com/tengge1/ShadowEditor.git
synced 2026-02-01 16:08:17 +00:00
ImageLayer
This commit is contained in:
parent
67e69f6524
commit
15ec33a43d
18
ShadowEditor.Web/src/gis/layer/ImageLayer.js
Normal file
18
ShadowEditor.Web/src/gis/layer/ImageLayer.js
Normal 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;
|
||||
Loading…
x
Reference in New Issue
Block a user