15

我想在谷歌地图中绘制一条动画(测地线)折线,有点像这样: http: //planefinder.net/route/SFO/

我发现了许多关于如何沿多段线为符号设置动画的教程,但没有关于将多段线本身从源到目的地设置动画的内容。

有什么提示吗?我应该从哪里开始?

非常感谢任何帮助。

4

1 回答 1

23

我在以下方面取得了一些成功:

 var departure = new google.maps.LatLng(dept_lat, dept_lng); //Set to whatever lat/lng you need for your departure location
 var arrival = new google.maps.LatLng(arr_lat, arr_lng); //Set to whatever lat/lng you need for your arrival location
 var line = new google.maps.Polyline({
      path: [departure, departure],
      strokeColor: "#FF0000",
      strokeOpacity: 1,
      strokeWeight: 1,
      geodesic: true, //set to false if you want straight line instead of arc
      map: map,
 });
 var step = 0;
 var numSteps = 250; //Change this to set animation resolution
 var timePerStep = 5; //Change this to alter animation speed
 var interval = setInterval(function() {
     step += 1;
     if (step > numSteps) {
         clearInterval(interval);
     } else {
         var are_we_there_yet = google.maps.geometry.spherical.interpolate(departure,arrival,step/numSteps);
         line.setPath([departure, are_we_there_yet]);
     }
 }, timePerStep);

这基本上是使用间隔来重绘路径。在每一步,可见的动画路径占从出发到到达直到最终到达到达位置的总路径的较大百分比。

于 2013-07-29T19:22:34.193 回答