Я ссылаюсь на приведенный ниже пример карты Google.Я пытаюсь обновлять положение значка каждые 10 секунд с новым набором значений lat, lng, поэтому каждые 10 секунд я буду пропускать новый lat / lon, чтобы значок перемещался (как движущаяся машина) var uluru {lat: 51.89269433333334, lng: -0.47702666666666665};
Мой вопрос: без загрузки карты каждые 10 секунд, можем ли мы обновлять широту / долготу значка каждые 10 секунд?или мы должны обновлять карту каждые 10 секунд?если да, пожалуйста, дайте мне знать, как.
Спасибо за помощь
<!DOCTYPE html>
<html>
<head>
<style>
/* Set the size of the div element that contains the map */
#map {
height: 800px; /* The height is 400 pixels */
width: 100%; /* The width is the width of the web page */
}
</style>
</head>
<body>
<h3>My Google Maps Demo</h3>
<!--The div element for the map -->
<div id="map"></div>
<script>
// Initialize and add the map
function initMap() {
// The location of Uluru
var uluru = {lat: 51.89269433333334, lng: -0.47702666666666665};
// The map, centered at Uluru
var map = new google.maps.Map(
document.getElementById('map'), {zoom: 13, center: uluru});
// The marker, positioned at Uluru
var marker = new google.maps.Marker({position: uluru, map: map});
}
</script>
<!--Load the API from the specified URL
* The async attribute allows the browser to render the page while the API loads
* The key parameter will contain your own API key (which is not needed for this tutorial)
* The callback parameter executes the initMap() function
-->
<script async defer
src="https://maps.googleapis.com/maps/api/js?key=&callback&callback=initMap">
</script>
</body>
</html>