Pots and Traps 2001-2005

The Pots and Traps 2001-2005 dataset is consumed from an external ArcGIS web service via the following URL and ID

https://oceandata.rad.rutgers.edu/arcgis/rest/services/CAS_VTR_PotsTraps/2001_2005/MapServer
ID: 46

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(
    "Pots and Traps 2001-2005",
    "https://oceandata.rad.rutgers.edu/arcgis/rest/services/CAS_VTR_PotsTraps/2001_2005/MapServer/export",
    {
        layers: "show:46",
        transparent: true
    },
    {
        isBaseLayer: false
    }
);
map.addLayer(layer);