The QueryFeaturesAsync method in the ServiceFeatureTable class sends an incorrect REST query when the service has M values resulting in NaN M values in an application.
最後に公開された状態: October 14, 2019ArcGIS Runtime SDK
不具合 ID 番号
BUG-000122050
送信されました
April 30, 2019
最終更新日
June 5, 2024
適用対象
ArcGIS Runtime SDK
見つかったバージョン
100.5
オペレーティング システム
Windows OS
ステータス
Will Not Be Addressed
開発チームは、この問題またはリクエストを検討した結果、これに対処しないことに決定しました。 問題の「参考情報」セクションに、さらに詳細な説明が示されていることがあります。
参考情報
The default behavior of feature tables is to load only the minimum content required for geometry and attribute values. M values can be obtained by explicitly loading each feature or by refreshing the table:
For example, explicitly load each feature:
```
var f1 = pointsQueryResult.First();
var f2 = linesQueryResult.First();
var f3 = polysQueryResult.First();
await (f1 as ArcGISFeature).LoadAsync();
await (f2 as ArcGISFeature).LoadAsync();
await (f3 as ArcGISFeature).LoadAsync();
```
For example,
```
await pointsTable.LoadOrRefreshFeaturesAsync(pointsQueryResult);
```