只有当我点击cmd + shift + R时,才会显示Google地图

时间:2018-06-05 17:27:34

标签: javascript google-maps google-maps-api-3

我的谷歌地图代码发生了一个奇怪的错误。

在本地,它完美无缺。

在实时登台服务器上,当第一次查看页面时,我得到的initMap不是函数错误。

棘手的部分是,如果我做一个硬刷新(cmd + shift + r),地图工作正常,没有错误。

但是,如果我再次尝试访问该页面(直接转到URL或单击该页面的链接),我会收到错误消息。

使用cmd + shift + r刷新页面时,它只能正确显示地图。

有没有人有关于可能导致这种情况的想法?我的代码如下。非常感谢你。

这是错误:

Uncaught Ib {message: "initMap is not a function", name: 
"InvalidValueError", stack: "Error↵    at new Ib 
(https://maps.googleapis.com/m…MY_KEY_j163:51"}

这是我正在加载它们的顺序中的脚本标记:

_foot.php:

  <!-- jQuery -->
  <script src="//code.jquery.com/jquery-3.3.1.min.js"></script>
  <!-- Fancybox jQuery -->
  <script src="https://cdnjs.cloudflare.com/ajax/libs/fancybox/3.3.5/jquery.fancybox.min.js"></script>
  <!-- main js -->
  <script defer type='text/javascript' src='<?=  $config->urls->templates 
  . 'lib/main.js' ; ?>'></script>
  <!-- Google Maps -->
  <script async defer src="https://maps.googleapis.com/maps/api/js? 
  key=MY_KEY_HERE&callback=initMap"></script>
</body>
</html>

main.js

// Initialize markers
let markers = [];
// Initialized map
let map;
// Initialize the infoWindow
let infoWindow;
// Initialize Soho
let soho;
// Initialize marker
let marker;

/**
 * Lifestyle Google Map
 *
 */
function initMap() {

  /* The Sol Hollywood Location */
  soho = {coords: { lat: 34.092786, lng: -118.31358620000003}, icon: 'http://maps.google.com/mapfiles/ms/icons/homegardenbusiness.png', title: 'Sol Hollywood'};

  /* Create The Map */
  map = new google.maps.Map(document.getElementById('map'), {
    center: new google.maps.LatLng(soho.coords.lat, soho.coords.lng),
    zoom: 12
  });

  /**
   * Add New markers
   * options object
   */
  function addMarker(options) {
    // Create the marker
    marker = new google.maps.Marker({
      position: options.coords,
      map: map,
    });

    // Check if an icon has been passed into options, if so set it.
    if (options.icon) {
      marker.setIcon(options.icon);
    }

    // Create the info window
    infoWindow = new google.maps.InfoWindow({
      content: options.title
    });

    // When marker is clicked, set and show info window
    marker.addListener('click', function() {
      infoWindow.setContent(options.title);
      infoWindow.open(map, this);
    });

    // Collect the markers
    markers.push(marker);
  }

  // Add The Sol Hollywood Marker
  addMarker(soho);

  // Ajax get request to grab local spot coords for map.
  $.ajax({
    type: 'GET',
    dataType: 'json',
    contentType: 'json',
    url: "/local-spot-get-coords",
    success: function(data) {
      // loop over the json coords from the PHP page and add a marker for each
      for (let key in data) {
          addMarker(data[key]);
      }
    }
  });
}

window.initMap = initMap;

1 个答案:

答案 0 :(得分:0)

我通过自己调用initMap并从地图脚本中删除回调来修复此问题。

所以在我的main.js的末尾我刚刚调用了initMap:

<强> main.js

initMap();

在我加载地图脚本的页脚中,我删除了回调:

<强> _foot.php

<!-- Google Maps -->
<script async defer src="https://maps.googleapis.com/maps/api/js?key=MY_KEY_HERE"></script>