Map Defaults
This example shows the map that NPMap builds when you provide it with the only two required configuration properties: 'api' and 'div'.
Related resources:
Map
Code
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<div id="example-map" style="height:500px;position:absolute;width:500px;">
</div>
<script>
var NPMap = NPMap || {};
NPMap.config = {
api: 'bing',
div: 'example-map'
};
(function() {
var s = document.createElement('script');
s.src = 'http://www.nps.gov/npmap/1.0.0/bootstrap.js';
document.body.appendChild(s);
})();
</script>
</body>
</html>