UNPKG

openlayermap

Version:

openlayer Map Component for Vue 2.0

17 lines (16 loc) 331 B
/** * 胡红勋 2017-12-23 几何类 * @param {*} conf 对象类型 */ var Geometry = function (conf) { var _conf = { ...conf } this.type = _conf.type this.points = _conf.points this.toString = function () { return { type: this.type, points: this.points } } } export { Geometry }