diff --git a/src/MAUI/Maui.Samples/Samples/Layers/WmsServiceCatalog/WmsServiceCatalog.xaml.cs b/src/MAUI/Maui.Samples/Samples/Layers/WmsServiceCatalog/WmsServiceCatalog.xaml.cs index 75425656e7..03835a7406 100644 --- a/src/MAUI/Maui.Samples/Samples/Layers/WmsServiceCatalog/WmsServiceCatalog.xaml.cs +++ b/src/MAUI/Maui.Samples/Samples/Layers/WmsServiceCatalog/WmsServiceCatalog.xaml.cs @@ -23,7 +23,7 @@ public partial class WmsServiceCatalog : ContentPage { // Hold the URL to the WMS service providing the US NOAA National Weather Service forecast weather chart. private readonly Uri _wmsUrl = new Uri( - "https://nowcoast.noaa.gov/geoserver/observations/weather_radar/wms?SERVICE=WMS&REQUEST=GetCapabilities"); + "https://nowcoast.noaa.gov/geoserver/weather_radar/wms?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetCapabilities"); // Hold a list of LayerDisplayVM; this is the ViewModel. private readonly ObservableCollection _viewModelList = new ObservableCollection(); diff --git a/src/MAUI/Maui.Samples/Samples/Layers/WmsServiceCatalog/readme.md b/src/MAUI/Maui.Samples/Samples/Layers/WmsServiceCatalog/readme.md index 32f2cc4c15..02585d3d70 100644 --- a/src/MAUI/Maui.Samples/Samples/Layers/WmsServiceCatalog/readme.md +++ b/src/MAUI/Maui.Samples/Samples/Layers/WmsServiceCatalog/readme.md @@ -31,7 +31,7 @@ WMS services often contain many layers and sublayers. Presenting the layers and ## About the data -This sample shows [forecasts guidance warnings](https://nowcoast.noaa.gov/geoserver/observations/weather_radar/wms?SERVICE=WMS&REQUEST=GetCapabilities) from an ArcGIS REST service produced by the US NOAA National Weather Service. The map shows fronts, highs, and lows, as well as areas of forecast precipitation. +This sample shows [forecasts guidance warnings](https://nowcoast.noaa.gov/geoserver/weather_radar/wms?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetCapabilities) from an ArcGIS REST service produced by the US NOAA National Weather Service. The map shows fronts, highs, and lows, as well as areas of forecast precipitation. ## Tags diff --git a/src/UWP/ArcGIS.UWP.Viewer/Samples/Layers/WmsServiceCatalog/WmsServiceCatalog.xaml.cs b/src/UWP/ArcGIS.UWP.Viewer/Samples/Layers/WmsServiceCatalog/WmsServiceCatalog.xaml.cs index cdb685cce0..bfb8501f1d 100644 --- a/src/UWP/ArcGIS.UWP.Viewer/Samples/Layers/WmsServiceCatalog/WmsServiceCatalog.xaml.cs +++ b/src/UWP/ArcGIS.UWP.Viewer/Samples/Layers/WmsServiceCatalog/WmsServiceCatalog.xaml.cs @@ -27,7 +27,7 @@ public partial class WmsServiceCatalog { // Hold the URL to the WMS service providing the US NOAA National Weather Service forecast weather chart. private readonly Uri _wmsUrl = new Uri( - "https://idpgis.ncep.noaa.gov/arcgis/services/NWS_Forecasts_Guidance_Warnings/natl_fcst_wx_chart/MapServer/WMSServer?request=GetCapabilities&service=WMS"); + "https://nowcoast.noaa.gov/geoserver/weather_radar/wms?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetCapabilities"); // Hold a list of LayerDisplayVM; this is the ViewModel. private ObservableCollection _viewModelList = new ObservableCollection(); diff --git a/src/UWP/ArcGIS.UWP.Viewer/Samples/Layers/WmsServiceCatalog/readme.md b/src/UWP/ArcGIS.UWP.Viewer/Samples/Layers/WmsServiceCatalog/readme.md index 15e1356488..a7886f41ba 100644 --- a/src/UWP/ArcGIS.UWP.Viewer/Samples/Layers/WmsServiceCatalog/readme.md +++ b/src/UWP/ArcGIS.UWP.Viewer/Samples/Layers/WmsServiceCatalog/readme.md @@ -32,7 +32,7 @@ WMS services often contain many layers and sublayers. Presenting the layers and ## About the data -This sample shows [forecasts guidance warnings](https://idpgis.ncep.noaa.gov/arcgis/rest/services/NWS_Forecasts_Guidance_Warnings/natl_fcst_wx_chart/MapServer) from an ArcGIS REST service produced by the U.S. National Weather Service. The map shows fronts, highs, and lows, as well as areas of forecast precipitation. +This sample shows [forecasts guidance warnings](https://nowcoast.noaa.gov/geoserver/weather_radar/wms?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetCapabilities) from an ArcGIS REST service produced by the U.S. National Weather Service. The map shows fronts, highs, and lows, as well as areas of forecast precipitation. ## Tags diff --git a/src/WPF/WPF.Viewer/Samples/Layers/WmsServiceCatalog/WmsServiceCatalog.xaml.cs b/src/WPF/WPF.Viewer/Samples/Layers/WmsServiceCatalog/WmsServiceCatalog.xaml.cs index b4d94b69ac..fd23a00271 100644 --- a/src/WPF/WPF.Viewer/Samples/Layers/WmsServiceCatalog/WmsServiceCatalog.xaml.cs +++ b/src/WPF/WPF.Viewer/Samples/Layers/WmsServiceCatalog/WmsServiceCatalog.xaml.cs @@ -30,7 +30,7 @@ public partial class WmsServiceCatalog { // Hold the URL to the WMS service providing the US NOAA National Weather Service forecast weather chart. private readonly Uri _wmsUrl = new Uri( - "https://nowcoast.noaa.gov/geoserver/observations/weather_radar/wms?SERVICE=WMS&REQUEST=GetCapabilities"); + "https://nowcoast.noaa.gov/geoserver/weather_radar/wms?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetCapabilities"); // Hold a list of LayerDisplayVM; this is the ViewModel. private readonly ObservableCollection _viewModelList = new ObservableCollection(); diff --git a/src/WPF/WPF.Viewer/Samples/Layers/WmsServiceCatalog/readme.md b/src/WPF/WPF.Viewer/Samples/Layers/WmsServiceCatalog/readme.md index 59fb1a7261..11e1baac3e 100644 --- a/src/WPF/WPF.Viewer/Samples/Layers/WmsServiceCatalog/readme.md +++ b/src/WPF/WPF.Viewer/Samples/Layers/WmsServiceCatalog/readme.md @@ -31,7 +31,7 @@ WMS services often contain many layers and sublayers. Presenting the layers and ## About the data -This sample shows [forecasts guidance warnings](https://nowcoast.noaa.gov/geoserver/observations/weather_radar/wms?SERVICE=WMS&REQUEST=GetCapabilities) from an ArcGIS REST service produced by the US NOAA National Weather Service. The map shows fronts, highs, and lows, as well as areas of forecast precipitation. +This sample shows [forecasts guidance warnings](https://nowcoast.noaa.gov/geoserver/weather_radar/wms?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetCapabilities) from an ArcGIS REST service produced by the US NOAA National Weather Service. The map shows fronts, highs, and lows, as well as areas of forecast precipitation. ## Tags diff --git a/src/WinUI/ArcGIS.WinUI.Viewer/Samples/Layers/WmsServiceCatalog/WmsServiceCatalog.xaml.cs b/src/WinUI/ArcGIS.WinUI.Viewer/Samples/Layers/WmsServiceCatalog/WmsServiceCatalog.xaml.cs index b3765895e3..9c46cb6635 100644 --- a/src/WinUI/ArcGIS.WinUI.Viewer/Samples/Layers/WmsServiceCatalog/WmsServiceCatalog.xaml.cs +++ b/src/WinUI/ArcGIS.WinUI.Viewer/Samples/Layers/WmsServiceCatalog/WmsServiceCatalog.xaml.cs @@ -27,7 +27,7 @@ public partial class WmsServiceCatalog { // Hold the URL to the WMS service providing the US NOAA National Weather Service forecast weather chart. private readonly Uri _wmsUrl = new Uri( - "https://nowcoast.noaa.gov/geoserver/observations/weather_radar/wms?SERVICE=WMS&REQUEST=GetCapabilities"); + "https://nowcoast.noaa.gov/geoserver/weather_radar/wms?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetCapabilities"); // Hold a list of LayerDisplayVM; this is the ViewModel. private ObservableCollection _viewModelList = new ObservableCollection(); diff --git a/src/WinUI/ArcGIS.WinUI.Viewer/Samples/Layers/WmsServiceCatalog/readme.md b/src/WinUI/ArcGIS.WinUI.Viewer/Samples/Layers/WmsServiceCatalog/readme.md index 59fb1a7261..11e1baac3e 100644 --- a/src/WinUI/ArcGIS.WinUI.Viewer/Samples/Layers/WmsServiceCatalog/readme.md +++ b/src/WinUI/ArcGIS.WinUI.Viewer/Samples/Layers/WmsServiceCatalog/readme.md @@ -31,7 +31,7 @@ WMS services often contain many layers and sublayers. Presenting the layers and ## About the data -This sample shows [forecasts guidance warnings](https://nowcoast.noaa.gov/geoserver/observations/weather_radar/wms?SERVICE=WMS&REQUEST=GetCapabilities) from an ArcGIS REST service produced by the US NOAA National Weather Service. The map shows fronts, highs, and lows, as well as areas of forecast precipitation. +This sample shows [forecasts guidance warnings](https://nowcoast.noaa.gov/geoserver/weather_radar/wms?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetCapabilities) from an ArcGIS REST service produced by the US NOAA National Weather Service. The map shows fronts, highs, and lows, as well as areas of forecast precipitation. ## Tags