作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经创建了一个应用程序来为谷歌地图中的折线设置动画,一旦我们从下拉列表中选择了一个特定的用户,动画就会开始,该应用程序工作正常,但问题是,一旦一个特定的动画已启动并正在继续,如果我们选择另一个用户,应用程序将被挂起并显示意外的动画,
任何人都可以告诉我一些解决方案,用于在选择另一个用户之后中断动画并且需要在之后显示所选用户的折线动画
<html lang="en">
<head>
<script data-require="lodash.js@2.4.1" data-semver="2.4.1" src="http://cdnjs.cloudflare.com/ajax/libs/lodash.js/2.4.1/lodash.js"></script>
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script type="text/javascript" src="https://code.angularjs.org/1.2.16/angular.js"></script>
<script type="text/javascript" src="script.js"></script>
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false&libraries=panoramio"></script>
</head>
<body ng-app="app" ng-controller="Controller">
<select ng-change="showGPSTracking()" ng-model="user">
<option selected="selected" value="" class="">Select User</option>
<option value="1458">1458</option>
<option value="1658">1658</option>
</select>
</br></br></br></br>
<div style="width: 880px;">
<div id="map" style="width: 880px; height: 500px; float: left;"></div>
</div>
</body>
</html>
最佳答案
您遇到的问题是您只有一个全局 map
变量。每次更改用户时,您都会更新该映射并创建数百个函数调用。因此,第一个 map 上的那些函数调用开始与第二个 map 上的那些函数调用发生冲突——它们都在同一个 map 对象上工作。
我在这里快速而肮脏的修复只是让 map 对象成为局部变量,并将其传递给 autoRefresh
函数。对第一张 map 上的函数的调用仍将发生,只是结果将不可见,因为当您将 map div 重新分配给新 map 时,您实际上已经隐藏了该 map 。
我认为这并不理想,但它似乎对我有用。理想情况下,您可以通过某种方式“停止”其中一张 map 上的动画,并阻止执行添加到路线的所有功能。
var app = angular.module('app', []);
app.controller("Controller", function($scope, $http, item) {
$scope.tracker = {};
var items;
$scope.showLiveMap = false;
$scope.showLiveMap = false;
var firtslat, firstlong;
var icon = new google.maps.MarkerImage("http://maps.google.com/mapfiles/ms/micons/blue.png");
var center = null;
//var map = null; - you don't need this any more
var currentPopup;
var bounds = new google.maps.LatLngBounds();
var markLAT, markLNG, trackId;
var marker;
function moveMarker(map, marker, lat, lon) {
try {
marker.setPosition(new google.maps.LatLng(lat, lon));
map.panTo(new google.maps.LatLng(lat, lon));
} catch (e) {}
}
$scope.autoRefresh = function(map) {
try {
var route = new google.maps.Polyline({
path: [],
geodesic : true,
strokeColor: '#FF0000',
strokeOpacity: 1.0,
strokeWeight: 2,
editable: false,
map:map
}),
index=0,
marker=new google.maps.Marker({map:map,icon:icon});
if (!_.isEmpty(items)) {
angular.forEach(items, function(cordinates) {
setTimeout(function ()
{
route.getPath().push(new google.maps.LatLng(cordinates.lat, cordinates.lng));
// route.setMap(map); not necessary, you set the map when you created the route
moveMarker(map, marker, cordinates.lat, cordinates.lng);
markLAT = cordinates.lat;
markLNG = cordinates.lng;
}, 200*++index);
});
}
//
} catch (e) {
console.log(e);
}
};
function initMap(user)
{
items = item.items[user];
try {
markLAT = items[items.length - 1].lat;
markLNG = items[items.length - 1].lng;
var map = new google.maps.Map(document.getElementById("map"), {
center: new google.maps.LatLng(markLAT, markLNG),
zoom: 10,
mapTypeId: google.maps.MapTypeId.ROADMAP,
mapTypeControlOptions: {
style: google.maps.MapTypeControlStyle.DROPDOWN_MENU
},
navigationControl: true,
navigationControlOptions: {
style: google.maps.NavigationControlStyle.SMALL
}
});
$scope.autoRefresh(map); // passed the local map variable into the function
} catch (e) {
console.log(e);
}
}
$scope.showGPSTracking = function() {
if (!_.isNull($scope.user)) {
initMap($scope.user);
} else {
console.log("entered");
$scope.showLiveMap = false;
}
};
});
关于javascript - 根据用户在下拉列表中的选择在谷歌地图中显示多段线动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27987172/
leaflet:一个开源并且对移动端友好的交互式地图 JavaScript 库 中文文档: https://leafletjs.cn/reference.html 官网(英文): ht
我是一名优秀的程序员,十分优秀!