I have an application that utilizes Google Maps. To call in the library, I use the following script:
src="https://maps.googleapis.com/maps/api/js?v=[VERSION]&key=[MYKEY]&sensor=false"
Initially, everything ran smoothly for about a year before encountering a script error one day. Upon investigation, I discovered that the issue stemmed from using an outdated version number. I updated it to the latest version at that time. However, the same error resurfaced about a year later.
This time around, I opted to change it to 'v=quarterly' as advised, which supposedly ensures the utilization of a current, stable version at all times.
Unfortunately, today, the application crashed once more with the same script error. Does anyone know how I can consistently access a current and reliable version of the API?
Thank you, Tony Reynolds