googlemap.js 460 B

12345678910111213
  1. // Create the script tag, set the appropriate attributes
  2. var script = document.createElement('script')
  3. script.src =
  4. 'https://maps.googleapis.com/maps/api/js?key=AIzaSyCn01lSFv-HVpYGt-BK_kYZcZ_RYij80e8&libraries=places&callback=initMap'
  5. script.async = true
  6. // Attach your callback function to the `window` object
  7. window.initMap = function () {
  8. // JS API is loaded and available
  9. }
  10. // Append the 'script' element to 'head'
  11. document.head.appendChild(script)