Skip to content

Commit e52619d

Browse files
committed
【fix/API】修复ol graphic点击不了的bug
1 parent 237bbe7 commit e52619d

24 files changed

+1068
-916
lines changed

dist/classic/iclient-classic-es6.js

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5683,6 +5683,32 @@ var AggregationQueryBuilderType = SuperMap.AggregationQueryBuilderType = {
56835683
GEO_BOUNDING_BOX: "geo_bounding_box"
56845684
}
56855685

5686+
5687+
/**
5688+
* @enum GetFeatureMode
5689+
* @memberOf SuperMap
5690+
* @description feature 查询方式。
5691+
* @type {string}
5692+
*/
5693+
var GetFeatureMode = SuperMap.GetFeatureMode = {
5694+
/** 通过范围查询来获取要素。 */
5695+
BOUNDS: "BOUNDS",
5696+
/** 通过范围查询加属性过滤器的模式来获取要素。 */
5697+
BOUNDS_ATTRIBUTEFILTER: "BOUNDS_ATTRIBUTEFILTER",
5698+
/** 通过几何对象的缓冲区来获取要素。 */
5699+
BUFFER: "BUFFER",
5700+
/** 通过缓冲区加属性过滤器的模式来获取要素。 */
5701+
BUFFER_ATTRIBUTEFILTER: "BUFFER_ATTRIBUTEFILTER",
5702+
/** 通过 ID 来获取要素。 */
5703+
ID: "ID",
5704+
/** 通过空间查询模式来获取要素。 */
5705+
SPATIAL: "SPATIAL",
5706+
/** 通过空间查询加属性过滤器的模式来获取要素。 */
5707+
SPATIAL_ATTRIBUTEFILTER: 'SPATIAL_ATTRIBUTEFILTER',
5708+
/** 通过 SQL 查询来获取要素。 */
5709+
SQL: 'SQL'
5710+
}
5711+
56865712
// CONCATENATED MODULE: ./src/common/iServer/DatasourceConnectionInfo.js
56875713
/* Copyright© 2000 - 2018 SuperMap Software Co.Ltd. All rights reserved.
56885714
* This program are made available under the terms of the Apache License, Version 2.0

dist/classic/iclient-classic-es6.min.js

Lines changed: 11 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/classic/iclient-classic.js

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1185,7 +1185,7 @@ _SuperMap.SuperMap.Util.getTextBounds = function (style, text, element) {
11851185
Object.defineProperty(exports, "__esModule", {
11861186
value: true
11871187
});
1188-
exports.AggregationQueryBuilderType = exports.AggregationType = exports.TopologyValidatorRule = exports.SummaryType = exports.StatisticAnalystMode = exports.AnalystSizeUnit = exports.AnalystAreaUnit = exports.ClipAnalystMode = exports.ChartType = exports.ClientType = exports.Exponent = exports.VariogramMode = exports.InterpolationAlgorithmType = exports.SearchMode = exports.PixelFormat = exports.StatisticMode = exports.UGCLayerType = exports.LayerType = exports.ColorSpaceType = exports.GridType = exports.TransferPreference = exports.TransferTactic = exports.EditType = exports.DataReturnMode = exports.SurfaceAnalystMethod = exports.SmoothMethod = exports.OutputType = exports.OverlayOperationType = exports.BufferEndType = exports.TurnType = exports.SupplyCenterType = exports.SideType = exports.DirectionType = exports.LabelOverLengthMode = exports.LabelBackShape = exports.AlongLineDirection = exports.FillGradientMode = exports.TextAlignment = exports.ColorGradientType = exports.ThemeType = exports.RangeMode = exports.GraduatedMode = exports.GraphAxesTextDisplayMode = exports.ThemeGraphType = exports.ThemeGraphTextFormat = exports.EngineType = exports.BufferRadiusUnit = exports.Unit = exports.MeasureMode = exports.SpatialRelationType = exports.SpatialQueryMode = exports.JoinType = exports.QueryOption = exports.GeometryType = exports.ServerType = exports.DataFormat = undefined;
1188+
exports.GetFeatureMode = exports.AggregationQueryBuilderType = exports.AggregationType = exports.TopologyValidatorRule = exports.SummaryType = exports.StatisticAnalystMode = exports.AnalystSizeUnit = exports.AnalystAreaUnit = exports.ClipAnalystMode = exports.ChartType = exports.ClientType = exports.Exponent = exports.VariogramMode = exports.InterpolationAlgorithmType = exports.SearchMode = exports.PixelFormat = exports.StatisticMode = exports.UGCLayerType = exports.LayerType = exports.ColorSpaceType = exports.GridType = exports.TransferPreference = exports.TransferTactic = exports.EditType = exports.DataReturnMode = exports.SurfaceAnalystMethod = exports.SmoothMethod = exports.OutputType = exports.OverlayOperationType = exports.BufferEndType = exports.TurnType = exports.SupplyCenterType = exports.SideType = exports.DirectionType = exports.LabelOverLengthMode = exports.LabelBackShape = exports.AlongLineDirection = exports.FillGradientMode = exports.TextAlignment = exports.ColorGradientType = exports.ThemeType = exports.RangeMode = exports.GraduatedMode = exports.GraphAxesTextDisplayMode = exports.ThemeGraphType = exports.ThemeGraphTextFormat = exports.EngineType = exports.BufferRadiusUnit = exports.Unit = exports.MeasureMode = exports.SpatialRelationType = exports.SpatialQueryMode = exports.JoinType = exports.QueryOption = exports.GeometryType = exports.ServerType = exports.DataFormat = undefined;
11891189

11901190
var _SuperMap = __webpack_require__(0);
11911191

@@ -2401,6 +2401,33 @@ var AggregationQueryBuilderType = _SuperMap.SuperMap.AggregationQueryBuilderType
24012401
};
24022402
exports.AggregationQueryBuilderType = AggregationQueryBuilderType;
24032403

2404+
/**
2405+
* @enum GetFeatureMode
2406+
* @memberOf SuperMap
2407+
* @description feature 查询方式。
2408+
* @type {string}
2409+
*/
2410+
2411+
var GetFeatureMode = _SuperMap.SuperMap.GetFeatureMode = {
2412+
/** 通过范围查询来获取要素。 */
2413+
BOUNDS: "BOUNDS",
2414+
/** 通过范围查询加属性过滤器的模式来获取要素。 */
2415+
BOUNDS_ATTRIBUTEFILTER: "BOUNDS_ATTRIBUTEFILTER",
2416+
/** 通过几何对象的缓冲区来获取要素。 */
2417+
BUFFER: "BUFFER",
2418+
/** 通过缓冲区加属性过滤器的模式来获取要素。 */
2419+
BUFFER_ATTRIBUTEFILTER: "BUFFER_ATTRIBUTEFILTER",
2420+
/** 通过 ID 来获取要素。 */
2421+
ID: "ID",
2422+
/** 通过空间查询模式来获取要素。 */
2423+
SPATIAL: "SPATIAL",
2424+
/** 通过空间查询加属性过滤器的模式来获取要素。 */
2425+
SPATIAL_ATTRIBUTEFILTER: 'SPATIAL_ATTRIBUTEFILTER',
2426+
/** 通过 SQL 查询来获取要素。 */
2427+
SQL: 'SQL'
2428+
};
2429+
exports.GetFeatureMode = GetFeatureMode;
2430+
24042431
/***/ }),
24052432
/* 3 */
24062433
/***/ (function(module, exports, __webpack_require__) {

dist/classic/iclient-classic.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy