0
我是谷歌地圖中的新成員。 我使用此代碼來顯示谷歌地圖。我怎樣才能在谷歌地圖中獲得並標記一個位置
<!DOCTYPE html>
<html>
<head>
<script src="http://maps.googleapis.com/maps/api/js"></script>
<script>
function initialize() {
var mapProp = {
center:new google.maps.LatLng(32.39793603710494,51.39232635498047),
zoom:5,
mapTypeId:google.maps.MapTypeId.ROADMAP
};
var map=new google.maps.Map(document.getElementById("googleMap"),mapProp);
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>
</head>
<body>
<div id="googleMap" style="width:500px;height:380px;"></div>
</body>
</html>
現在我要標記並獲得緯度和經度,當我點擊它的地方,我想經度和緯度保存在database.How我能做到這一點?
可能重複(http://stackoverflow.com/questions/27307110/cant-add-markers-to-custom-tile -map) – geocodezip
可能的重複[如何創建自定義,共享和協作映射?](http://stackoverflow.com/questions/19015842/how-can-i-create-a-custom-shareable-and-合作地圖) – geocodezip
請參閱[使用帶Google地圖的PHP/MySQL](https://developers.google.com/maps/articles/phpsqlajax_v3) – geocodezip