Reputation: 33
Just wanting to see if others are experiencing issues with the Google Maps API. I am using an unversioned call to load the google maps api :
<script async defer src="https://maps.googleapis.com/maps/api/js?callback=googleMapsLoaded&libraries=drawing,geometry,visualization,places&key=xxxxxxxxxxxxxxxxxxxxxx"></script>
Which should pull in the latest stable api release (3.31). As of today, it seems to be pulling in the broken experimental version (3.32)
Anyone else having this issue? I have patched our production apps with the v=3.31 addition to the api call for the time being. Any feedback from others appreciated.
Upvotes: 1
Views: 89
Reputation: 161334
According to the documentation, you get the experimental version if you don't specify a version (unless you are on a premium (paid) plan):
If you do not explicitly specify a version, you will receive the experimental version by default if you are on the standard plan (this includes customers who do not provide a key). If you're on the premium plan and don't specify a version, you will receive the release version by default.
Upvotes: 1