Google MapのGeocoderAPIを使って住所検索をしたい。
例
大久保といれて検索をかけたとき
東京都大久保
千葉県大久保
と出力したい
問題
大久保といれて検索をかけたとき東京にある大久保のみしか検索結果に出てこない。
Geocoderでは不可能なのでしょうか。
ご教授お願いします。
HTML
1<!DOCTYPE html> 2<html lang="en"> 3<head> 4 <meta charset="UTF-8"> 5 <title>Document</title> 6</head> 7<body> 8 <input type="text" id='text'><button onclick='search()'>送信</button> 9<script 10 src='https://maps.googleapis.com/maps/api/js?key=apiキー'> 11 </script> 12<script> 13 function search() { 14 //テキストを取得 15 var address=document.getElementById("text").value; 16 17 //ジオコーダーで検索 18 geocoder = new google.maps.Geocoder(); 19 geocoder.geocode({'address': address}, 20 function(results, status) { 21 console.log(results); 22 } 23 ); 24 } 25</script> 26 27</body> 28</html>
あなたの回答
tips
プレビュー