问题描述
|
试图让谷歌可视化API在油脂猴子(Firefox)中工作,我试图只使用:
// @require http://www.google.com/jsapi
但随后出现错误:google.visualization未定义
添加后:
// google.load(\'visualization\',\'1\',{packages: [\'table\']});
我收到错误:未定义$
我需要错东西吗?请帮忙。
在此先感谢您提供有用的答案!
解决方法
我对Google Maps API也有类似的问题。
就我而言,我不得不将API附加到页面上
API_js_callback = \"http://maps.google.com/maps/api/js?sensor=false®ion=BR&callback=initialize\";
var script = document.createElement(\'script\');
script.src = API_js_callback;
var head = document.getElementsByTagName(\"head\")[0];
(head || document.body).appendChild(script);
和google
必须称为unsafeWindow.google
,所以我也加上了google = unsafeWindow.google
。
initialize = setTimeout(function () {
google = unsafeWindow.google;
directionsService = new google.maps.DirectionsService();
directionsDisplay = new google.maps.DirectionsRenderer();
.
.
.
请在此处查看完整的代码和说明:如何将Google Maps API与油腻的猴子一起使用以读取地址表并跟踪路线?