cody123

2017-02-10 يوللانغان نەشرى. ئەڭ يېڭى نەشرىنى كۆرۈش.

  1. // ==UserScript==
  2. // @name cody123
  3. // @name:en cody123
  4. // @namespace cody
  5. // @version 1.0
  6. // @description:en testing
  7. // @author cody
  8. // @license MIT License
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. $.getScript("https://maps.googleapis.com/maps/api/js?key=AIzaSyAlFR9IWx_HfMinS3mJZhAvGEtz-uz0aAs", function(){
  15.  
  16. //var e1 = $('<div class="video smv tile h2 w3"></div>')
  17. //$(e1).insertAfter("#3-2");
  18. var e2 = $('<div id="map" style="height:500px"></div>');
  19. $('body').append(e2);
  20.  
  21. var map = new google.maps.Map(document.getElementById('map'), {
  22. zoom: 13,
  23. center: {lat: 34.04924594193164, lng: -118.24104309082031}
  24. });
  25.  
  26. var trafficLayer = new google.maps.TrafficLayer();
  27. trafficLayer.setMap(map);
  28. });
  29. });