Deep-Sea Soft Coral Habitat Suitability

The Deep-Sea Soft Coral Habitat Suitability dataset is consumed from an external ArcGIS web service via the following URL and ID

https://coast.noaa.gov/arcgis/rest/services/MarineCadastre/PhysicalOceanographicAndMarineHabitat/MapServer
ID: 5

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(
    "Deep-Sea Soft Coral Habitat Suitability",
    "https://coast.noaa.gov/arcgis/rest/services/MarineCadastre/PhysicalOceanographicAndMarineHabitat/MapServer/export",
    {
        layers: "show:5",
        transparent: true
    },
    {
        isBaseLayer: false
    }
);
map.addLayer(layer);