您好我编辑了以下amCharts地图以展示交互式地图时间轴。我可以在预览器中查看它,但不能在结果页面中查看。有什么方法可以解决这个问题吗?到目前为止,我没有收到任何错误。
http://jsfiddle.net/curiousjazz77/1y9t6vm9/1/
你认为我被锁定在从amChart库中拉出来的图片吗?
AmCharts.ready(function () {
// let's generate the data for 50 slides
generateData();
// let's build the map
map = new AmCharts.AmMap();
map.pathToImages = "http://www.ammap.com/lib/3/images/";
//map.panEventsEnabled = true; // this line enables pinch-zooming and dragging on touch devices
map.colorSteps = 50;
map.balloon.color = "#000000";
map.minValue = 0;
map.maxValue = 100000;
var dataProvider = {
mapVar: AmCharts.maps.usaLow,
getAreasFromMap: true,
images: [ // let's add one image to display the year of the current slide
答案 0 :(得分:4)
使用HTTP而非HTTPS加载jsfiddle。
您的脚本使用http加载,并使用https加载jsfiddle,因此出于安全考虑,内容将被阻止。
将网址中的https
替换为http