Freshwater Integrity

The Freshwater Integrity dataset is consumed from an external ArcGIS web service via the following URL and ID
https://nrimp.dfw.state.or.us/arcgis/rest/services/Compass/ODFW_CrucialHabitat_Assessment/MapServer
ID: 10

OpenLayers

If you are developing in OpenLayers, you will want to use the OpenLayers ArcGIS93Rest class.

An example of your solution might look similar to the code below.

layer = new OpenLayers.Layer.ArcGIS93Rest(
    "Freshwater Integrity",
    "https://nrimp.dfw.state.or.us/arcgis/rest/services/Compass/ODFW_CrucialHabitat_Assessment/MapServer/export",
    {
        layers: "show:10",
        transparent: true
    },
    {
        isBaseLayer: false
    }
);
map.addLayer(layer);