- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用此演示为线条上的符号设置动画。
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) 动画标记您已更改为您喜欢的图像。
还链接了下面代码的相关部分,请注意,我使用 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/
给定一个字符串,例如 s="##$$$#",我如何找到索引之前的“#”符号数等于“”数的索引$"符号在索引之后? 示例:如果 s="##$$$#",则输出将为 2。 解释:在索引 2 之前我们有 2
在本教程中,您将借助示例了解 JavaScript 符号。 JavaScript 符号 JavaScript ES6 引入了一种新的原始数据类型,称为 Symbol(符号)。符号是不可变的(不能更改)
在“函数编程的工艺”一书中,符号 '>.>' 将函数连接在一起,与 '.' 的方向相反。但是当我使用 ghci 实现它时,它显示了超出范围的错误 '>.>'。为什么?它是不再使用的旧符号吗? 最佳答案
很难说出这里问的是什么。这个问题是含糊的、模糊的、不完整的、过于宽泛的或修辞性的,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开它,visit the help center 。 已关
我需要从向量中删除 \"。这是我的数据: data <- c("\"https://click.linksynergy.com/link?id=RUxZriH*PWc&offerid=323058.1
我在 Nginx 配置中使用正则表达式来捕获文件 URL,但如果文件 URL 包含 # 符号,正则表达式模式将不会捕获它。 这里是nginx的配置部分。 location ~ ^/p/(?[\w\-=
如何使 & 符号在此图表的第一组条形/列下正确显示: http://jsfiddle.net/VxbrK/2/ 应该是“Apples & Oranges”而不是“Apples & Oranges”。
**在verilog中是什么意思? 我为测试台提供了以下逻辑 localparam NUM_INPUT_BITS = 1; localparam NUM_OUTPUT_BITS
我有一个使用正则表达式来验证电子邮件地址的方法。 public String searchFormail(String searchWord) { Pattern pattern = Patt
我想将一个字符串拆分为数字部分和文本/符号部分我当前的代码不包含负数或小数,并且表现得很奇怪,在输出的末尾添加了一个空列表元素 import re mystring = 'AD%5(6ag 0.33-
我有一些代码需要从数组中选择一个随机字符串,但它一直返回单个字母或数字。如何解决这个问题? var name = ["Yayek", "Vozarut", "Gezex",
我刚开始使用 Python,我在考虑应该使用哪种表示法。我读过 PEP 8关于 Python 符号的指南,我同意那里的大多数内容,除了函数名称(我更喜欢混合大小写风格)。 在 C++ 中,我使用匈牙利
在用 C# 编写代码时,我错误地在 if 语句中的变量前添加了一个符号(而不是感叹号)。 bool b = false; if (@b) { } 我很惊讶它编译成功,没有任何错误。 我想知道:上面的代
本文实例为大家分享了特殊字符替换电话号码中某一部分的方法,ios利用-号替换电话号码中间四位,供大家参考,具体内容如下 1、效果图 2、代码 rootviewcontroll
当我使用“x”和“z”作为符号时,这段代码没有问题: from sympy import * x, z = symbols('x z') y = -6*x**2 + 2*x*z**0.5 + 50*x
我需要从文本中删除标点符号: data <- "Type the command AT&W enter. in order to save the new protocol on modem;"
我有几个数字是 numeric 类。下面的例子。 df = c(12974,12412,124124,124124,34543,4576547,32235) 现在我想在每个数字前添加 '$' 符号而不
我有一个 highcharts 图例,其中符号以不同的大小显示,因为它们在实际图表中的大小不同。不幸的是,当数据点的大小增加时,它们也会在图例中增加。无论数据点大小如何,我都希望图例符号保持相同的大小
我需要使用包含平均值+-SD的标题。到目前为止,我只能得到以下信息: "Mean +- SD or N (%)" [1] "Mean +- SD or N (%)" 如何直接使用“+-”符号?您知道一
使用 XSLT 和 XPath 1.0,我有一个要转义的字符串以用于 URL,例如: one word & another 因此,描述元素的 text() 应该进行 URL 转义。 我该怎么做
我是一名优秀的程序员,十分优秀!