我有一個輸入字段,只有地址返回。Google Maps API自動完成 - 如何僅輸出街道名稱?
但是,當我輸入街道名稱時,輸入字段將返回街道名稱加逗號和街道的城市。
我得到了下面的代碼:
<script src="http://maps.google.com/maps/api/js?libraries=places®ion=de&language=de&sensor=false"></script>
<input id="strasse" type="text" size="50">
$(function(){
var input = document.getElementById('strasse');
var autocomplete = new google.maps.places.Autocomplete(input, {
types: ["address"]
});
$("#strasse").focusin(function() {
$(document).keypress(function (e) {
if (e.which == 13) {
infowindow.close();
}
});
});
});
EG:
我輸入 「Teststreet」 輸出= 「Teststreet,慕尼黑」
迴歸應該只是 「Teststreet」。
有沒有辦法,刪除「,」(也許通過jQuery)後的一切?
http://stackoverflow.com/questions/10125189/google-maps-autocomplete-output-only-address-without-country-and-city –
[Google maps Autocomplete:output only address without country and city ](http://stackoverflow.com/questions/10125189/google-maps-autocomplete-output-only-address-without-country-and-city) –