Я прошел через следующий пример Google Maps .Большое уведомление гласит:
Примечание. Функция входа в систему устарела.Версии 3.27 и более ранние версии API JavaScript Карт продолжают поддерживать карты входа, но в будущей версии они больше не будут поддерживать карты входа.Пожалуйста, смотрите примечания к выпуску обновлений.(Вы можете подписаться на заметки о выпуске.) Будущие версии API JavaScript Карт будут продолжать поддерживать функции, которые сохраняют место в Картах Google с помощью информационного окна или SaveWidget.
Я пробовалиспользуя SaveWidget и информационное окно, но оно не отображает никаких элементов управления, которые позволяют вам Сохранить место .Он имеет только ссылку «Просмотр в Картах Google», которая приводит вас в Google Maps.Есть ли способ добавить место в свои сохраненные места с помощью кнопки без перенаправления в Google Maps ??Я думаю, что их определение «Сохранить место» вводит в заблуждение ...
В примере кода также указано следующее:
//When you add a marker using a Place instead of a location, the Maps
//API will automatically add a 'Save to Google Maps' link to any info
//window associated with that marker.
Вот код, показывающий ссылку «Просмотр на Google Картах».
<!DOCTYPE html>
<html>
<head>
<title>Save a Place</title>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<meta charset="utf-8">
<style>
/* Always set the map height explicitly to define the size of the div
* element that contains the map. */
#map {
height: 100%;
}
/* Optional: Makes the sample page fill the window. */
html, body {
height: 100%;
margin: 0;
padding: 0;
}
</style>
<script>
// When you add a marker using a Place instead of a location, the Maps
// API will automatically add a 'Save to Google Maps' link to any info
// window associated with that marker.
function initMap() {
var map = new google.maps.Map(document.getElementById('map'), {
zoom: 17,
center: {lat: -33.8666, lng: 151.1958}
});
var marker = new google.maps.Marker({
map: map,
// Define the place with a location, and a query string.
place: {
location: {lat: -33.8666, lng: 151.1958},
query: 'Google, Sydney, Australia'
},
// Attributions help users find your site again.
attribution: {
source: 'Google Maps JavaScript API',
webUrl: 'https://developers.google.com/maps/'
}
});
// Construct a new InfoWindow.
var infoWindow = new google.maps.InfoWindow({
content: 'Google Sydney'
});
// Opens the InfoWindow when marker is clicked.
marker.addListener('click', function() {
infoWindow.open(map, marker);
});
}
</script>
</head>
<body>
<div id="map"></div>
<script async defer
src="https://maps.googleapis.com/maps/api/js?v=3.27&key=YOUR_API_KEY&signed_in=true&callback=initMap">
</script>
</body>
</html>