I have the following files, this following code shows all the suburbs of apartment.xml on google map but I want to display just those 3 suburbs of apartment.xml that I have found in search.php file.
I really dont know how to do this. Can anybody help me in doing this?
search.htm-------------------
<body onload="load()" onunload="GUnload()">
<form>
Enter Suburb: <input type="text" name="suburb" size="40" />
<input name="submit" type = "button" onClick = "getData('search.php','info', suburb.value)" value = "Search" />
</form>
<div id="map" style="width: 500px; height: 400px"></div>
<div id="info"> </div>
search.php---------------
$suburb= $_POST["sub"];
$suburb=strtolower("$suburb");
$xmlFile = "apartment.xml";
$doc= DOMDocument::load($xmlFile);
$property = $doc->getElementsByTagName("property");
$propertyy=array();
foreach($property as $node)
{
$suburbb = $node->getElementsByTagName("suburb");
$suburbb = $suburbb->item(0)->nodeValue;
$price= $node->getElementsByTagName("price");
$price = $price->item(0)->nodeValue;
if ($suburbb == $suburb)
$propertyy[$price]= array($price, $suburb);
}
ksort($propertyy, SORT_NUMERIC);
$propertyy = array_slice($propertyy,0,3);
foreach($propertyy AS $p => $n)
{
$pri=$n[0];
$subb=$n[1];
echo $subb;
}
map.js----------------------------
GDownloadUrl("apartment.xml", function(data) {
xml = GXml.parse(data);
property = xml.documentElement.getElementsByTagName("property");
for (var i = 0; i < property.length; i++) {
address= property[i].getElementsByTagName("suburb");
address = address[0].childNodes[0].nodeValue;
geocoder.getLocations(address, addToMap);}
});
}
function addToMap(response)
{
place = response.Placemark[0];
point = new GLatLng(place.Point.coordinates[1],
place.Point.coordinates[0]);
function createMarker(point,address)
{
var marker = new GMarker(point);
GEvent.addListener(marker, "click", function()
{
map.openInfoWindowHtml(point, address);
});
return marker;
}
map.addOverlay(createMarker(point, response.name));
}