add observe page

This commit is contained in:
avene 2018-06-27 15:55:54 +08:00
parent 596d612374
commit 700e8b84c9
2 changed files with 76 additions and 3 deletions

View File

@ -39,9 +39,9 @@
<li> <li>
<a href="/map">地图</a> <a href="/map">地图</a>
</li> </li>
<li> <!-- <li>-->
<a href="/observe">观测</a> <!-- <a href="/observe">观测</a>-->
</li> <!-- </li>-->
<li> <li>
<a href="/archives/news/localnews">新闻动态</a> <a href="/archives/news/localnews">新闻动态</a>
</li> </li>

View File

@ -0,0 +1,73 @@
//初始化echarts图表
var myChart = echarts.init(document.getElementById('observe'));
var option = {
title : {
text: '未来一周气温变化',
subtext: '纯属虚构'
},
tooltip : {
trigger: 'axis'
},
legend: {
data:['最高气温','最低气温']
},
toolbox: {
show : true,
feature : {
mark : {show: true},
}
},
calculable : true,
xAxis : [
{
type : 'category',
boundaryGap : false,
data : ['周一','周二','周三','周四','周五','周六','周日']
}
],
yAxis : [
{
type : 'value',
axisLabel : {
formatter: '{value} °C'
}
}
],
series : [
{
name:'最高气温',
type:'line',
data:[11, 11, 15, 13, 12, 13, 10],
markPoint : {
data : [
{type : 'max', name: '最大值'},
{type : 'min', name: '最小值'}
]
},
markLine : {
data : [
{type : 'average', name: '平均值'}
]
}
},
{
name:'最低气温',
type:'line',
data:[1, -2, 2, 5, 3, 2, 0],
markPoint : {
data : [
{name : '周最低', value : -2, xAxis: 1, yAxis: -1.5}
]
},
markLine : {
data : [
{type : 'average', name : '平均值'}
]
}
}
]
};
// 为echarts对象加载数据
myChart.setOption(option);