Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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)); 
}
share|improve this question
2  
If you try to make your question a bit short by removing unwanted code snippets, you might get a better response. People don't want to waste time reading all your HTML and formatting stuff. – Rasika May 18 '11 at 1:13
I'm not familiar with GDownloadUrl, but that's pointed at the apartment.xml, not your search.php. I think you want to look into using the results you get from your search.php on javascript side, I'd suggest transferring that information with JSON (or XML, your preference), and then use that response to populate your map. – jlindenbaum May 18 '11 at 3:08
I agree with Jeremy, this is a tough question to answer. My best guess is just return three values in your XML: for (var i = 0; i < 3; i++) – ProNeticas May 18 '11 at 4:33

closed as not a real question by mellamokb, zsalzbank, alex, eykanal, Jeremy Heiler May 18 '11 at 3:30

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

Browse other questions tagged or ask your own question.