2017-05-02 41 views
0

首先,我想向您展示的解决方案我已经尽力了,所以你们没有使用这些之一:谷歌API的地方在地图上放置多个标记,并放大到最标记是

  1. placing multiple markers on google map from array
  2. placing multiple markers on a google map

当我通过地方下面的循环:

service.textSearch({query:query}, function(results, status) { 
    if (status == google.maps.places.PlacesServiceStatus.OK) { 
     //for each result in results.length ++ 
     for (var i = 0; i < results.length; i++) { 
      //here I'm just setting the names from the variables into a list, to display the names as I show in (Figure 1). 
      var item = document.createElement('li'); 
      item.appendChild(document.createTextNode(results[i].name)); 
      document.getElementById('results').appendChild(item); 

      //here I set my variables that are necessary for the markers to work 
      p_id[i] = results[i].place_id; 

      lat[i] = results[i].geometry.location.lat(); 
      lng[i] = results[i].geometry.location.lng(); 

      //here I initialize the map with the given values. 
      initMap(p_id, lat, lng, i); 
     } 
    } 
}); 

图1: Figure 1


由于这个循环完成它去的地方放置地图上的标记。

注:我不想摆脱它再次创造,因为这对我来说有非常有用的places的,再加上它似乎并不妨碍我做的尝试之作。

至于砂矿地图本身上的标记:

function initMap(p_id, lat, lng, i) { 
    //this creates the position of the map 
    var map = new google.maps.Map(document.getElementById('map'), { 
     center: {lat: lat[i], lng: lng[i]}, 
     zoom: 13 
    }); 

    var infowindow = new google.maps.InfoWindow(), marker, i; 
    var service = new google.maps.places.PlacesService(map); 

    var marker; 

    //gets the details of the placeid over again 
    service.getDetails({ 
     placeId: p_id[i] 
    }, function(place, status) { 
     if (status === google.maps.places.PlacesServiceStatus.OK) { 

      //this is where the marker is created with position and animation 
      marker = new google.maps.Marker({ 
       animation: google.maps.Animation.DROP, 
       position: new google.maps.LatLng(lat[i], lng[i]), 
       map: map 
      }); 

      //this is the info if you click the marker 
      google.maps.event.addListener(marker, 'click', (function(marker, i) { 
       return function() { 
        infowindow.setContent('<div><strong>' + place.name + '</strong><br>' + 'Place ID: ' + place.place_id + '<br>' + place.formatted_address + '</div>'); 
        infowindow.open(map, marker); 
       } 
      })(marker, i)); 
     } 
    }); 
} 

如果只有1位,则1个标记显示出来,但是当他们有更多的地方,则有完全没有标记很奇怪。如..我显示图2


图2: Figure 2


如果有人有任何线索可以解决它,请告诉他们。我似乎无法自拔,尽管我一直在寻找一段时间。我试图做一个的jsfiddle,但可悲的API不能够在jsfddle运行...


编辑:

的多个标记问题是由SeanKendle解决。问题是像我已经怀疑,我不停地创建多个地图...

我干脆搬到了maps了我mapinit功能,并在getPlaces功能把它放在我的service上面是这样的:

var map = new google.maps.Map(document.getElementById('map'), { 
    center: latlng, 
    zoom: 5 
}); 

service = new google.maps.places.PlacesService(
    document.getElementById('attributions') //attributions-container 
); 

//send a query 
service.textSearch({query:query}, function(results, status) { 
    if (status == google.maps.places.PlacesServiceStatus.OK) { 
     for (var i = 0; i < results.length; i++) { 
      var item = document.createElement('li'); 
      item.appendChild(document.createTextNode(results[i].name)); 
      document.getElementById('results').appendChild(item); 

      p_id[i] = results[i].place_id; 

      lat[i] = results[i].geometry.location.lat(); 
      lng[i] = results[i].geometry.location.lng(); 

      initMap(p_id, lat, lng, i, map); 
     } 
    } 
}); 

我现在面临的最后一个问题是我需要放大标记数最多的地方。现在我只是简单地设置经纬度,因为这应该开始:

var latlng = new google.maps.LatLng(20.540221, -4.042969); 

在此先感谢!


+0

