Outer Continental Shelf Lease Blocks

The Outer Continental Shelf Lease Blocks dataset is consumed from an external ArcGIS web service via the following URL and ID

https://gis.boem.gov/arcgis/rest/services/BOEM_BSEE/MMC_Layers/MapServer
ID: 11

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(
    "Outer Continental Shelf Lease Blocks",
    "https://gis.boem.gov/arcgis/rest/services/BOEM_BSEE/MMC_Layers/MapServer/export",
    {
        layers: "show:11",
        transparent: true
    },
    {
        isBaseLayer: false
    }
);
map.addLayer(layer);