对所有人,提前感谢帮助... 试图让这个谷歌脚本工作,完成两个教程,我无法从地图上显示的数据库中获取地图引脚。 XML有效,连接到db,只是引脚......代码如下
phpsqlajax_genxml2.php
<?php
header("Content-type: text/xml");
require("phpsqlajax_dbinfo.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;
}
// 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 = "SELECT * FROM markers WHERE 6";
$result = mysql_query($query);
if (!$result) {
die('Invalid query: ' . mysql_error());
}
// Start XML file, echo parent node
echo '<markers>';
// Iterate through the rows, printing XML nodes for each
while ($row = @mysql_fetch_assoc($result)){
// ADD TO XML DOCUMENT NODE
echo '<marker ';
echo 'name="' . parseToXML($row['name']) . '" ';
echo 'address="' . parseToXML($row['address']) . '" ';
echo 'lat="' . $row['lat'] . '" ';
echo 'lng="' . $row['lng'] . '" ';
echo 'type="' . $row['type'] . '" ';
echo '/>';
}
// End XML file
echo '</markers>';
?>
HTML:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<title>Google Maps AJAX + mySQL/PHP Example</title>
<script src="http://maps.google.com/maps/api/js?sensor=false"
type="text/javascript"></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'
});
var infoWindow = new google.maps.InfoWindow;
// Change this depending on the name of your PHP file
downloadUrl("phpsqlajax_genxml2.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;
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: 500px; height: 300px"></div>
</body>
</html>
phpsqlajax_dbinfo.php
<?
$username="$username";
$password="$password";
$database=" $database";
?>
感谢您的帮助!
以下是输出网址:http://opensourcefish.com/phpsqlajax_map_v3.html 如果有的话,让我知道你还需要什么!
好的,将php更改为echo xml而不是使用DOM,我得到无效的xml ......我想..现在怎样?或者我如何启用DOM_xml b / c我完全被那个下雪...再次感谢你好了
编辑:添加了db php文件并按建议更新了其他文件
答案 0 :(得分:1)
您的xml Feed无效。
opensourcefish.com/phpsqlajax_genxml.php
给出:
致命错误:在 5 / b> /home1/mac4281/opensourcefish.com/phpsqlajax_genxml.php 中调用未定义的函数domxml_new_doc() >
有关该问题的详细信息,请参阅this问题。
答案 1 :(得分:0)
生成的xml无效。从标记标记中取出额外的括号:
echo '<marker ';
这样,属性就可以正确放置在标记标记中。 编辑:
另外,在<?
标记之后的phpsqlajax_dbinfo.php文件中添加以下标题:
header("Content-type: text/xml");
解决方案2:
不是回显xml数据,而是将其放在xml文件中:
$data= '<markers> ';
while ($row = @mysql_fetch_assoc($result)){
$data1 = '<marker ' . 'name="' . parseToXML($row['name']) . '" ' .
'address="' . parseToXML($row['address']) . '" ' . 'lat="' . $row['lat'] . '" ' .
'lng="' . $row['lng'] . '" ' . 'type="' . $row['type'] . '" ' . '/>';
}
$data2 = '</markers>';
$xmlData = $data. $data1 . $data2;
file_put_contents("xmldata.xml", $xmlData);
然后将其加载到html中:
downloadUrl("xmldata.xml", function(data) {
还要将以下内容添加到html中,因为我们需要先加载php文件:
<script src="http://code.jquery.com/jquery-1.10.2.min.js" type="text/javascript"></script>
在downloadUrl("xmldata.xml", function(data) {
之前的下一行:
$.get("phpsqlajax_genxml2.php");
所以现在所有文件都是这样的:https://gist.github.com/anonymous/7010144
答案 2 :(得分:0)
致所有人:非常感谢你!我得到了它的工作,结果证明是一个标题问题和一个非常愚蠢的错误。所有你在那里“复制/粘贴护林员”的课程,阅读你的代码! 感谢TON Rohit的所有帮助。你很早就开始了,它只是一个重复的标题..我复制了但忘了删除我复制的内容,那是从那里下山。再次感谢你们!