Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix #21548 GoogleMapsが表示できない問題を改善
APIキーを入れても表示できない
GoogleのAPIのURLが、http を許容しなくなった様子。
https に切り替えた
  • Loading branch information
ryuring committed Apr 27, 2018
1 parent 5168174 commit 556d67c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Baser/Lib/BcGmaps.php
Expand Up @@ -33,7 +33,7 @@ class BcGmaps extends CakeObject {
* APIのベースとなるURL
* @var string
*/
const GMAPS_API_BASE_URL = "http://maps.googleapis.com/maps/api/geocode/xml";
const GMAPS_API_BASE_URL = "https://maps.googleapis.com/maps/api/geocode/xml";

/**
* API URL
Expand Down

0 comments on commit 556d67c

Please sign in to comment.