No 'Access-Control-Allow-Origin' header

Hi,

I want get a List of places with a textsearch. I use this code :

var req = {
            method: 'GET',
            url: 'https://maps.googleapis.com/maps/api/place/textsearch/json?query=' + txtsearch + '&key=<Key>'
        }

        $http(req).success(function (res) {
            console.log(res);
            console.log('Success', angular.toJson(res.data));
        }).error(function (err) {
            console.error(angular.toJson(err))
        })

But, I have this error:

No ‘Access-Control-Allow-Origin’ header is present on the requested resource. Origin ‘http://localhost:8100’ is therefore not allowed access.