fwfm opened a new issue #8464: 源映射错误:request failed with status 404
URL: https://github.com/apache/incubator-echarts/issues/8464
 
 
   <!--
   为了方便我们能够复现和修复 bug,请遵从下面的规范描述您的问题。
   -->
   
   
   ### One-line summary [问题简述]
   使用echarts.js加载图像能正常显示,但总是出现源映射错误的问题
   
   
   
   
   ### Version & Environment [版本及环境]
   + ECharts version [ECharts 版本]: Echarts 4.1.0
   + Browser version [浏览器类型和版本]: 火狐浏览器
   + OS Version [操作系统类型和版本]:Win7
   
   
   
   
   
   ### Expected behaviour [期望结果]
   解决源映射错误
   
   
   
   
   ### ECharts option [ECharts配置项]
   <!-- Copy and paste your 'echarts option' here. -->
   <!-- [下方贴你的option,注意不要删掉下方 ```javascript 和 尾部的 ``` 字样。最好是我们能够直接运行的 
option。如何得到能运行的 option 参见上方的 guidelines for contributing] -->
   ```javascript
   option = {
                        title : {
                                text : '2011全国GDP(亿元)',
                                subtext : '数据来自国家统计局'
                        },
                        tooltip : {
                                trigger : 'item'
                        },
                        legend : {
                                x : 'right',
                                selectedMode : false,
                                data : [ '北京', '上海', '广东' ]
                        },
                        dataRange : {
                                orient : 'horizontal',
                                min : 0,
                                max : 55000,
                                text : [ '高', '低' ], // 文本,默认为数值文本
                                splitNumber : 0
                        },
                        toolbox : {
                                show : true,
                                orient : 'vertical',
                                x : 'right',
                                y : 'center',
                                feature : {
                                        mark : {
                                                show : true
                                        },
                                        dataView : {
                                                show : true,
                                                readOnly : false
                                        }
                                }
                        },
                        series : [
                                        {
                                                name : '2011全国GDP分布',
                                                type : 'map',
                                                mapType : 'china',
                                                mapLocation : {
                                                        x : 'left'
                                                },
                                                selectedMode : 'multiple',
                                                itemStyle : {
                                                        normal : {
                                                                label : {
                                                                        show : 
true
                                                                }
                                                        },
                                                        emphasis : {
                                                                label : {
                                                                        show : 
true
                                                                }
                                                        }
                                                },
                                                data : [ {
                                                        name : '西藏',
                                                        value : 605.83
                                                }, {
                                                        name : '青海',
                                                        value : 1670.44
                                                }, {
                                                        name : '宁夏',
                                                        value : 2102.21
                                                }, {
                                                        name : '海南',
                                                        value : 2522.66
                                                }, {
                                                        name : '甘肃',
                                                        value : 5020.37
                                                }, {
                                                        name : '贵州',
                                                        value : 5701.84
                                                }, {
                                                        name : '新疆',
                                                        value : 6610.05
                                                }, {
                                                        name : '云南',
                                                        value : 8893.12
                                                }, {
                                                        name : '重庆',
                                                        value : 10011.37
                                                }, {
                                                        name : '吉林',
                                                        value : 10568.83
                                                }, {
                                                        name : '山西',
                                                        value : 11237.55
                                                }, {
                                                        name : '天津',
                                                        value : 11307.28
                                                }, {
                                                        name : '江西',
                                                        value : 11702.82
                                                }, {
                                                        name : '广西',
                                                        value : 11720.87
                                                }, {
                                                        name : '陕西',
                                                        value : 12512.3
                                                }, {
                                                        name : '黑龙江',
                                                        value : 12582
                                                }, {
                                                        name : '内蒙古',
                                                        value : 14359.88
                                                }, {
                                                        name : '安徽',
                                                        value : 15300.65
                                                }, {
                                                        name : '北京',
                                                        value : 16251.93,
                                                        selected : true
                                                }, {
                                                        name : '福建',
                                                        value : 17560.18
                                                }, {
                                                        name : '上海',
                                                        value : 19195.69,
                                                        selected : true
                                                }, {
                                                        name : '湖北',
                                                        value : 19632.26
                                                }, {
                                                        name : '湖南',
                                                        value : 19669.56
                                                }, {
                                                        name : '四川',
                                                        value : 21026.68
                                                }, {
                                                        name : '辽宁',
                                                        value : 22226.7
                                                }, {
                                                        name : '河北',
                                                        value : 24515.76
                                                }, {
                                                        name : '河南',
                                                        value : 26931.03
                                                }, {
                                                        name : '浙江',
                                                        value : 32318.85
                                                }, {
                                                        name : '山东',
                                                        value : 45361.85
                                                }, {
                                                        name : '江苏',
                                                        value : 49110.27
                                                }, {
                                                        name : '广东',
                                                        value : 53210.28,
                                                        selected : true
                                                } ]
                                        },
                                        {
                                                name : '2011全国GDP对比',
                                                type : 'pie',
                                                roseType : 'area',
                                                tooltip : {
                                                        trigger : 'item',
                                                        formatter : "{a} 
<br/>{b} : {c} ({d}%)"
                                                },
                                                center : [
                                                                
document.getElementById('main').offsetWidth - 250,
                                                                225 ],
                                                radius : [ 30, 120 ],
                                                data : [ {
                                                        name : '北京',
                                                        value : 16251.93
                                                }, {
                                                        name : '上海',
                                                        value : 19195.69
                                                }, {
                                                        name : '广东',
                                                        value : 53210.28
                                                } ]
                                        } ],
                        animation : false
                };
   
   ```
   
   
   
   
   ### Other comments [其他信息]
   <!-- For example: Screenshot or Online demo -->
   <!-- [例如,截图或线上实例 (JSFiddle/JSBin/Codepen)] -->
   
![error](https://user-images.githubusercontent.com/39818084/40927323-0b0856fc-6851-11e8-90d2-5930ccd1da7c.png)
   
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to