2017-04-27 11 views
1

私は https://maps.googleapis.com/maps/api/distancematrix/json?units=imperial&origins=bl79yt&destinations=cw73bz&key=mykeyをロードすることはできません角度とGoogle距離行列なしアクセス制御ヘッダ

のXMLHttpRequestを取得しています。 要求された リソースに「Access-Control-Allow-Origin」ヘッダーが存在しません。私の角度のアプリで

var url = 'https://maps.googleapis.com/maps/api/distancematrix/json?units=imperial&origins=' + pcodefrom + '&destinations=' + pcodeto + '&key=mykeyhere'; 
    console.log(url); 
    $http({method: 'GET', url: url,headers: { 
      "X-Content-Type-Options": "nosniff", 
      "X-Frame-Options": "SAMEORIGIN", 
      "X-Rack-CORS": "preflight-hit; no-origin" 
     }}).success(function(data) { 
      }; 
        }).error(function(data){ 

        }); 

アイブ氏は、GoogleのAPIコンソールで、ウェブサイトのURLを許可されますが、それはまだ働いていない:私はこのようなGoogleの距離行列に私のhttpリクエストを持っています。

答えて

関連する問題