• JavaScript
  • HTML
                  
                  

                  
                
                  
                  
<!DOCTYPE html>
<html>
  <head>
    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=yes">
    <meta http-equiv="Content-type" content="text/html;charset=UTF-8">
    <title>Changing from the Metric System</title>
    <link rel="stylesheet" type="text/css" href="https://js.api.here.com/v3/3.1/mapsjs-ui.css" />
    <link rel="stylesheet" type="text/css" href="demo.css" />
    <link rel="stylesheet" type="text/css" href="styles.css" />
    <link rel="stylesheet" type="text/css" href="../template.css" />
    <script type="text/javascript" src='../test-credentials.js'></script>    
    <script type="text/javascript" src="https://js.api.here.com/v3/3.1/mapsjs-core.js"></script>
    <script type="text/javascript" src="https://js.api.here.com/v3/3.1/mapsjs-service.js"></script>
    <script type="text/javascript" src="https://js.api.here.com/v3/3.1/mapsjs-ui.js"></script>
    <script type="text/javascript" src="https://js.api.here.com/v3/3.1/mapsjs-mapevents.js"></script>
  <script>window.ENV_VARIABLE = 'developer.here.com'</script><script src='../iframeheight.js'></script></head>
  <body id="markers-on-the-map">
    
    <div class="page-header">
        <h1>Changing from the Metric System</h1>
        <p>Display a map including a scale bar in miles or yards</p>
    </div>
    <p>This example displays a movable map centered over the business district of <b>Boston</b> <i>(42.3572°N, 71.0596°W)</i>. 
      The scale bar of the map is displayed in miles, yards or feet dependent upon the zoom level.</p>
    <div id="map"></div>
    <h3>Code</h3>
    The system of units displayed on the scale bar can be changed by calling the <code>setUnitSystem()</code> method, 
    and providing one of the <code>H.ui.UnitSystem</code> enum values.
    <script type="text/javascript" src='demo.js'></script>
  </body>
</html>