你在'for'循环一遍又一遍初始化地图?这是否真的初始化地图? 'initMap(p_id,lat,lng,i);' – SeanKendle

+0

不幸的是,我已经在想这会是问题,但不知道如何解决这个问题 –

+0

将它移出循环? – SeanKendle

回答

2

请仔细阅读我的意见。我可能错过了一些东西,我很着急在工作中做这件事。我已经简化了很多代码,并去掉了一些额外的服务电话,等

编辑:我添加了一个地图界限变量设置地图缩放和中心放置标记后

编辑2:我添加了Google Maps回调函数以消除无法访问google名称空间的竞争状况。务必更换YOUR_API_KEY

首先,将实际的地图初始化圈外:

<script src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&callback=initMap" 
    async defer></script> 

<script> 
    var startLatLng, //change this to some value near to where the map will end up 
     allMarkers = [], //keep a global copy of your markers 
     mapPointsBounds = [], //map bounds of all markers 
     map; //copy of the map 

    //Google will call this when it's ready, it's a query string in the script tag above `&callback=initMap`: 
    function initMap() { 
     startLatLng = new google.maps.LatLng([0, 0]); 
     mapPointsBounds = new google.maps.LatLngBounds(); 

     map = new google.maps.Map(document.getElementById('map'), { 
      center: startLatLng, 
      zoom: 13 
     }); 

     service.textSearch({query:query}, function(results, status) { 
      if (status == google.maps.places.PlacesServiceStatus.OK) { 
       //for each result in results.length ++ 
       for (var i = 0; i < results.length; i++) { 
        //here I'm just setting the names from the variables into a list, to display the names as I show in (Figure 1). 
        var item = document.createElement('li'); 
        item.appendChild(document.createTextNode(results[i].name)); 
        document.getElementById('results').appendChild(item); 

        //let's just send the object, this is unnecessary: 
        //here I set my variables that are necessary for the markers to work 
        //p_id[i] = results[i].place_id; 
        //lat[i] = results[i].geometry.location.lat(); 
        //lng[i] = results[i].geometry.location.lng(); 

        //Change this function name to "addMapMarker", send in the results object 
        addMapMarker(results[i], i); 
       } 

       //finally, fitBounds on map to set zoom and center: 
       map.fitBounds(mapPointsBounds); 
      } 
     }); 
    } 

    //I would change the name of this function to "addMapMarker" or something similar 
    function addMapMarker(markerInfo, i) { 
     //why are you initializing "i" again if you're passing it in? 
     var infowindow = new google.maps.InfoWindow(), marker; //, i; 
     var service = new google.maps.places.PlacesService(map); 

     var marker; 

     //gets the details of the placeid over again - why? Why not send the info into the function? 
     /* Is this really necessary again? 
     service.getDetails({ 
      placeId: markerInfo.place_id 
     }, function(place, status) { 
      if (status === google.maps.places.PlacesServiceStatus.OK) { 
     */ 
     //this is where the marker is created with position and animation 
     marker = new google.maps.Marker({ 
      animation: google.maps.Animation.DROP, 
      position: markerInfo.geometry.location, 
      map: map, 
      markerInfo: markerInfo //you can store anything in the map point 
     }); 

     allMarkers.push(marker); //keeping all markers in an array 
     mapPointsBounds.extend(markerInfo.geometry.location); //extend bounds to contain this marker 


     //this is the info if you click the marker 
     //you're running a function, then returning a function... just put a simple function here: 
     google.maps.event.addListener(marker, 'click', function (marker, i) { 
      //return function() { 
      infowindow.setContent('<div><strong>' + marker.markerInfo.name + '</strong><br>' + 'Place ID: ' + marker.markerInfo.place_id + '<br>' + marker.markerInfo.formatted_address + '</div>'); 
      infowindow.open(map, marker); 
      //} 
     }); 
    } 
</script> 
+0

是的,这很有效,但它不是我所希望的全部功能,因为我仍然希望它能够放大到放置最多标记的地方!但我给了你一个投票,因为你已经帮了我很大的时间! –

+0

再看一次,加上 – SeanKendle

+0

我正在尝试它,但我得到一些错误:'setMap:不是地图的实例;' –