谷歌地图库404

时间:2015-08-05 09:32:19

标签: javascript google-maps google-api

我长期以来在我的项目中导入Google Maps API:

<script type="text/javascript" src="https://maps-api-ssl.google.com/maps/api/js?libraries=places,geometry&amp;sensor=false&amp;language=fr" ></script>

此脚本尝试加载3个库:

  https://maps-api-ssl.google.com/maps-api-v3/api/js/21/9/intl/fr_ALL/main.js 
  https://maps-api-ssl.google.com/maps-api-v3/api/js/21/9/intl/fr_ALL/geometry.js
  https://maps-api-ssl.google.com/maps-api-v3/api/js/21/9/intl/fr_ALL/places.js

但都失败了,并返回404

没有https的相同脚本正在运行,但问题是直到1 2 2天..

<script type="text/javascript" src="http://maps-api-ssl.google.com/maps/api/js?libraries=places,geometry&amp;sensor=false&amp;language=fr" ></script>

juste call

  http://maps-api-ssl.google.com/maps-api-v3/api/js/21/9/intl/fr_ALL/main.js 
  http://maps-api-ssl.google.com/maps-api-v3/api/js/21/9/intl/fr_ALL/geometry.js
  http://maps-api-ssl.google.com/maps-api-v3/api/js/21/9/intl/fr_ALL/places.js

enter image description here

你知道为什么吗?

1 个答案:

答案 0 :(得分:1)

虽然使用了en_GB版本,但我对该网址上的地图api也存在同样的问题。直到昨晚都很好。我已通过调用https://developers.google.com/maps/documentation/javascript/tutorial

上的google api教程中的网址修复了此问题

所以而不是:

<script type="text/javascript" src="https://maps-api-ssl.google.com/maps/api/js?libraries=places,geometry&amp;sensor=false&amp;language=fr" ></script>

你可以尝试:

 <script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?libraries=places,geometry&amp;sensor=false&amp;language=fr" ></script>