I am at my very first steps using the Pro SDK. I have found some samples on how to add layers to the active map by using the LayerFactory. It was pretty simple to add a map service from the gis server.
Now I want to add a WMS to my map. My naive approach was to replace the map server url with the wms url:
LayerFactory.Instance.CreateLayer("http://sg.geodatenzentrum.de/wms_webatlasde.light ", MapView.Active.Map);
But this will throw an exception. What is the correct way to add a wms to my map?
Solved! Go to Solution.
Have you checked https://community.esri.com/docs/DOC-8802-how-to-add-a-wms-service-to-arcgis-pro-using-the-sdk ?
Have you checked https://community.esri.com/docs/DOC-8802-how-to-add-a-wms-service-to-arcgis-pro-using-the-sdk ?
Thanks you for the think, this answers my question!