0
我有兩個字段的表單:如何顯示Google地圖的網格?
- 第一個允許進入城市
- 第二個允許進入提供的地址
這兩個數據,我應該使用谷歌API來創建地圖。 每次單擊該按鈕時,表單都會創建一個新地圖。 我是這樣做的。
HTML代碼:
<form method="post" action="../public/maps.php" id="upload">
<table>
<tr>
<td>City:</td>
<td><input type="text" name="city" id="city"/></td>
</tr>
<tr>
<td>Address:</td>
<td><input type="text" name="address" id="address"/></td>
</tr>
<tr>
<td>
<input type="submit" name="submit-maps" value="Post" onClick="createMap()"/>
</td>
</tr>
</table>
</form>
<div id="content_map-canvas"></div>
Javascript代碼:
var geocoder;
var map;
var city;
var address;
var count = 0;
function createMap() {
var city = document.getElementById('city').value;
var address = document.getElementById('address').value;
var city_address = city+address;
var description = city+address;
showMap(city_address, description);
}
function showMap(city_address, description) {
geocoder = new google.maps.Geocoder();
var options = {
zoom: 8,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
//Creates the new div
count = count + 1;
var id = "map-canvas" + count;
var div = document.createElement("div");
div.id = id;
document.getElementById('content_map-canvas').appendChild(div);
//Creates the map
map = new google.maps.Map(document.getElementById(id), options);
geocoding(city_address, description);
}
function geocoding(city_address, description) {
geocoder.geocode({'address': city_address}, function(results, status) {
if(status === google.maps.GeocoderStatus.OK) {
map.setCenter(results[0].geometry.location);
var marker = new google.maps.Marker
({map: map,
position: results[0].geometry.location,
title: description
});
marker.setAnimation(google.maps.Animation.DROP);
contentString = description;
var infowindow = new google.maps.InfoWindow({
content: contentString
});
google.maps.event.addListener(marker, 'click', function() {
infowindow.open(map, marker);
});
}
});
}
該代碼不起作用。當我點擊按鈕時,不要製作地圖。 我從來沒有使用過Google API,所以我肯定會犯一個愚蠢的錯誤。謝謝:)
感謝您的答覆!我糾正了代碼,但它仍然不起作用,不創建分區...嗯... – user245679
你爲什麼說它不創建分區? _your_版本的代碼是否會生成任何javascript錯誤? – geocodezip
這意味着,當我寫一個城市和一個地址的形式,我點擊按鈕,沒有創建div,所以也許這就是爲什麼你不創建地圖。事實上,div不會創建我通過Chrome中的檢查元素。控制檯不會生成錯誤 – user245679