Skip to content

Commit

Permalink
【feature】组件数据查询例子支持关键字查询; review by songym
Browse files Browse the repository at this point in the history
  • Loading branch information
xiongjiaojiao committed Nov 6, 2024
1 parent 1b6ddf1 commit 55e4a48
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 2 additions & 1 deletion examples/component/components_query_vue.html
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,10 @@
restMap: [
new SuperMap.Components.commontypes.RestMapParameter({
url: host + "/iserver/services/map-world/rest/maps/World",
attributeFilter: "SmID>0",
attributeFilter: "he",
maxFeatures: 30,
layerName: "Rivers@World",
queryMode: 'KEYWORD'
})
],
}
Expand Down
1 change: 0 additions & 1 deletion src/common/mapping/WebMapV2.js
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,6 @@ export function createWebMapV2Extending(SuperClass, { MapManager, mapRepo }) {
layer.minzoom = Math.max(this._transformScaleToZoom(minScale, crs), 0);
layer.maxzoom = Math.min(24, this._transformScaleToZoom(maxScale, crs) + 0.0000001);
}
console.log('_initOverlayLayers')

if (type === 'tile') {
if (layer.autoUpdateTime) {
Expand Down

0 comments on commit 55e4a48

Please sign in to comment.