Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/sockets/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Google maps api 3 Google地图视口标记管理器-标记太多-JS API v3_Google Maps Api 3_Viewport_Marker - Fatal编程技术网

Google maps api 3 Google地图视口标记管理器-标记太多-JS API v3

Google maps api 3 Google地图视口标记管理器-标记太多-JS API v3,google-maps-api-3,viewport,marker,Google Maps Api 3,Viewport,Marker,我想在谷歌地图上显示10000多个位置。下面的代码可以工作,但加载所有10000个位置所需的时间太长。请帮助我更改此代码以使用视口标记管理器 我不确定Marker Manager是否完成了您需要的工作。试试。另一种方法可能是。它被设计用来处理大量的标记 <!DOCTYPE html> <html> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-

我想在谷歌地图上显示10000多个位置。下面的代码可以工作,但加载所有10000个位置所需的时间太长。请帮助我更改此代码以使用视口标记管理器


我不确定Marker Manager是否完成了您需要的工作。试试。

另一种方法可能是。它被设计用来处理大量的标记

    <!DOCTYPE html>
<html> 
<head> 
  <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> 
  <title>Google Maps Multiple Markers</title> 
  <script src="http://maps.google.com/maps/api/js?sensor=false" 
          type="text/javascript"></script>
</head> 
<body>
  <div id="map" style="width: 500px; height: 400px;"></div>

  <script type="text/javascript">
    var locations = [
      ['Bondi Beach', -33.890542, 151.274856, 4],
      ['Coogee Beach', -33.923036, 151.259052, 5],
      ['Cronulla Beach', -34.028249, 151.157507, 3],
      ['Manly Beach', -33.80010128657071, 151.28747820854187, 2],
      ['Maroubra Beach', -33.950198, 151.259302, 1]
    ];

    var map = new google.maps.Map(document.getElementById('map'), {
      zoom: 10,
      center: new google.maps.LatLng(-33.92, 151.25),
      mapTypeId: google.maps.MapTypeId.ROADMAP
    });

        var infowindow = new google.maps.InfoWindow();  

    var marker, i;

        for (i = 0; i < locations.length; i++) {  
      marker = new google.maps.Marker({
        position: new google.maps.LatLng(locations[i][1], locations[i][2]),
        map: map
      });

      google.maps.event.addListener(marker, 'click', (function(marker, i) {
        return function() {
          infowindow.setContent(locations[i][0]);
          infowindow.open(map, marker);
        }
      })(marker, i));
    }
  </script>
</body>
</html>