mirror of
https://github.com/tengge1/ShadowEditor.git
synced 2026-01-25 15:08:11 +00:00
15 lines
322 B
JavaScript
15 lines
322 B
JavaScript
import Layer from './Layer';
|
|
|
|
/**
|
|
* 数据图层
|
|
* @author tengge / https://github.com/tengge1
|
|
* @param {*} globe
|
|
*/
|
|
function FeatureLayer(globe) {
|
|
Layer.call(this, globe);
|
|
}
|
|
|
|
FeatureLayer.prototype = Object.create(Layer.prototype);
|
|
FeatureLayer.prototype.constructor = FeatureLayer;
|
|
|
|
export default FeatureLayer; |