2019-04-13 10:12:40 +08:00

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;