gpt4 book ai didi

php - 在 php mysql 网站中使用谷歌地图 api 标记

转载 作者:行者123 更新时间:2023-11-29 08:50:23 25 4
gpt4 key购买 nike

我目前正在建立一个网站,其中有一个功能允许用户在谷歌地图中标记他们的家庭地址,并且使用php+mysql将坐标存储在数据库中,然后在另一个页面上从数据库中获取坐标并用于显示。我该怎么做?

我对谷歌地图API不太熟悉,所以如果你们中的任何人可以提供类似的示例代码,那将会有很大的帮助:)

最佳答案

据我了解,您陷入了想要从数据库中获取数据并根据纬度和经度呈现带有位置的 map 的部分。如果这是正确的,您可以尝试这个..

基于此链接 https://developers.google.com/maps/articles/phpsqlsearch_v3?hl=es#createtable 上找到的示例

这是对我有用的代码(我不知道是否有多余的东西)。

<?php
//select statement that grabs latitude and longitude for the current user and stores them to variables eg $lat and $lng. Then you just echo them below into the javascript.
?>
<html>
<head>
<script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?sensor=false"></script>
<script language="javascript" type="text/javascript">

var map;
var geocoder;
function InitializeMap() {

var latlng = new google.maps.LatLng(<?php echo $lat; ?>, <?php $lng; ?>);
var myOptions =
{
zoom: 8,
center: latlng,
mapTypeId: google.maps.MapTypeId.ROADMAP,
disableDefaultUI: true
};
map = new google.maps.Map(document.getElementById("map"), myOptions);
}

window.onload = InitializeMap;

</script>
</head>
<body>

<table>

<tr>
<td colspan ="2">
<div id ="map" style="height: 253px;width: 447px;" >
</div>
</td>
</tr>
</table>
</body>

</html>

关于php - 在 php mysql 网站中使用谷歌地图 api 标记,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11434895/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com