{
System.out.println("load status:" + wmsService.getLoadStatus().toString());
// get the layer infos
List Bug Bug ID: BUG-000113100 Software: Get help from ArcGIS experts Download the Esri Support App
The Web Map Service (WMS) layer is not visible when instantiating the layer from a collection of WMSLayerInfos.
Bug ID Number
BUG-000113100 Submitted April 10, 2018 Last Modified June 5, 2024 Applies to ArcGIS Runtime SDK Version found 100.2.1 Operating System Windows OS Operating System Version 7.0 64 Bit Status Will Not Be Addressed
Additional Information
The code snippet below shows how to add the WMS service to an ArcGIS Runtime SDK application using the WMSLayerInfos. Please reach out to Esri Technical Support if the issue persists.
// wms service
//WmsService wmsService = new WmsService("URLtoWMSService?request=GetCapabilities&service=WMS");
// load the service
wmsService.loadAsync();
wmsService.addDoneLoadingListener(() -> {
System.out.println("load status:" + wmsService.getLoadStatus().toString());
// get the layer infos
List Steps to Reproduce