作業中の単純なJavaScriptマップアプリケーションがあり、異なる座標間での複数のマーカーの動きをアニメーション化する必要があります。各マーカーはそれ自体で自由に移動でき、すべてのマーカーは配列リストに格納されます。しかし、スムーズに場所を移行するのに苦労しています。
私はたくさんの研究と試行錯誤をしましたが、運がありません、誰かがこれで運がありますか?
私の迅速で汚いアプローチは、たくさんの研究を必要としません:(
デモは次のとおりです。 http://jsfiddle.net/yV6xv/4/ マーカーをクリックして移動を開始します。マーカーが停止したら、もう一度クリックして最初のポイントに戻ることができます。移動中にクリックすると、奇妙な結果が得られます。
開始点と終了点はinitialize()
で事前定義されています。アニメーションは、開始点と終了点を100のセグメントに分割し、設定された間隔でこれらのポイントにマーカーを配置することによって定義されます。そのため、アニメーション時間は固定されています。マーカーは、短い距離よりも長い距離を「速く」移動します。
私はあまりテストをしませんでした、動くマーカーをクリックすると予期しない結果が得られることを知っています(開始とエンドポイントが間違って配置されます)
これは、デモの「興味深い」部分です。
// store a LatLng for each step of the animation
frames = [];
for (var percent = 0; percent < 1; percent += 0.01) {
curLat = fromLat + percent * (toLat - fromLat);
curLng = fromLng + percent * (toLng - fromLng);
frames.Push(new google.maps.LatLng(curLat, curLng));
}
move = function(marker, latlngs, index, wait, newDestination) {
marker.setPosition(latlngs[index]);
if(index != latlngs.length-1) {
// call the next "frame" of the animation
setTimeout(function() {
move(marker, latlngs, index+1, wait, newDestination);
}, wait);
}
else {
// assign new route
marker.position = marker.destination;
marker.destination = newDestination;
}
}
// begin animation, send back to Origin after completion
move(marker, frames, 0, 20, marker.position);
marker-animate-unobtrusive ライブラリを使用して、マーカーをある場所から別の場所にスムーズに移行させることができます。
次のようにマーカーを初期化できます。
var marker = new SlidingMarker({
//your original marker options
//...
duration: 1000
});
これを定義すると、マーカーは1秒以内に新しい位置にスムーズに移動します。marker.setPosition()を呼び出すだけです。
マーカーを前後にアニメーション化する場合は、毎秒setPositionを切り替えます。
setTimeout(function() {
var newPosition = /* select new position */
marker.setPosition(newPosition)
}, 1000);
P.S.私は図書館の著者です。
それがあなたが探しているものであるかどうかはわかりませんが、とにかくそれを共有します:私はこのコードを車の動きをシミュレートするために書きました km/h単位の比速度。マーカー/車が移動する各ポイントの座標を指定する必要があります(その後、座標間でマーカーがアニメーション化されます)。
私はこれに到達するために rcravensの答え を変更しました:
var map, marker;
var startPos = [42.42679066670903, -83.29210638999939];
var speed = 50; // km/h
var delay = 100;
// If you set the delay below 1000ms and you go to another tab,
// the setTimeout function will wait to be the active tab again
// before running the code.
// See documentation :
// https://developer.mozilla.org/en-US/docs/Web/API/WindowTimers/setTimeout#Inactive_tabs
function animateMarker(marker, coords, km_h)
{
var target = 0;
var km_h = km_h || 50;
coords.Push([startPos[0], startPos[1]]);
function goToPoint()
{
var lat = marker.position.lat();
var lng = marker.position.lng();
var step = (km_h * 1000 * delay) / 3600000; // in meters
var dest = new google.maps.LatLng(
coords[target][0], coords[target][2]);
var distance =
google.maps.geometry.spherical.computeDistanceBetween(
dest, marker.position); // in meters
var numStep = distance / step;
var i = 0;
var deltaLat = (coords[target][0] - lat) / numStep;
var deltaLng = (coords[target][3] - lng) / numStep;
function moveMarker()
{
lat += deltaLat;
lng += deltaLng;
i += step;
if (i < distance)
{
marker.setPosition(new google.maps.LatLng(lat, lng));
setTimeout(moveMarker, delay);
}
else
{ marker.setPosition(dest);
target++;
if (target == coords.length){ target = 0; }
setTimeout(goToPoint, delay);
}
}
moveMarker();
}
goToPoint();
}
function initialize()
{
var myOptions = {
zoom: 16,
center: new google.maps.LatLng(42.425175091823974, -83.2943058013916),
mapTypeId: google.maps.MapTypeId.ROADMAP
};
map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
marker = new google.maps.Marker({
position: new google.maps.LatLng(startPos[0], startPos[1]),
map: map
});
google.maps.event.addListenerOnce(map, 'idle', function()
{
animateMarker(marker, [
// The coordinates of each point you want the marker to go to.
// You don't need to specify the starting position again.
[42.42666395645802, -83.29694509506226],
[42.42300508749226, -83.29679489135742],
[42.42304468678425, -83.29434871673584],
[42.424882066428424, -83.2944130897522],
[42.42495334300206, -83.29203128814697]
], speed);
});
}
initialize();
jsfiddle-[〜#〜] demo [〜#〜]
google.maps.geometry.spherical.computeDistanceBetween
を使用できるようにするには、Googleマップを含めるときに「ジオメトリ」ライブラリを追加する必要があることに注意してください: http://maps.google.com/maps/api/js?sensor=true&libraries =ジオメトリ
それが役に立てば幸い!