gpt4 book ai didi

javascript - 动画符号 - Google Maps API

转载 作者:行者123 更新时间:2023-11-29 21:59:06 26 4
gpt4 key购买 nike

我正在尝试使用此演示为线条上的符号设置动画。

Google Maps API - Animating Symbols

我的问题是我想使用图片而不是 Google 符号,但是当我使用上面的代码时,图片没有显示,只有 Google 符号。

这是相关代码。其余的与示例中的完全相同。

var line = new google.maps.Polyline({
path: lineCoordinates,
map: map,
icons: [{
icon: 'icons/cannon.png',
offset: '100%'
}]
});

最佳答案

问题是 google.maps.Polyline 只接受 Symbol作为论据,而不是图像。

然而,希望并没有完全破灭。您有两种不同的动画选项。

(1) 按照文档中的说明自己制作符号路径:

The symbol's path, which is a built-in symbol path, or a custom path expressed using SVG path notation. Required.

然后使用您在 google api 文档示例中使用的相同代码制作动画。

(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 maps 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 位置。)

干杯。

关于javascript - 动画符号 - Google Maps API,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24884739/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com