$.ajax({
dataType: "json",
type: "POST",
url: "http://geotest/ajax.php",
data: {
centerDist: centerDistance,
pointDist: pointsDistance
},
success: function(msg) {
console.log(msg);
Object.keys(msg).forEach(function(key) {
console.log(msg[key][0]["point"])
});
}
});