-1
Googleフィールド検索マップのようなフィールド検索ボックスの作成方法を探しています。そして私は@MrUpsidownによって答えた正しい答えhereを見つけました。これは@MrUpsidown jsfiddleによるjsfiddleの答えであり、それは完全に動作します。それから私は私のプロジェクトにそれを実装しようとしますが、うまくいきません。Googleマップ検索ボックス外の地図は機能していません
ここに私のコード:
<!DOCTYPE html>
<html>
<head>
<title>
Search Box Map
</title>
<style>
#autocomplete {
width:300px;
}
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&key=AIzaSyB1Z4LA0_Q-qH3Sfq-vIr3lShYnIwS1KUw&libraries=places" ></script>
<script>
function initialize() {
new google.maps.places.Autocomplete(
(document.getElementById('autocomplete')), {
types: ['geocode']
});
}
initialize();
</script>
</head>
<body>
<input id="autocomplete" placeholder="Enter your address" type="text"></input>
</body>
</html>
私はコードを以下のが、まだ働いていませんよ。私はどこかで行方不明ですか?
それは働きます!私は本当にこのGoogleマップのAPIを使用して新しいです。ありがとう! –
完了しました.. –