Google Maps Problem

Well, I cannot "join the forum for publishing" on Google Maps, so I think I will ask here. I recently noticed the following error that occurred in the Google Maps Javascript API 3:

SCRIPT5007: 'undefined' is null or not an object main.js, line 17 character 197 

This main.js file is the one used by Google Maps, not one on my own site.
It seems that the error was caused by the undefined function called with the error here:

 fd[ac](fb,c) 

d[ac] is a function called apply , but fd[ac] does not exist.
Does anyone know how I can make it work again? Or how to actually tell Google about the problem so that they can do something about it?

Thanks.

+4
source share
2 answers

Have you recently changed from Google Maps JavaScript API v2 to v3? I had this error several times when using the implementation of some v2 functions. But once again finding the source of your problem will be difficult to have no code to take a look at.

0
source

Have you added a function to your own code called "f"? This will result in an error of this line.

 function f(){ bla; } 
0
source

All Articles