Advertisement
Guest User

Untitled

a guest
Aug 21st, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.43 KB | None | 0 0
  1. <script>
  2. var GOOGLE_MAP_KEY = "prdukcniklic";
  3.  
  4. if(productioion == false){
  5.     GOOGLE_MAP_KEY = "testklic";
  6. }
  7.  
  8. function loadScript() {
  9.   var script = document.createElement('script');
  10.   script.type = 'text/javascript';
  11.   script.src = 'https://maps.googleapis.com/maps/api/js?v=3' +
  12.       '&key=' + GOOGLE_MAP_KEY +'&callback=initialize'; //& needed
  13.  document.body.appendChild(script);
  14. }
  15.  
  16. window.onload = loadScript;
  17. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement