What does your code look like? Today I realized that I had the same problem (it worked the last couple of months) and came here for answers, but ultimately came across a solution.
Old code:
<script>
function initMap(lat,lon) {
var uluru = {lat: parseFloat(lat), lng: parseFloat(lon)};
var map = new google.maps.Map(document.getElementById('map'), {
zoom: 4,
center: uluru
});
}
:
<script>
function initMap(lat,lon) {
var uluru = {lat: lat, lng: lon};
var map = new google.maps.Map(document.getElementById('map'), {
zoom: 4,
center: uluru
});
}
, latidue longitude float initMap.