Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 682 Bytes

File metadata and controls

37 lines (26 loc) · 682 Bytes

💚 This is the latest document.

map.animateCameraZoomIn()

Zooming in the camera with animation.

map.animateCameraZoomIn(callback);

Parameters

name type description
callback Function (optional) callback

Demo code

<div id="map_canvas">
    <button>Click here</button>
</div>
var div = document.getElementById("map_canvas");
var map = plugin.google.maps.Map.getMap(div);

var button = div.getElementsByTagName('button')[0];
button.addEventListener('click', function() {
  map.animateCameraZoomIn();
});