laptop and a wrench

不具合

Loading a specific WMS layer on a 10 inch tablet fails to load.

最後に公開された状態: November 29, 2016 ArcGIS Runtime SDK
不具合 ID 番号 BUG-000100398
送信されましたOctober 27, 2016
最終更新日June 5, 2024
適用対象ArcGIS Runtime SDK
見つかったバージョン10.2.8
オペレーティング システムAndroid
オペレーティング システムのバージョン5.1x
ステータスWill Not Be Addressed

参考情報

Depending on the device, the requested image size can be huge; this is limited to ArcGIS for Server services with the known maximum configured size. There is no way of knowing the size of a non-ArcGIS for Server WMS service. Use the suggested workaround to resolve this problem.

対処法

Extend the WMSLayer and in the GetImage request, have it return the maximum size if the size requested exceeds the maximum: public class MyWMS extends WMSLayer { public MyWMS(String url) { super(url); } @Override protected byte[] getImage(int width, int height, Envelope extent) throws Exception { if(width>1600) { return super.getImage(1600, height, extent); } return super.getImage(width, height, extent); }}

再現の手順

不具合 ID: BUG-000100398

ソフトウェア:

  • ArcGIS Runtime SDK

バグのステータスが変更されたときに通知を受け取る

Esri Support アプリのダウンロード

このトピックについてさらに調べる

ArcGIS エキスパートのサポートを受ける

テクニカル サポートへのお問い合わせ

Esri Support アプリのダウンロード

ダウンロード オプションに移動