jsFiddle无法使用Google Place API等外部资源?

时间:2013-07-10 06:55:34

标签: google-places-api jsfiddle

我使用外部资源为Google Place API准备了一些小代码http://jsfiddle.net/VW9uR/,但资源不起作用 来源是:http://maps.google.com/maps/api/js?sensor=false&libraries=places
如何添加正确的资源?

2 个答案:

答案 0 :(得分:3)

jsfiddle需要一个文件扩展名来确定应该加载哪种类型的文件。如果没有可用的文件扩展名,请将扩展添加到QUERY_STRING,例如:

 http://maps.google.com/maps/api/js?sensor=false&libraries=places&.js

演示:http://jsfiddle.net/doktormolle/y939C/

文档:http://doc.jsfiddle.net/basic/introduction.html#external-resources

答案 1 :(得分:1)

您可以在html中添加脚本标记,然后在domready上进行

<script src="http://maps.google.com/maps/api/js?sensor=false&libraries=places"></script>

find it working here