laptop and a wrench

Bogue

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

Dernière publication: November 29, 2016 ArcGIS Runtime SDK for Android
Numéro d’ID de bogue BUG-000100398
EnvoiOctober 27, 2016
Dernière modificationMarch 30, 2022
S’applique àArcGIS Runtime SDK for Android
Version trouvée10.2.8
Plateforme serveurAndroid
Plateforme client5.1x
StatutWill Not Be Addressed

Informations supplémentaires

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.

Solution de contournement

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); }}

Étapes pour reproduire

ID de bogue: BUG-000100398

Logiciel:

  • ArcGIS Runtime SDK for Android

Obtenir de l’aide auprès des experts ArcGIS

Contacter le support technique

Télécharger l’application Esri Support

Accéder aux options de téléchargement

En savoir plus sur ce sujet