Hola amigos, tengo 2 funciones,
desde la primera llamo a la segunda y no medevuelv nada, creo que es porque RES se crea dentro de la función y por eso no llega que puedo hacer?
FUNCION 2 LLAMDA POR FUNCION 1
Código Javascript
:
Ver originalfunction cargarPuntos(tipo){
//alert('Tip Car'+tipo);
var url = '../../js/actionsAdmin/tipoMapa.php?tipo='+tipo;
$.get(url, function(res){
return res;
});
}
Necesito hacer llegar el RES de la función anterior a esta siguiente pero no lo consigo
FUNCION 1 LLAMA A LA FUNCION 2
Código Javascript
:
Ver originalfunction muestraMapa(tipo){
alert('Tip Mu'+tipo);
var popup;
var n = 1;
var options = {
zoom: 6
, center: new google.maps.LatLng(39.862831600000000000, -4.027323099999990000)
, mapTypeId: google.maps.MapTypeId.ROADMAP
};
var map = new google.maps.Map(document.getElementById('map'), options);
var place = new Array();
cargarPuntos(tipo); //AQUI LA LLAMO PERO DEVUELVE UNDEFINED
for(var i in place){
var marker = new google.maps.Marker({
position: place[i]
, map: map
, title: i
, icon: 'http://gmaps-samples.googlecode.com/svn/trunk/markers/red/marker' + n++ + '.png'
});
google.maps.event.addListener(marker, 'click', function(){
if(!popup){
popup = new google.maps.InfoWindow();
}
var note = '' + this.title + '';
popup.setContent(note);
popup.open(map, this);
})
}
};
Muchas gracias por adelantado