同步操作将从 osmapgis/MapGIS-WebClient-JavaScript 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
import { Zondy } from '../../common/Base';import { extend } from '../../common/Util';import { toJSON } from '../../common/Util';/*** @author 基础平台/产品2部 龚跃健* @class module:要素服务.QueryFeatureStruct* @classdesc 要素结构查询类构造函数* @description Zondy.Service.QueryFeatureStruct* @param option - {Object} 属性键值对。<br>* @param {Boolean} [option.IncludeAttribute=true] 是否包含属性值* @param {Boolean} [option.IncludeGeometry=false] 是否包含几何图形信息* @param {Boolean} [option.IncludeWebGraphic=false] 是否包含图形参数* @examplevar queryStruct = new Zondy.Service.QueryFeatureStruct();queryStruct.IncludeGeometry = true;*/var QueryFeatureStruct = function (option) {var options = option ? option : {};extend(this, options);/*** @private* @member Zondy.Service.QueryFeatureStruct.prototype.IncludeAttribute* @type {Boolean}* @description 是否包含属性值* @default true*/this.IncludeAttribute = options.IncludeAttribute !== undefined && typeof options.IncludeAttribute === 'boolean' ? options.IncludeAttribute : true;/*** @private* @member Zondy.Service.QueryFeatureStruct.prototype.IncludeGeometry* @type {Boolean}* @description 是否包含几何图形信息* @default false*/this.IncludeGeometry = options.IncludeGeometry !== undefined && typeof options.IncludeGeometry === 'boolean' ? options.IncludeGeometry : false;/*** @private* @member Zondy.Service.QueryFeatureStruct.prototype.IncludeGeometry* @type {Boolean}* @description 是否包含图形参数* @default false*/this.IncludeWebGraphic =options.IncludeWebGraphic !== undefined && typeof options.IncludeWebGraphic === 'boolean' ? options.IncludeWebGraphic : false;};/*** @description 获取此类的json形式的字符串* @function Zondy.Service.QueryFeatureStruct.prototype.toJSON* @returns json形式的字符串*/QueryFeatureStruct.prototype.toJSON = function () {return toJSON(this);};export { QueryFeatureStruct };Zondy.Service.QueryFeatureStruct = QueryFeatureStruct;
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。