我正在尝试生成谷歌地图,并且需要根据街道地址找到每个标记的坐标。它发现坐标很好,但它只给我“最后”输入的街道地址的坐标。我需要为每个人准备一个数组。
HTML:
<div class="gmapItems">
<input type="text" class="input-medium googleMapCity" value='New York'>
<input type="text" class="input-medium googleMapAddress">
<textarea class="input-medium googleMapInformation" value='1'></textarea>
</div>
<div class="gmapItems">
<input type="text" class="input-medium googleMapCity" value='Boston'>
<input type="text" class="input-medium googleMapAddress">
<textarea class="input-medium googleMapInformation" value='1'></textarea>
</div>
查询:
$("#AddGoogleMap").on('click', function () {
mapMarkers = new Array();
$('.gmapItems').each(function(){
gmapInfo = $('.googleMapInformation',this).val();
geocoder = new google.maps.Geocoder();
address = $('.googleMapCity',this).val(), $('.googleMapAddress',this).val();
geocoder.geocode( { 'address': address}, function(results, status) {
if (status == google.maps.GeocoderStatus.OK) {
latitude = results[0].geometry.location.lat();
longitude = results[0].geometry.location.lng();
LatLng = new google.maps.LatLng(latitude , longitude);
}
});
mapMarkers.push("["+"'"+gmapInfo+"'", latitude, longitude+"]");
});
alert(mapMarkers)