• 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>Restrict Map Movement</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>Restrict Map Movement</h1>
        <p>Restrict a moveable map to a given rectangular area</p>
    </div>
    <p>This example displays a moveable map of <b>Alcatraz Island</b>. Even though the map can still be panned and zoomed, 
      the center of the map cannot be moved outside of the marked area</p>
    <div id="map"></div>
    <h3>Code</h3>
    <p>The <code>H.map.ViewModel</code> represents the position of the map. The <code>sync</code> event is fired whenever 
      the rendered map is synchronized with the view-model data. By listening to the sync event the value of the <code>map.center</code> can be restricted to a certain range.</p>
    <script type="text/javascript" src='demo.js'></script>
  </body>
</html>