Skip navigation

Measure Control

<style>
#map {
  height: 350px;
  position: relative;
  width: 100%;
}

</style>
<div id="map"></div>

<script>
var NPMap = {
  baseLayers: [
    'bing-aerialLabels'
  ],
  center: {
    lat: 41.3517117,
    lng: -108.7706916
  },
  div: 'map',
  measureControl: {
    units: {
      area: [
        'ac'
      ],
      distance: [
        'mi',
        'ft'
      ]
    }
  },
  zoom: 14
};

(function () {
  var s = document.createElement('script');
  s.src = 'https://www.nps.gov/lib/npmap.js/4.0.0/npmap-bootstrap.js';
  document.body.appendChild(s);
})();

</script>