我试图使用这个演示来为线上的符号设置动画。
Google Maps API - Animating Symbols
我的问题是我想使用图片而不是谷歌符号,但是当我使用上面的代码时,图片没有显示,只有Google符号。
这是相关代码。其余所有内容与示例完全相同。
var line = new google.maps.Polyline({
path: lineCoordinates,
map: map,
icons: [{
icon: 'icons/cannon.png',
offset: '100%'
}]
});
答案 0 :(得分:2)
问题在于google.maps.Polyline
仅接受Symbol作为参数,而不是图像。
然而,希望并非全都失去。您有两种不同的动画选项。
(1)按照文档中的说明自行制作符号路径:
符号的路径,它是内置符号路径或自定义路径 用SVG路径表示法表示。必需的。
然后使用google api docs示例中使用的相同代码进行动画处理。
(2)动画标记您已将图像更改为您喜欢的图像。
<强> Js fiddle example about this 强>
链接下面代码的相关部分,请注意我使用requestAnimationFrame来踩动画,因为它通常被称为做动画的最佳做法。
<强> JavaScript的:强>
/**
* requestAnimationFrame version: "0.0.17" Copyright (c) 2011-2012, Cyril Agosta ( cyril.agosta.dev@gmail.com) All Rights Reserved.
* Available via the MIT license.
* see: http://github.com/cagosta/requestAnimationFrame for details
*
* http://paulirish.com/2011/requestanimationframe-for-smart-animating/
* http://my.opera.com/emoller/blog/2011/12/20/requestanimationframe-for-smart-er-animating
* requestAnimationFrame polyfill by Erik Möller. fixes from Paul Irish and Tino Zijdel
* MIT license
*
*/
( function() {
if ( typeof window === 'undefined' )
return
if ( window.requestAnimationFrame )
return window.requestAnimationFrame
if ( window.webkitRequestAnimationFrame ) { // Chrome <= 23, Safari <= 6.1, Blackberry 10
window.requestAnimationFrame = window[ 'webkitRequestAnimationFrame' ];
window.cancelAnimationFrame = window[ 'webkitCancelAnimationFrame' ] || window[ 'webkitCancelRequestAnimationFrame' ];
return window.requestAnimationFrame
}
// IE <= 9, Android <= 4.3, very old/rare browsers
var lastTime = 0;
window.requestAnimationFrame = function( callback, element ) {
var currTime = new Date().getTime();
var timeToCall = Math.max( 0, 16 - ( currTime - lastTime ) );
var id = window.setTimeout( function() {
callback( currTime + timeToCall );
},
timeToCall );
lastTime = currTime + timeToCall;
return id; // return the id for cancellation capabilities
};
window.cancelAnimationFrame = function( id ) {
clearTimeout( id );
};
if ( typeof define === 'function' ) {
define( function() {
return window.requestAnimationFrame;
} )
}
} )();
/**
* The application code
*
*/
function initialize() {
var myLatlng = new google.maps.LatLng(35, 105);
var myOptions = {
zoom: 5,
center: myLatlng,
mapTypeId: google.maps.MapTypeId.ROADMAP
}
var map = new google.maps.Map(document.getElementById("map-canvas"), myOptions);
// Path we are animating along
var route = new google.maps.Polyline({
path: [
new google.maps.LatLng(35, 110),
new google.maps.LatLng(35, 100)
],
map: map
});
// Marker object we are animation
var marker = new google.maps.Marker({
position: new google.maps.LatLng(35, 110),
map: map,
icon: "http://placehold.it/32/ff0000" // Change this image to one you want
});
// Handle to requestAnimationFrame
var requestID,
// How many times we move
steps = 0;
/**
* Method for animating marker along the line
*
*/
var draw = function() {
// Controlling the speed of animation
requestID = requestAnimationFrame(draw);
// Current position of the marker
var pos = marker.getPosition();
// Next position of the marker (we use - 0.1 from previous position)
marker.setPosition(new google.maps.LatLng(pos.lat(), pos.lng() - 0.1));
// If we have reached the end of the path - cancel animationFrame
if (steps === 99) {
cancelAnimationFrame(requestID);
return;
}
// Increasing steps
steps++;
};
// Start animation
draw();
}
// Init
google.maps.event.addDomListener(window, 'load', initialize);
此外,如果jsfiddle示例在某个时刻死亡:
HTML:页面的所有常规标记,加上:
<div id="map-canvas"></div>
<强> CSS:强>
html, body {
height: 100%;
}
#map-canvas {
height:500px;
width:500px;
}
另外,请记住包含Google地图JavaScript。 :)
作为最后一点,而不是:
// Next position of the marker (we use - 0.1 from previous position)
marker.setPosition(new google.maps.LatLng(pos.lat(), pos.lng() - 0.1));
您还可以通过沿MVCarray接收的位置行走来使用更复杂的路径,您可以通过调用以下方式从折线本身获取:
// Path for marker
path = route.getPath();
关于它的完整示例演示了 in this js fiddle example (注意:动画很快,因为示例在折线路径中仅使用了11个LatLng位置。)
干杯。