Gillnet 2011-2015 Ports

The Gillnet 2011-2015 Ports 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_Gillnet/2011_2015/MapServer
ID: 0

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(
    "Gillnet 2011-2015 Ports",
    "https://oceandata.rad.rutgers.edu/arcgis/rest/services/CAS_VTR_Gillnet/2011_2015/MapServer/export",
    {
        layers: "show:0",
        transparent: true
    },
    {
        isBaseLayer: false
    }
);
map.addLayer(layer);