Google Maps API: Download a specific version

When I try to download a specific version of the Maps API, let's say this: https://maps.googleapis.com/maps/api/js?v=3.28and run version c console.log(google.maps.version), I get version 3.29.14b .

Here is the fiddle https://jsfiddle.net/7xsxg4cv/ .

I am even unfamiliar with the behavior in this fiddle https://jsfiddle.net/c15sfj21/ .

How can I be wrong?

0
source share
2 answers

API ( ), v3.29 v3.31 .

.

onload = function() {
  document.getElementById("version").innerHTML = "Experimental Version=" + google.maps.version;
  alert("Experimental Version:" + google.maps.version);
}
<script src="https://maps.googleapis.com/maps/api/js"></script>
<div id="version"></div>
Hide result
+1

All Articles