Skip to content

Commit 556d67c

Browse files
committed
fix #21548 GoogleMapsが表示できない問題を改善
APIキーを入れても表示できない GoogleのAPIのURLが、http を許容しなくなった様子。 https に切り替えた
1 parent 5168174 commit 556d67c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Baser/Lib/BcGmaps.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class BcGmaps extends CakeObject {
3333
* APIのベースとなるURL
3434
* @var string
3535
*/
36-
const GMAPS_API_BASE_URL = "http://maps.googleapis.com/maps/api/geocode/xml";
36+
const GMAPS_API_BASE_URL = "https://maps.googleapis.com/maps/api/geocode/xml";
3737

3838
/**
3939
* API URL

0 commit comments

Comments
 (0)