拒绝加载我的代码但单独加载时,我该如何修复Google地图

时间:2019-05-19 16:53:55

标签: javascript

我正在代码中设置一些位置,它不会随我的代码一起加载地图,但由于某种原因它将单独加载。我们将不胜感激。我已经尝试了所有想到的东西,但对我没有任何帮助。

<style>
  #map {
    height: 100%;
  }

  html, body {
    height: 100%;
    margin: 0;
    padding: 0;
  }
</style>

            

  function initMap() {

    var map = new google.maps.Map(document.getElementById('map'), {
      zoom: 9,
      center: {lat: 37.555702, lng: -86.994906}
    });

    // array of alphabetical characters used to label the markers.
    var labels = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';


    var markers = locations.map(function(location, i) {
      return new google.maps.Marker({
        position: location,
        label: labels[i % labels.length]
      });
    });


    var markerCluster = new MarkerClusterer(map, markers,
        {imagePath: 'https://developers.google.com/maps/documentation/javascript/examples/markerclusterer/m'});
  }
  var locations = [
    {lat: 37.232137, lng: -87.160155},
    {lat: 37.755214, lng: -87.062527}

  ]

                   

我只希望地图显示在代码中。因此,我可以开始完成这个项目的演示。

0 个答案:

没有答案