-
queryFeatures
(query, options)
{Promise<FeatureSet>}
對 layerView 中可用於繪製的函數執行 Query 並返回 FeatureSet 。如果未提供查詢參數,則返回所有可用於繪圖的特征。
已知限製
- 在針對 layerView 執行的屬性查詢中使用的屬性值區分大小寫。
- 空間查詢與 projection engine 文檔中列出的限製相同。
- 如果 layerView 具有以下任何一項,則當前不支持空間查詢SpatialReference:
- GDM 2000 (4742) - 馬來西亞
- Gusterberg (Ferro) (8042) - 奧地利/捷克共和國
- ISN2016 (8086) - 冰島
- SVY21 (4757) - 新加坡
參數:
類型 說明 可選的 來自 Object指定查詢的屬性和空間過濾器。當沒有參數傳遞給此方法時,將返回客戶端中的所有函數。要僅返回視圖中可見的要素,請將查詢對象中的
geometry
參數設置為視圖的範圍。options Object可選的 具有以下屬性的對象。
規格:signal可選的 可用於中止異步任務的信號對象。當發出中止信號時,返回的 Promise 將被名為
AbortError
的 Error 拒絕。另請參閱AbortController,了解有關如何構建可用於傳遞中止信號的控製器的更多信息。返回:
類型 說明 Promise<FeatureSet> 解析後,將返回包含圖形特征數組的 FeatureSet。 例子:
view.whenLayerView(layer).then(function(layerView){ layerView.watch("updating", function(val){ if(!val){ // wait for the layerView to finish updating layerView.queryFeatures(query).then(function(results){ console.log(results.features); // prints the array of client-side graphics to the console }); } }); });
// returns all the graphics from the layerView view.whenLayerView(layer).then(function(layerView){ layerView.watch("updating", function(val){ if(!val){ // wait for the layerView to finish updating layerView.queryFeatures().then(function(results){ console.log(results.features); // prints all the client-side graphics to the console }); } }); });
layerView.queryFeatures({ geometry: mapPoint, // 6 pixels around a point at the view resolution to query around a finger. distance: view.resolution * 6, });
基本信息
以下是所在類或對象的基本信息。
類:
esri/views/layers/WFSLayerView
繼承: WFSLayerView > LayerView > Accessor
自從:用於 JavaScript 4.20 的 ArcGIS API
用法說明
WFSLayerView.queryFeatures
函數(或屬性)的定義如下:
相關用法
- JavaScript ArcGIS WFSLayerView.queryFeatureCount用法及代碼示例
- JavaScript ArcGIS WFSLayerView.queryObjectIds用法及代碼示例
- JavaScript ArcGIS WFSLayerView.queryExtent用法及代碼示例
- JavaScript ArcGIS WFSLayerView.availableFields用法及代碼示例
- JavaScript ArcGIS WFSLayerView.effect用法及代碼示例
- JavaScript ArcGIS WFSLayerView.highlight用法及代碼示例
- JavaScript ArcGIS WFSLayerView.featureEffect用法及代碼示例
- JavaScript ArcGIS WFSLayerView.when用法及代碼示例
- JavaScript ArcGIS WFSLayerView.filter用法及代碼示例
- JavaScript ArcGIS WFSLayerView.createQuery用法及代碼示例
- JavaScript ArcGIS WFSLayer refresh事件用法及代碼示例
- JavaScript ArcGIS WFSLayer.orderBy用法及代碼示例
- JavaScript ArcGIS WFSLayer.fromWFSLayerInfo用法及代碼示例
- JavaScript ArcGIS WFSLayer.createQuery用法及代碼示例
- JavaScript ArcGIS WFSLayer.featureReduction用法及代碼示例
- JavaScript ArcGIS WFSLayer.opacity用法及代碼示例
- JavaScript ArcGIS WFSLayer.minScale用法及代碼示例
- JavaScript ArcGIS WFSLayer.when用法及代碼示例
- JavaScript ArcGIS WFSLayer.refreshInterval用法及代碼示例
- JavaScript ArcGIS WFSLayer.on用法及代碼示例
- JavaScript ArcGIS WFSLayer.capabilities用法及代碼示例
- JavaScript ArcGIS WFSLayer.url用法及代碼示例
- JavaScript ArcGIS WFSLayer用法及代碼示例
- JavaScript ArcGIS WFSLayer.visible用法及代碼示例
- JavaScript ArcGIS WFSLayer.name用法及代碼示例
注:本文由純淨天空篩選整理自arcgis.com大神的英文原創作品 WFSLayerView.queryFeatures。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。