How do I access the LatLng
variable in the application?
$http({
method: 'POST',
url: './database/getCep.php'
}).then(function successCallback(response) {
var LatLng = $scope.get_cep = response.data;
console.log(LatLng);
});