diff --git a/ArcGISRuntimeSDKQt_CppSamples/Layers/RasterLayerService/README.md b/ArcGISRuntimeSDKQt_CppSamples/Layers/RasterLayerService/README.md index f8bac9fc1e..48ad407533 100644 --- a/ArcGISRuntimeSDKQt_CppSamples/Layers/RasterLayerService/README.md +++ b/ArcGISRuntimeSDKQt_CppSamples/Layers/RasterLayerService/README.md @@ -25,7 +25,7 @@ Simply launch the sample to see a raster from an image service being used on a m ## About the data -This sample uses a [NOAA raster image service](https://gis.ngdc.noaa.gov/arcgis/rest/services/bag_hillshades/ImageServer). The service computes a hillshade image from the depth (in meters) of U.S. coastal waters. +This sample uses a [NOAA raster image service](https://gis.ngdc.noaa.gov/arcgis/rest/services/bag_hillshades_subsets/ImageServer). The service computes a hillshade image from the depth (in meters) of U.S. coastal waters. ## Tags diff --git a/ArcGISRuntimeSDKQt_CppSamples/Layers/RasterLayerService/RasterLayerService.cpp b/ArcGISRuntimeSDKQt_CppSamples/Layers/RasterLayerService/RasterLayerService.cpp index 0ed3f32a2e..c96e03b084 100644 --- a/ArcGISRuntimeSDKQt_CppSamples/Layers/RasterLayerService/RasterLayerService.cpp +++ b/ArcGISRuntimeSDKQt_CppSamples/Layers/RasterLayerService/RasterLayerService.cpp @@ -60,7 +60,7 @@ void RasterLayerService::componentComplete() //! [ImageServiceRaster Create a new image service raster] // create an image service raster ImageServiceRaster* imageServiceRaster = new ImageServiceRaster( - QUrl(QStringLiteral("https://gis.ngdc.noaa.gov/arcgis/rest/services/bag_hillshades/ImageServer")), this); + QUrl(QStringLiteral("https://gis.ngdc.noaa.gov/arcgis/rest/services/bag_hillshades_subsets/ImageServer")), this); // zoom to the center of the raster once it's loaded connect(imageServiceRaster, &ImageServiceRaster::doneLoading, this, [this]() { diff --git a/ArcGISRuntimeSDKQt_QMLSamples/Layers/RasterLayerService/README.md b/ArcGISRuntimeSDKQt_QMLSamples/Layers/RasterLayerService/README.md index f8bac9fc1e..48ad407533 100644 --- a/ArcGISRuntimeSDKQt_QMLSamples/Layers/RasterLayerService/README.md +++ b/ArcGISRuntimeSDKQt_QMLSamples/Layers/RasterLayerService/README.md @@ -25,7 +25,7 @@ Simply launch the sample to see a raster from an image service being used on a m ## About the data -This sample uses a [NOAA raster image service](https://gis.ngdc.noaa.gov/arcgis/rest/services/bag_hillshades/ImageServer). The service computes a hillshade image from the depth (in meters) of U.S. coastal waters. +This sample uses a [NOAA raster image service](https://gis.ngdc.noaa.gov/arcgis/rest/services/bag_hillshades_subsets/ImageServer). The service computes a hillshade image from the depth (in meters) of U.S. coastal waters. ## Tags diff --git a/ArcGISRuntimeSDKQt_QMLSamples/Layers/RasterLayerService/RasterLayerService.qml b/ArcGISRuntimeSDKQt_QMLSamples/Layers/RasterLayerService/RasterLayerService.qml index 32ca766c4b..e13c8863b1 100644 --- a/ArcGISRuntimeSDKQt_QMLSamples/Layers/RasterLayerService/RasterLayerService.qml +++ b/ArcGISRuntimeSDKQt_QMLSamples/Layers/RasterLayerService/RasterLayerService.qml @@ -48,7 +48,7 @@ Rectangle { // create the raster layer from an image service raster ImageServiceRaster { id: imageServiceRaster - url: "https://gis.ngdc.noaa.gov/arcgis/rest/services/bag_hillshades/ImageServer" + url: "https://gis.ngdc.noaa.gov/arcgis/rest/services/bag_hillshades_subsets/ImageServer" // zoom to the center of the raster once it's loaded onLoadStatusChanged: {