Ver Mensaje Individual
  #3 (permalink)  
Antiguo 06/02/2014, 10:29
mktalternativa
 
Fecha de Ingreso: enero-2012
Mensajes: 224
Antigüedad: 12 años, 10 meses
Puntos: 1
Respuesta: Consulta Sobre AJAX

estuve viendo en w3c scohol pero no me queda claro como usarlo este es el codigo que tengo ahora que toma los datos del primer archivo php que general el xml

que me sugieres ya que no soy experto en ajax

Código PHP:
  // Change this depending on the name of your PHP file
      
downloadUrl("ver.php", function(data) {
      
      
        var 
xml data.responseXML;
        var 
markers xml.documentElement.getElementsByTagName("marker");
        for (var 
0markers.lengthi++) {
          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({
            
mapmap,
            
positionpoint,
            
iconicon.icon
          
});
          
bindInfoWindow(markermapinfoWindowhtml);
        }
      });
    }

    function 
bindInfoWindow(markermapinfoWindowhtml) {
      
google.maps.event.addListener(marker'click', function() {
        
infoWindow.setContent(html);
        
infoWindow.open(mapmarker);
      });
    }

    function 
downloadUrl(urlcallback) {
      var 
request window.ActiveXObject ?
          new 
ActiveXObject('Microsoft.XMLHTTP') :
          new 
XMLHttpRequest;

      
request.onreadystatechange = function() {
        if (
request.readyState == 4) {
          
request.onreadystatechange doNothing;
          
callback(requestrequest.status);
        }
      };

      
request.open('GET'urltrue);
      
request.send(null);
    }

    function 
doNothing() {}

    
//]]>