Skip to content Skip to sidebar Skip to footer

Gmlib Could Not Complete The Operation Due To Error 80020101 (v1.5.3)

I have an application using the latest version (v1.5.3) of GMLIB. Starting today, the map now generates the above generic error when I place an object on the map. My application

Solution 1:

Well, I have made a solution. I have found StyledMarker.js and I have uploaded it into the GitHub GMLib repository.

Now, you only need to do this changes:

  • Into .\resources\map.html file replace this url:

http://google-maps-utility-library-v3.googlecode.com/svn/trunk/styledmarker/src/StyledMarker.js

by this other:

https://cdn.rawgit.com/googlemaps/v3-utility-library/master/styledmarker/src/StyledMarker.js

or

https://cdn.rawgit.com/cadetill/gmlib_v1/master/Resources/StyledMarker.js

  • Recreate resource file executing .\resources\rc.cmd
  • Build (no compile) all GMLib

Another option is download changes from GitHub repository.

More info about the problem here.

Regards and sorry for the inconvenience.

Solution 2:

Rather than using your own development copy of the Google utility script, I'd recommend changing the url in your .\resources\map.html from:

http://google-maps-utility-library-v3.googlecode.com/svn/trunk/styledmarker/src/StyledMarker.js

to the following cdn prefixed version of the source library:

https://cdn.rawgit.com/googlemaps/v3-utility-library/master/styledmarker/src/StyledMarker.js

In production, you really should be using the cdn version of the script as it has no traffic limits or throttling and the files are served via a super fast global CDN. However please bear in mind that, as a free service, it offers no uptime or support guarantees.

Accessing files hosted from Git is covered in more detail in the following SO answer:

Link and execute external JavaScript file hosted on GitHub

If you'd still prefer to use your own copy, for the same reasons I'd suggest using your cdn copy:

https://cdn.rawgit.com/cadetill/gmlib_v1/master/Resources/StyledMarker.js

Post a Comment for "Gmlib Could Not Complete The Operation Due To Error 80020101 (v1.5.3)"