Last active
August 29, 2015 14:07
-
-
Save AleeRojas/82ace64cb5f562085be3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
comerybeber = 'info.json' | |
$.getJSON( comerybeber, function() { | |
console.log( "success" ); | |
}) | |
.done(function( data ) { | |
// console.log(data); | |
$.each( data, function( i, item ) { | |
console.log(this); | |
console.log(item.latitud); | |
console.log(item.longitud); | |
lat2 = item.latitud; | |
lon2 = item.longitud; | |
var url = "infoextra.json"; | |
$.getJSON( url, function() { | |
console.log( "nuevoJSON" ); | |
}) | |
.done(function( data ) { | |
$.each( data.results, function( i, item ) { | |
console.log(item.geometry.location.lat); | |
}); | |
}); | |
console.log("Esta a menos de " + radiokm + "km"); | |
}); // End each | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
id: 4, | |
nombre: "Restaurant Piero", | |
celular: 97867866, | |
correo: "[email protected]", | |
direccion: "Juan Mackenna #2344", | |
latitud: "-40.577488", | |
longitud: "-73.131745", | |
usuario_id: 1 | |
}, | |
{ | |
id: 5, | |
nombre: "Hotel Termas de Puyehue", | |
celular: 74163732, | |
correo: "[email protected]", | |
direccion: "", | |
latitud: "-40.720953", | |
longitud: "-72.3316847", | |
usuario_id: 1 | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment