$.ajax(
{
url: "https://104.131.103.113:8890/add_local",
type: "POST",
data: {
token: 'asd2f1as654m',
nome: 'LOCAL TESTE',
latitude: '-5451.202021',
longitude: '9745.651202'
},
success: function(response){
console.log(response);
}
});
$.ajax(
{
url: "https://104.131.103.113:8890/delete_local",
type: "POST",
data: {
token: 'asd2f1as654m',
id: '1'
},
success: function(response){
console.log(response);
}
});