buscarPuntosCercanos.js 734 Bytes
Newer Older
1 2 3 4 5 6 7
jQuery(function($){

    //función para consultar puntos cercanos
    $("#botonBuscarCercanos").on("click", function(){
        $.ajax({
            url:'http://localhost:8080/Api-e004/buscar_puntos',
            type: 'GET',
Pedro Rolon committed
8 9 10
            headers:{
            	apiKey: "pqntslc"
            },
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
            data:{
                "lat": $("#latitudConsulta").val(),
                "lon": $('#longitudConsulta').val()
            },
            success: function(result){
                console.log(result);
            },
            error: function(e){
                console.log(e);
                console.log("ocurrió un error");
            }
        });
    });

    console.log("script cargado: buscarPuntosCercanos");


})