我想知道是否有人可以帮助我。
我使用下面显示的代码正确绘制从谷歌地图上的 MySQL 数据库检索到的标记。
<script type="text/javascript">
//Sample code written by August Li
var icon = new google.maps.MarkerImage("images/location-marker-2.png")
new google.maps.Point(16, 32);
var center = null;
var map = null;
var bounds = new google.maps.LatLngBounds();
function addMarker(lat, lng, info) {
var pt = new google.maps.LatLng(lat, lng);
bounds.extend(pt);
var marker = new google.maps.Marker({
position: pt,
icon: icon,
map: map
});
}
function initMap() {
map = new google.maps.Map(document.getElementById("gmaps-canvas"), {
center: new google.maps.LatLng(0, 0),
zoom: 6,
scrollwheel: true,
draggable: true,
mapTypeId: google.maps.MapTypeId.SATELLITE
});
<?php
include("admin/link.php");
include("admin/opendb.php");
$query = mysql_query("SELECT * FROM `detectinglocations` WHERE `locationid` = '$lid'");
while ($row = mysql_fetch_array($query)){
$locationname=$row['locationname'];
$osgb36lat=$row['osgb36lat'];
$osgb36lon=$row['osgb36lon'];
echo ("addMarker($osgb36lat, $osgb36lon,'<b>$locationname</b><br/>');\n");
}
mysql_close($connect);
?>
center = bounds.getCenter();
map.fitBounds(bounds);
}
</script>
我现在要做的是添加更多功能,允许用户还可以单击地图绘制新标记,本质上使用数据库中预先存在的标记作为工作点,执行reverse geocode
.
我已经研究了好几天了,我已经尝试实现了一大堆教程,但我似乎无法让这两个部分的功能都正常工作。
我确实知道要启用一个on-click
事件,我需要合并以下内容:
google.maps.event.addListener(map, 'click', function(event) {
marker.setPosition(event.latLng)
geocode_lookup( 'latLng', event.latLng );
});
}
但我必须承认我有点不确定我还需要加入什么。
我只是想知道是否有人可以看看这个,如果有人能告诉我我哪里出错了,我将不胜感激。
非常感谢和亲切的问候