我得到錯誤的結果,這是谷歌地圖API上的錯誤?我想要你的反饋來檢查你的結果。輸入「4430-201」的郵政編碼,讓我知道你是否得到「拉各斯」(錯誤)或「Vila Nova de Gaia」(正確)谷歌地圖Api市錯誤的結果,錯了什麼?
這隻影響我或其他用戶嗎? 這個錯誤會導致在運費計算應用稅金,如果倒車郵政編碼城市等 ...
$(document).ready(function() {
$("#search").click(function(event){
$.getJSON("http://maps.googleapis.com/maps/api/geocode/json",{address:$("#zipcode").val()},function(outs){
$("#result").html(outs.results[0].address_components[1].long_name);});
});
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
<input id="zipcode" type="text"/>
<button type="button" id="search">Go</button>
<br>
<div id="result"></div>
這是我的結果:
UPDATE: 所有Google GeoLocation至少都會搞砸了。當我在谷歌地圖上搜索「Vila Nova de Gaia」時,它會在地圖上告訴我,Vila Nova de Gaia現在是「拉各斯」,總結標題是錯誤的......爲什麼?
另外這不會發生在每個人都一樣的情況下,他們如何向不同的人展示不同的結果!?同樣在我的房子有相同的知識產權,我有不同的行爲。
看:
所有的bug都可能有後遺症... –
什麼是你的結果呢? @alberto – Miguel
它確實返回Vila Nova de Gaia。你指的是什麼錯誤? – Joyson