By adinag on Thursday, 25 July 2019
Replies 2
Likes 0
Views 3K
Votes 0
Hey guys!

For some reason in the past couple days there's been something weird that's happened...

All my maps are showing "Sorry, we have no imagery here"

But what's even weirder is that if you click on a location detail page it will display the map then it disappears and shows the error...

See this location detail page
https://www.latindanceevents.com/events/california/san-francisco/dance-studios/detail/2522/1/suzie-s-studio

Any ideas what's going on?

Thanks!
Adina
Hi guys!

So I opened a trouble ticket with Google Maps and well.... who knows when they will get back to me on this....

BUT I found this thread on the subject

https://support.google.com/maps/thread/9781336?hl=ko

The latest response from today is from someone saying the following

Looks like google released some change.

Caused our telematics app to lose maps on production. It only took an hour reading through zero release documentation on google maps documentation and debugging to pin it down....

Depending on what you are doing. Adding the version number to your import might solve your problem. like so https://maps.googleapis.com/maps/api/js?key=[YourAPIKey]&v=3.XY

"v=3" will also work. A this point I'm assuming if you don't specify a version you are always on latest which may not mean stable.


Does this make sense to you guys?
·
5 years ago
·
0 Likes
·
0 Votes
·
0 Comments
·
That's interesting, can you edit:

plugins\jevents\jevlocations\jevlocations.php

and change:


if ($googleStaticMapKey != "")
{
$key = "&key=$googleStaticMapKey";
}
else if ($googlekey != "")
{
$key = "&key=$googlekey";
}


to:


if ($googleStaticMapKey != "")
{
$key = "&key=$googleStaticMapKey&v=3";
}
else if ($googlekey != "")
{
$key = "&key=$googlekey&v=3";
}


Same in:

plugins\jevents\jevlocations\jevlocations_new matchingcode.php


Does that help?
·
5 years ago
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post