Добрый день.
Хочу ускорить загрузку сайта по pagespeed.
С картой сайт загружается 70%, без - 97.
И так, есть див
<div class="map" id="js-map"></div>
Перед body прописал скрипты
<script>
// Initialize and add the map
function initMap() {
// The location of Uluru
var mapCenter = {lat: 45.9590269, lng: 12.3180639};
// The map, centered at Uluru
var map = new google.maps.Map(
document.getElementById('js-map'), {zoom: 15, center: mapCenter});
// The marker, positioned at Uluru
var marker = new google.maps.Marker({position: mapCenter, 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 id="js-map-load" async defer
src="">
</script>
И в main.js прописал скрипт для jquery.
let mapOffsetTop = $('#js-map').offset().top;
let scriptGoogleMapApi = $('#js-map-load');
$(window).on('scroll', function () {
if($(this).scrollTop() > mapOffsetTop) {
if(scriptGoogleMapApi.attr('src') === ''){
scriptGoogleMapApi.attr('src', 'https://maps.googleapis.com/maps/api/js?key=KEY&callback=initMap')
}
}
});
Только при скроле в тег src прописывается путь к google map, но карта не работает.
Чего-то я не учел.
Заранее благодарен за подсказку.