Google 검색 자동 완성 장소 자바 스크립트를 사용하여 검색 상자에 제안 된 결과를 반환합니다. 필요한 것은 입력 한 문자와 관련된 도시와 국가 만 표시하는 것이지만 Google API는 필요하지 않은 일반적인 장소 결과를 많이 제공합니다. 결과는 도시와 국가 만 표시하도록 제한합니다.
다음 예제를 사용하고 있습니다.
<html>
<head>
<style type="text/css">
body {
font-family: sans-serif;
font-size: 14px;
}
</style>
<title>Google Maps JavaScript API v3 Example: Places Autocomplete</title>
<script src="http://maps.googleapis.com/maps/api/js?sensor=false&libraries=places" type="text/javascript"></script>
<script type="text/javascript">
function initialize() {
var input = document.getElementById('searchTextField');
var autocomplete = new google.maps.places.Autocomplete(input);
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>
</head>
<body>
<div>
<input id="searchTextField" type="text" size="50" placeholder="Enter a location" autocomplete="on">
</div>
</body>
</html>