Skip to content

Instantly share code, notes, and snippets.

@nateirwin
Last active August 29, 2015 14:28
Show Gist options
  • Save nateirwin/b14130c2d676562fd49c to your computer and use it in GitHub Desktop.
Save nateirwin/b14130c2d676562fd49c to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=no">
<title>WMS Layer | Examples | NPMap.js</title>
<link href="wms-layer.css" rel="stylesheet">
</head>
<body>
<div id="map"></div>
<script src="wms-layer.js"></script>
</body>
</html>
body {
margin: 0;
padding: 0;
}
#map {
bottom: 0;
position: absolute;
top: 0;
width: 100%;
}
var NPMap = {
div: 'map',
overlays: [{
attribution: 'NOAA',
format: 'image/png',
layers: 'RAS_RIDGE_NEXRAD',
transparent: true,
type: 'wms',
url: 'http://nowcoast.noaa.gov/wms/com.esri.wms.Esrimap/obs'
}]
};
(function () {
var s = document.createElement('script');
s.src = 'http://www.nps.gov/lib/npmap.js/2.0.0/npmap-bootstrap.js';
document.body.appendChild(s);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment