-1
我有兩個輸入字段和一個地圖在他們下面,我想要做的是顯示經度和緯度,當我點擊地圖上的任何位置時,我該怎麼做?這裏是我的代碼:顯示地圖座標在輸入字段
#map {
width: 100%;
height: 250px;
}
<div class="form-group">
<label for="exampleInputEmail1">Latitude</label>
<input placeholder="Latitude">
</div>
<div class="form-group">
<label for="exampleInputEmail1">Longitude</label>
<input placeholder="Longitude">
</div>
<div id="map"></div>
<script>
function myMap() {
var mapOptions = {
center: new google.maps.LatLng(51.5, -0.12),
zoom: 10,
mapTypeId: google.maps.MapTypeId.HYBRID
}
var map = new google.maps.Map(document.getElementById("map"), mapOptions);
}
</script>
<script async defer src="https://maps.googleapis.com/maps/api/js?callback=myMap"></script>
它不工作我試着在代碼片段中運行它,但它給了我錯誤 – stephjhonny
你得到了什麼錯誤? @stephjhonny –
「Uncaught SyntaxError:Unexpected token}」,「Uncaught ReferenceError:google is not defined」, – stephjhonny