Wrecks and Obstructions Density Per OCS Lease Block

The Wrecks and Obstructions Density Per OCS Lease Block dataset is consumed from an external ArcGIS web service via the following URL and ID

https://oceandata.rad.rutgers.edu/arcgis/rest/services/Maritime/ShipwreckDensity_UpdateSep2018/MapServer
ID: 

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(
    "Wrecks and Obstructions Density Per OCS Lease Block",
    "https://oceandata.rad.rutgers.edu/arcgis/rest/services/Maritime/ShipwreckDensity_UpdateSep2018/MapServer/export",
    {
        layers: "show:",
        transparent: true
    },
    {
        isBaseLayer: false
    }
);
map.addLayer(layer);