Commit f2c51ecc by liangjianmin

js

parent bbef98bd
......@@ -408,6 +408,9 @@ body {
}
#app .section .box .ranking dd .p2 {
width: 170px;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
#app .section .box .ranking dd span {
font-size: 17px;
......@@ -457,5 +460,5 @@ body {
width: 100%;
height: 100%;
background: url("../../images/home/bg.png") #000c28 no-repeat center;
background-size: contain;
background-size: cover;
}
......@@ -240,6 +240,9 @@ body {
.p2 {
width: 170px;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
span {
......@@ -304,6 +307,6 @@ body {
width: 100%;
height: 100%;
background: url("../../images/home/bg.png") #000c28 no-repeat center;
background-size: contain;
background-size: cover;
}
}
\ No newline at end of file
......@@ -434,7 +434,7 @@ body {
width: 100%;
height: 100%;
background: url("../../images/vis/map.png") no-repeat center;
background-size: contain;
background-size: cover;
}
#app .btn {
position: absolute;
......
......@@ -268,7 +268,7 @@ body {
width: 100%;
height: 100%;
background: url("../../images/vis/map.png") no-repeat center;
background-size: contain;
background-size: cover;
}
.btn {
......
! function () {
window.IndexController = {
apiUrl: window.location.host == "btv.ichunt.com" ? "https://api.ichunt.com" : "http://api.liexin.com",
apiUrl: window.location.host == "btv.liexin.com" ? "https://api.ichunt.com" : "http://api.liexin.com",
init: function () {
this.credted(this).map(this).handleBind(this);
},
......@@ -27,14 +27,15 @@
$.ajax({
type: "GET",
url: IndexController.apiUrl + "/bigtv/api/cityCoordinate",
data: {},
data: {
is_china: 0
},
dataType: 'json',
success: function (res) {
var geoCoordMap = res.geoCoordMap;
var BJData = res.BJData;
var convertData = function (data) {
var res = [];
for (var i = 0; i < data.length; i++) {
......
......@@ -69,314 +69,181 @@
});
},
map: function () {
var myChart = echarts.init(document.getElementById('map'));
var planePath = 'path://M250 150 L150 350 L350 350 Z';
var chinaGeoCoordMap = {
'黑龙江': [127.9688, 45.368],
'内蒙古': [110.3467, 41.4899],
"吉林": [125.8154, 44.2584],
'北京市': [116.4551, 40.2539],
"辽宁": [123.1238, 42.1216],
"河北": [114.4995, 38.1006],
"天津": [117.4219, 39.4189],
"山西": [112.3352, 37.9413],
"陕西": [109.1162, 34.2004],
"甘肃": [103.5901, 36.3043],
"宁夏": [106.3586, 38.1775],
"青海": [101.4038, 36.8207],
"新疆": [87.9236, 43.5883],
"西藏": [91.11, 29.97],
"四川": [103.9526, 30.7617],
"重庆": [108.384366, 30.439702],
"山东": [117.1582, 36.8701],
"河南": [113.4668, 34.6234],
"江苏": [118.8062, 31.9208],
"安徽": [117.29, 32.0581],
"湖北": [114.3896, 30.6628],
"浙江": [119.5313, 29.8773],
"福建": [119.4543, 25.9222],
"江西": [116.0046, 28.6633],
"湖南": [113.0823, 28.2568],
"贵州": [106.6992, 26.7682],
"云南": [102.9199, 25.4663],
"深圳": [113.12244, 23.009505],
"广西": [108.479, 23.1152],
"海南": [110.3893, 19.8516],
'上海': [121.4648, 31.2891]
};
var chinaDatas = [
[{
name: '黑龙江',
value: 0
}],
[{
name: '内蒙古',
value: 0
}],
[{
name: '吉林',
value: 0
}],
[{
name: '辽宁',
value: 0
}],
[{
name: '河北',
value: 0
}],
[{
name: '天津',
value: 0
}],
[{
name: '山西',
value: 0
}],
[{
name: '陕西',
value: 0
}],
[{
name: '甘肃',
value: 0
}],
[{
name: '宁夏',
value: 0
}],
[{
name: '青海',
value: 0
}],
[{
name: '新疆',
value: 0
}],
[{
name: '西藏',
value: 0
}],
[{
name: '四川',
value: 0
}],
[{
name: '重庆',
value: 0
}],
[{
name: '山东',
value: 0
}],
[{
name: '河南',
value: 0
}],
[{
name: '江苏',
value: 0
}],
[{
name: '安徽',
value: 0
}],
[{
name: '湖北',
value: 0
}],
[{
name: '浙江',
value: 0
}],
[{
name: '福建',
value: 0
}],
[{
name: '江西',
value: 0
}],
[{
name: '湖南',
value: 0
}],
[{
name: '贵州',
value: 0
}],
[{
name: '广西',
value: 0
}],
[{
name: '深圳',
value: 0
}],
[{
name: '海南',
value: 0
}],
[{
name: '上海',
value: 0
}]
];
var convertData = function (data) {
var res = [];
for (var i = 0; i < data.length; i++) {
var dataItem = data[i];
var fromCoord = [113.12244, 23.009505];
var toCoord = chinaGeoCoordMap[dataItem[0].name];
if (fromCoord && toCoord) {
res.push([{
coord: fromCoord,
value: dataItem[0].value
}, {
coord: toCoord,
}]);
}
}
return res;
};
var series = [];
[
['深圳', chinaDatas]
].forEach(function (item, i) {
console.log(item)
series.push({
type: 'lines',
zlevel: 2,
effect: {
show: true,
period: 6, //箭头指向速度,值越小速度越快
trailLength: 0, //特效尾迹长度[0,1]值越大,尾迹越长重
symbol: planePath, //箭头图标
symbolSize: 8, //图标大小
},
lineStyle: {
normal: {
color: "#ffb43f",
// 线条宽度
type: 'dotted',
width: 2,
opacity: 0.6,
curveness: 0.2
}
},
label: {
normal: {
show: false,
position: 'middle',
formatter: '{b}'
$.ajax({
type: "GET",
url: IndexController.apiUrl + "/bigtv/api/cityCoordinate",
data: {
is_china: 1
},
dataType: 'json',
success: function (res) {
var myChart = echarts.init(document.getElementById('map'));
var planePath = 'path://M250 150 L150 350 L350 350 Z';
var chinaGeoCoordMap = res.geoCoordMap;
var chinaDatas = res.BJData;
var convertData = function (data) {
var res = [];
for (var i = 0; i < data.length; i++) {
var dataItem = data[i];
var fromCoord = [114.5435, 22.5439];
var toCoord = chinaGeoCoordMap[dataItem[0].name];
if (fromCoord && toCoord) {
res.push([{
coord: fromCoord,
value: dataItem[0].value
}, {
coord: toCoord,
}]);
}
},
data: convertData(item[1])
}, {
type: 'effectScatter',
coordinateSystem: 'geo',
zlevel: 2,
rippleEffect: {
//涟漪特效
color: '#ffb43f', //涟漪的颜色
period: 4, //动画时间,值越小速度越快
brushType: "stroke", //波纹绘制方式 stroke, fill
scale: 4 //波纹圆环最大限制,值越大波纹越大
},
label: {
normal: {
show: false,
position: 'right', //显示位置
offset: [5, 0], //偏移设置
formatter: function (params) { //圆环显示文字
return params.data.name;
}
return res;
};
var series = [];
[
['深圳', chinaDatas]
].forEach(function (item, i) {
console.log(item)
series.push({
type: 'lines',
zlevel: 2,
effect: {
show: true,
period: 6, //箭头指向速度,值越小速度越快
trailLength: 0, //特效尾迹长度[0,1]值越大,尾迹越长重
symbol: planePath, //箭头图标
symbolSize: 8, //图标大小
},
lineStyle: {
normal: {
color: "#ffb43f",
// 线条宽度
type: 'dotted',
width: 2,
opacity: 0.6,
curveness: 0.2
}
},
fontSize: 13
label: {
normal: {
show: false,
position: 'middle',
formatter: '{b}'
}
},
data: convertData(item[1])
}, {
type: 'effectScatter',
coordinateSystem: 'geo',
zlevel: 2,
rippleEffect: {
//涟漪特效
color: '#ffb43f', //涟漪的颜色
period: 4, //动画时间,值越小速度越快
brushType: "stroke", //波纹绘制方式 stroke, fill
scale: 4 //波纹圆环最大限制,值越大波纹越大
},
label: {
normal: {
show: false,
position: 'right', //显示位置
offset: [5, 0], //偏移设置
formatter: function (params) { //圆环显示文字
return params.data.name;
},
fontSize: 13
},
emphasis: {
show: true
}
},
symbol: 'circle',
symbolSize: 10,
itemStyle: {
normal: {
show: false,
color: "#f4c509",
borderColor: "#f4c509"
}
},
data: item[1].map(function (dataItem) {
return {
name: dataItem[0].name,
value: chinaGeoCoordMap[dataItem[0].name].concat([dataItem[0].value])
};
}),
},
emphasis: {
show: true
}
},
symbol: 'circle',
symbolSize: 10,
itemStyle: {
normal: {
show: false,
color: "#f4c509",
borderColor: "#f4c509"
//被攻击点
{
type: 'scatter',
coordinateSystem: 'geo',
zlevel: 2,
rippleEffect: {
period: 4,
brushType: 'stroke',
scale: 4
},
label: {
normal: {
show: true,
position: 'right',
color: '#00ffff',
formatter: '{b}',
textStyle: {
color: "#0bc7f3"
}
},
emphasis: {
show: true
}
},
symbol: 'circle',
symbolSize: 15,
data: [{
name: item[0],
value: chinaGeoCoordMap[item[0]].concat([10]),
}],
}
);
});
var option = {
tooltip: {
trigger: 'item',
},
data: item[1].map(function (dataItem) {
return {
name: dataItem[0].name,
value: chinaGeoCoordMap[dataItem[0].name].concat([dataItem[0].value])
};
}),
},
//被攻击点
{
type: 'scatter',
coordinateSystem: 'geo',
zlevel: 2,
rippleEffect: {
period: 4,
brushType: 'stroke',
scale: 4
},
label: {
normal: {
show: true,
position: 'right',
color: '#00ffff',
formatter: '{b}',
textStyle: {
color: "#0bc7f3"
geo: {
map: 'china',
label: {
emphasis: {
show: false
}
},
emphasis: {
show: true
zoom: 0.98,
layoutCenter: ["50%", "51%"], //地图位置
layoutSize: "100%",
itemStyle: {
normal: {
color: 'rgba(51, 69, 89, .5)', //地图背景色
borderColor: '#516a89', //省市边界线00fcff 516a89
borderWidth: .5, //区域边框宽度
opacity: 0
},
emphasis: {
color: 'rgba(37, 43, 61, .5)' //悬浮背景
}
}
},
symbol: 'circle',
symbolSize: 15,
data: [{
name: item[0],
value: chinaGeoCoordMap[item[0]].concat([10]),
}],
}
);
series: series
};
myChart.setOption(option)
}
});
var option = {
tooltip: {
trigger: 'item',
},
geo: {
map: 'china',
label: {
emphasis: {
show: false
}
},
zoom: 0.98,
layoutCenter: ["50%", "51%"], //地图位置
layoutSize: "100%",
itemStyle: {
normal: {
color: 'rgba(51, 69, 89, .5)', //地图背景色
borderColor: '#516a89', //省市边界线00fcff 516a89
borderWidth: .5, //区域边框宽度
opacity: 0
},
emphasis: {
color: 'rgba(37, 43, 61, .5)' //悬浮背景
}
}
},
series: series
};
myChart.setOption(option)
return this;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment