Abundance Vulnerable to Climate Changes: Biomass (spring)

The Abundance Vulnerable to Climate Changes: Biomass (spring) dataset is consumed from an external ArcGIS web service via the following URL and ID

https://mgelmaps.env.duke.edu/mdat/rest/services/MDAT/Fish_SummaryProducts_NEFSC/MapServer
ID: 16

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(
    "Abundance Vulnerable to Climate Changes: Biomass (spring)",
    "https://mgelmaps.env.duke.edu/mdat/rest/services/MDAT/Fish_SummaryProducts_NEFSC/MapServer/export",
    {
        layers: "show:16",
        transparent: true
    },
    {
        isBaseLayer: false
    }
);
map.addLayer(layer);