我有一个使用 PHP 文件存储 lat-lngs 的 MySQL 数据库。标记根据半径和坐标参数(2km,myLat,myLng - 工作正常)基于半正弦公式显示。我看过关于将用户地理编码的 lat-lngs 传递给公式以显示标记的帖子。有没有办法将可拖动标记的 lat-lng 位置传递给 hasrsine 公式以显示标记?可以在拖动标记后通过单击搜索按钮发送 lat-lng。
这是一个示例,所做的选择基于选择的 lat-lng,但标记是可拖动的,我希望将可拖动标记连接到 php 代码。
先感谢您
<?php
header("Content-type: text/xml");
require("mypwfile.php");
function parseToXML($htmlStr)
{
$xmlStr=str_replace('<','<',$htmlStr);
$xmlStr=str_replace('>','>',$xmlStr);
$xmlStr=str_replace('"','"',$xmlStr);
$xmlStr=str_replace("'",''',$xmlStr);
$xmlStr=str_replace("&",'&',$xmlStr);
return $xmlStr;
}
// Get parameters from URL
$center_lat =$radius = (isset($_GET['lat']) ? $_GET['lat'] : null);
$center_lng = (isset($_GET['lng']) ? $_GET['lng'] : null);
$radius = (isset($_GET['radius']) ? $_GET['radius'] : null);
// Opens a connection to a MySQL server
$connection=mysql_connect ('localhost', $username, $password);
if (!$connection) {
die('Not connected : ' . mysql_error());
}
// Set the active MySQL database
$db_selected = mysql_select_db($database, $connection);
if (!$db_selected) {
die ('Can\'t use db : ' . mysql_error());
}
// Select all the rows in the markers table
$query = sprintf("SELECT app_id, lat, lng, ( 6371 * acos( cos( radians('myLat') )
* cos( radians( lat ) ) * cos( radians( lng ) - radians('myLng') ) +
sin( radians('myLat') ) * sin( radians( lat ) ) ) )
AS distance FROM markers HAVING distance < '2' ORDER BY distance LIMIT 0 , 30",
mysql_real_escape_string($center_lat),
mysql_real_escape_string($center_lng),
mysql_real_escape_string($center_lat),
mysql_real_escape_string($radius));
$result = mysql_query($query);
if (!$result) {
die('Invalid query: ' . mysql_error());
}
// Start XML file, echo parent node
echo "<markers>\n";
// Iterate through the rows, printing XML nodes for each
while ($row = @mysql_fetch_assoc($result)){
// ADD TO XML DOCUMENT NODE
echo '<marker ';
echo 'app_id="' . parseToXML($row['app_id']) . '" ';
echo 'lat="' . $row['lat'] . '" ';
echo 'lng="' . $row['lng'] . '" ';
echo 'distance="' . $row['distance'] . '" ';
echo "/>\n";
}
// End XML file
echo "</markers>\n";
?>