NYS Identified Wind Energy Area of Consideration

The NYS Identified Wind Energy Area of Consideration dataset is consumed from an external ArcGIS web service via the following URL and ID

https://opdgig.dos.ny.gov/arcgis/rest/services/NYOPDIG/PhysicalData/MapServer
ID: 35

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(
    "NYS Identified Wind Energy Area of Consideration",
    "https://opdgig.dos.ny.gov/arcgis/rest/services/NYOPDIG/PhysicalData/MapServer/export",
    {
        layers: "show:35",
        transparent: true
    },
    {
        isBaseLayer: false
    }
);
map.addLayer(layer);