Bottom Trawl < 65 ft 2006-2010

The Bottom Trawl < 65 ft 2006-2010 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_BTSmall/2006_2010/MapServer
ID: 45

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(
    "Bottom Trawl < 65 ft 2006-2010",
    "https://oceandata.rad.rutgers.edu/arcgis/rest/services/CAS_VTR_BTSmall/2006_2010/MapServer/export",
    {
        layers: "show:45",
        transparent: true
    },
    {
        isBaseLayer: false
    }
);
map.addLayer(layer);