-1
現在、Google Place APIで選択した地域の付近の場所を取得できます。 Google Maps APIまたはPlaces APIで、選択した地域のすべての町を取得するにはどうすればよいですか?Google Maps APIで選択した国のすべての都市または郡を取得する方法
現在、Google Place APIで選択した地域の付近の場所を取得できます。 Google Maps APIまたはPlaces APIで、選択した地域のすべての町を取得するにはどうすればよいですか?Google Maps APIで選択した国のすべての都市または郡を取得する方法
次のようなコードを使用して、検索を特定の国に限定することができます。
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&libraries=places&key=your-key"></script>
<label for="city">
<input id="city" name="city">
</label>
<script>
var input = document.getElementById('city');
var options = {
types: ['(cities)'],
componentRestrictions: {country: "us"}
};
var searchBox = new google.maps.places.SearchBox(input,options);
</script>
より多くのコードを見つけることができますhere