我正在尝试构建一个简单的网络“应用”,我将在其中使用地图(使用谷歌地图api)和下面的一些链接作为“过滤器”。我希望按类型过滤数据(即:酒吧或餐馆)。
基本上,map.html页面使用javascript来获取由PHP脚本生成的XML。
这是以下代码:
map.hmtl:
<!doctype html>
<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?key=AIzaSyASO80RjNn2d_Jjy9vdNHA5E3tfmALkWXw&sensor=false"></script>
<script type="text/javascript">
//<![CDATA[
var customIcons = {
restaurant: {
icon: 'http://labs.google.com/ridefinder/images/mm_20_blue.png',
shadow: 'http://labs.google.com/ridefinder/images/mm_20_shadow.png'
},
bar: {
icon: 'http://labs.google.com/ridefinder/images/mm_20_red.png',
shadow: 'http://labs.google.com/ridefinder/images/mm_20_shadow.png'
}
};
function load() {
var map = new google.maps.Map(document.getElementById("map"), {
center: new google.maps.LatLng(47.6145, -122.3418),
zoom: 13,
mapTypeId: 'roadmap',
disableDefaultUI: true
});
var infoWindow = new google.maps.InfoWindow;
// Change this depending on the name of your PHP file
downloadUrl("genxml3.php", function(data) {
var xml = data.responseXML;
var markers = xml.documentElement.getElementsByTagName("marker");
for (var i = 0; i < markers.length; i++) {
var name = markers[i].getAttribute("name");
var address = markers[i].getAttribute("address");
var type = markers[i].getAttribute("type");
var point = new google.maps.LatLng(
parseFloat(markers[i].getAttribute("lat")),
parseFloat(markers[i].getAttribute("lng"))
);
var html = "<b>" + name + "</b> <br />" + address + "<br />" + type;
var icon = customIcons[type] || {};
var marker = new google.maps.Marker({
map: map,
position: point,
icon: icon.icon,
shadow: icon.shadow
});
bindInfoWindow(marker, map, infoWindow, html);
}
});
}
function bindInfoWindow(marker, map, infoWindow, html){
google.maps.event.addListener(marker, 'click', function(){
infoWindow.setContent(html);
infoWindow.open(map, marker);
});
}
function downloadUrl(url, callback) {
var request = window.ActiveXObject ? new ActiveXObject('Microsoft.XMLHTTP') : new XMLHttpRequest;
request.onreadystatechange = function() {
if (request.readyState == 4) {
request.onreadystatechange = doNothing;
callback(request, request.status);
}
};
request.open('GET', url, true);
request.send(null);
}
function doNothing() {}
//]]>
</script>
</head>
<body onload="load()">
<div id="map" style="width: 900px; height: 750px;"></div>
<ul>
<a href="#">Restaurant</a>
</ul>
</body>
</html>
genxml3.php:
<?php
require("dbinfo.php");
// Start XML file, create parent node
$dom = new DOMDocument("1.0");
$node = $dom->createElement("map");
$parnode = $dom->appendChild($node);
// 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
// Checks for the 'GET' variable, if there isn't, run normal XML script,
// if there is, get the restriction/filter and query from the database
// with the filter
if (!empty($_GET)) {
$filter = $_GET['f'];
$query = "SELECT * FROM markers WHERE type = '$filter'";
} else {
$query = "SELECT * FROM markers WHERE 1";
}
$result = mysql_query($query);
if (!$result) {
die('Invalid query: ' . mysql_error());
}
header("Content-type: text/xml");
// Iterate through the rows, adding XML nodes for each
while ($row = mysql_fetch_assoc($result)){
// ADD TO XML DOCUMENT NODE
$node = $dom->createElement("marker");
$newnode = $parnode->appendChild($node);
$newnode->setAttribute("name",$row['name']);
$newnode->setAttribute("address", $row['address']);
$newnode->setAttribute("lat", $row['lat']);
$newnode->setAttribute("lng", $row['lng']);
$newnode->setAttribute("type", $row['type']);
}
echo $dom->saveXML();
?>
PHP脚本生成以下XML代码:
<map>
<marker name="Pan Africa Market changed" address="1521 1st Ave, Seattle, WA" lat="47.6089" lng="-122.34" type="restaurant"/>
<marker name="Buddha Thai & Bar" address="2222 2nd Ave, Seattle, WA" lat="47.6136" lng="-122.344" type="bar"/>
<marker name="The Melting Pot" address="14 Mercer St, Seattle, WA" lat="47.6246" lng="-122.356" type="restaurant"/>
<marker name="Ipanema Grill" address="1225 1st Ave, Seattle, WA" lat="47.6064" lng="-122.338" type="restaurant"/>
<marker name="Sake House" address="2230 1st Ave, Seattle, WA" lat="47.6128" lng="-122.346" type="bar"/>
<marker name="Crab Pot" address="1301 Alaskan Way, Seattle, WA" lat="47.606" lng="-122.34" type="restaurant"/>
<marker name="Mama's Mexican Kitchen" address="2234 2nd Ave, Seattle, WA" lat="47.614" lng="-122.345" type="bar"/>
<marker name="Wingdome" address="1416 E Olive Way, Seattle, WA" lat="47.6172" lng="-122.327" type="bar"/>
<marker name="Piroshky Piroshky" address="1908 Pike pl, Seattle, WA" lat="47.6101" lng="-122.343" type="restaurant"/>
</map>
当我在导航栏中强制使用“get”变量时(例如:genxml3.php?f = restaurant),以下XML代码被输出:
<map>
<marker name="Pan Africa Market changed" address="1521 1st Ave, Seattle, WA" lat="47.6089" lng="-122.34" type="restaurant"/>
<marker name="The Melting Pot" address="14 Mercer St, Seattle, WA" lat="47.6246" lng="-122.356" type="restaurant"/>
<marker name="Ipanema Grill" address="1225 1st Ave, Seattle, WA" lat="47.6064" lng="-122.338" type="restaurant"/>
<marker name="Crab Pot" address="1301 Alaskan Way, Seattle, WA" lat="47.606" lng="-122.34" type="restaurant"/>
<marker name="Piroshky Piroshky" address="1908 Pike pl, Seattle, WA" lat="47.6101" lng="-122.343" type="restaurant"/>
</map>
所以我知道PHP脚本中的逻辑有效,因为它过滤了所需的代码。因此,如果我输入“f = restaurant”,只显示类型为“restaurant”的标记,如果我使用“f = bar”则相同。
但JavaScript仍然只使用第一个XML代码。如何让JavaScript代码使用第二个XML代码(应用了过滤器的代码)。
那么我现在正在寻找的是在按下map.html文件中的链接时使用新的XML代码运行JavaScript代码的方法吗?
答案 0 :(得分:0)
您可以在map.html上应用GET参数并使用Javascript将其处理到您的genxml3.php(map.html?f = restaurant ---&gt; genxml3.php?f = restaurant)。
为此,您需要定义链接:
<a href="map.html?f=restaurant">Restaurant</a>
<a href="map.html?f=bar">Bar</a>
然后通过JS或jQuery解析GET参数(如果你只期望这个参数):
var param = location.search;
现在你只需在页面刷新时调用downloadUrl()并添加map.html后面的部分
即可进行常规加载()downloadUrl("genxml3.php" + param, function(data) {
这很简单,并不是一个很好的解决方案,因为根本没有检查参数,但这是你的一部分,这取决于你的要求。
如果您根本不想刷新页面,则可以为链接指定一个参数(过滤器名称):
<a href="javascript:setFilter('restaurant');" title="">Restaurant</a>
你也可以使用jQuery并为所有链接分配一个事件并读出他们的innerHTML(值)。我不确定我是否理解你的问题,希望我能提供帮助。
答案 1 :(得分:0)
WELL ...您的XML(第二个标记节点,名称属性)缺少语法错误:&
&符号必须使用实体&
进行转义。
实际上PHP 应自动执行此操作,您是否使用旧版本?
如对PHP - Is htmlentities() sufficient for creating xml-safe values?的回答所述,将PHP更改为
// Iterate through the rows, adding XML nodes for each
while ($row = @mysql_fetch_assoc($result)){
// ADD TO XML DOCUMENT NODE
$node = $dom->createElement("marker");
$newnode = $parnode->appendChild($node);
$newnode->setAttribute("name", htmlspecialchars($row['name']));
$newnode->setAttribute("address", htmlspecialchars($row['address']));
$newnode->setAttribute("lat", htmlspecialchars($row['lat']));
$newnode->setAttribute("lng", htmlspecialchars($row['lng']));
$newnode->setAttribute("type", htmlspecialchars($row['type']));
}
并试一试......
XML输出现在应该看起来像
<map>
<marker name="Pan Africa Market changed" address="1521 1st Ave, Seattle, WA" lat="47.6089" lng="-122.34" type="restaurant"/>
<marker name="Buddha Thai & Bar" address="2222 2nd Ave, Seattle, WA" lat="47.6136" lng="-122.344" type="bar"/>
<marker name="The Melting Pot" address="14 Mercer St, Seattle, WA" lat="47.6246" lng="-122.356" type="restaurant"/>