Попытка инициализировать карту с помощью API Карт Google.Введите широту и долготу центра в виде чисел.Получив ошибку, которая говорит, что они не числители.
var map; // Variable used to create new map
var mapDiv = document.getElementById('ippudo-map'); // Location of the map in the html
// Create a function to initialize the map
function initMap() {
map = new google.maps.Map(mapDiv, {
center: {lat: 42.3601, long: 71.0589},
zoom: 8
});
}