我无法获得地址的位置。但是,这个问题只在我第一次运行时发生,即每次进行查询都需要,我点击两次,因为只获得了第二个值。
我认为问题是由异步方法引起的。但我无法解决问题。他的一些朋友可以帮助我。
$('#btnTracar').click(function(){
if (geocoder){
geocoder.geocode({ 'address': document.getElementById('txtStart').value }, function(results, status){
if (status == google.maps.GeocoderStatus.OK) {
mapStart = results[0].geometry.location;
} else { alert("Não foi possível carregar a localização. \nDescrição do Erro: " + status); }
});
geocoder.geocode({ 'address': document.getElementById('txtEnd').value }, function(results, status){
if (status == google.maps.GeocoderStatus.OK) {
mapEnd = results[0].geometry.location;
} else { alert("Não foi possível carregar a localização. \nDescrição do Erro: " + status); }
});
calcularRota();
}
});
答案 0 :(得分:1)
解决方案:
$('#btnTracar').click(function(){
if ($.trim($("#txtStart").val()) == ""){
alert("Favor preencher o campo de Origem Corretamente.");
return;
}
if ($.trim($("#txtEnd").val()) == ""){
alert("Favor preencher o campo de Origem Corretamente.");
return;
}
if (geocoder){
geocoder.geocode({ 'address': document.getElementById('txtStart').value }, function(results, status){
if (status == google.maps.GeocoderStatus.OK){
mapStart = results[0].geometry.location;
geocoder.geocode({ 'address': document.getElementById('txtEnd').value }, function(results, status){
if (status == google.maps.GeocoderStatus.OK){
mapEnd = results[0].geometry.location;
calcularRota();
}
});
}
});
}
});