Fly map's camera to a location
index.html
<!DOCTYPE html>
<html>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>Animation - Fly map&#x27;s camera to a location</title>
  <style type="text/css">
    html,body{margin:0px;height:100%;width:100%}
    .container{width:100%;height:100%}
  </style>
  <link rel="stylesheet" href="https://unpkg.com/maptalks/dist/maptalks.css">
  <script type="text/javascript" src="https://unpkg.com/maptalks/dist/maptalks.min.js"></script>
  <body>

    <div id="map" class="container"></div>
    <script>
      var map = new maptalks.Map('map', {
        center: [-74.08087539941407, 40.636167734187026],
        zoom: 15,
        baseLayer: new maptalks.TileLayer('base', {
          urlTemplate: 'https://{s}.basemaps.cartocdn.com/light_all/{z}/{x}/{y}.png',
          subdomains: ["a","b","c","d"],
          attribution: '&copy; <a href="http://osm.org">OpenStreetMap</a> contributors, &copy; <a href="https://carto.com/">CARTO</a>'
        })
      });

      changeView();

      function changeView() {
        map.animateTo({
          center: [-74.08087539941407, 40.636167734187026],
          zoom: 13,
          pitch: 0,
          bearing: 20
        }, {
          duration: 5000
        });
        setTimeout(function () {
          map.animateTo({
            center: [-74.10704772446428, 40.66032606133018],
            zoom: 18,
            pitch: 65,
            bearing: 360
          }, {
            duration: 7000
          });
        }, 7000);
      }

    </script>
  </body>
</html>
Copied!