Google Maps zoomOut-Pan-zoomIn animation

后端 未结 4 1941
清歌不尽
清歌不尽 2020-12-24 07:30

I\'m wondering how I get a smooth zoom in animation with the Google Maps API.

I have 2 points, one in, let say China, and one in France. When I\'m zoomed in on China

4条回答
  •  天涯浪人
    2020-12-24 08:20

    Here's my approach.

    var point = markers[id].getPosition(); // Get marker position
    map.setZoom(9); // Back to default zoom
    map.panTo(point); // Pan map to that position
    setTimeout("map.setZoom(14)",1000); // Zoom in after 1 sec
    

提交回复
热议问题