Skip to content

Instantly share code, notes, and snippets.

@karlbenedict
Created May 1, 2014 17:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save karlbenedict/9411aac24a88cdbea803 to your computer and use it in GitHub Desktop.
Save karlbenedict/9411aac24a88cdbea803 to your computer and use it in GitHub Desktop.
OpenLayers - USGS National Atlas - Native American Lands WMS
// from USGS National Atlas: http://webservices.nationalatlas.gov/wms/boundaries?SERVICE=WMS&REQUEST=GetCapabilities
naLayer = new OpenLayers.Layer.WMS(
"Native American Lands",
"http://webservices.nationalatlas.gov/wms?",
{layers: "indlan", version: '1.3.0', transparent: 'TRUE'},
{isBaseLayer: false, visibility: false, opacity: .5}
);
map.addLayer(indlanLayer);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment