123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174 |
- <!--********************************************************************
- * Copyright© 2000 - 2021 SuperMap Software Co.Ltd. All rights reserved.
- *********************************************************************-->
- <html>
- <head>
- <meta charset='utf-8'/>
- <title data-i18n="resources.title_scatterWeibo"></title>
- <meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no'/>
- <script type="text/javascript" include="jquery" src="../js/include-web.js"></script>
- <style>
- body {
- margin: 0;
- padding: 0;
- }
- #map {
- position: absolute;
- top: 0;
- bottom: 0;
- width: 100%;
- }
- </style>
- </head>
- <body>
- <div id='map'></div>
- <script type="text/javascript" exclude='iclient-mapboxgl' include="echarts"
- src="../../dist/mapboxgl/include-mapboxgl.js"></script>
- <script type="text/javascript">
- var attribution = "<a href='https://www.mapbox.com/about/maps/' target='_blank'>© Mapbox </a>" +
- " with <span>© <a href='https://iclient.supermap.io' target='_blank'>SuperMap iClient</a> | </span>" +
- " Image <span>© <a href='http://support.supermap.com.cn/product/iServer.aspx' target='_blank'>SuperMap iServer</a> | </span>" +
- " <a href='https://echarts.baidu.com' target='_blank'>© 2018 " + resources.title_3baidu + " ECharts</a>";
- var host = window.isLocal ? window.server : "https://iserver.supermap.io";
- var tileURL = host + "/iserver/services/map-china400/rest/maps/ChinaDark/zxyTileImage.png?z={z}&x={x}&y={y}";
- var map = new mapboxgl.Map({
- container: 'map',
- style: {
- "version": 8,
- "sources": {
- "raster-tiles": {
- "attribution": attribution,
- "type": "raster",
- "tiles": [tileURL],
- "tileSize": 256,
- },
- },
- "layers": [{
- "id": "simple-tiles",
- "type": "raster",
- "source": "raster-tiles",
- "minzoom": 0,
- "maxzoom": 22
- }]
- },
- center: [112, 37.94],
- zoom: 3
- });
- map.addControl(new mapboxgl.NavigationControl(), 'top-left');
- $.get('../data/weibo.json', function (weiboData) {
- weiboData = weiboData.map(function (serieData, idx) {
- var px = serieData[0] / 1000;
- var py = serieData[1] / 1000;
- var res = [
- [px, py]
- ];
- for (var i = 2; i < serieData.length; i += 2) {
- var dx = serieData[i] / 1000;
- var dy = serieData[i + 1] / 1000;
- var x = px + dx;
- var y = py + dy;
- res.push([x.toFixed(2), y.toFixed(2), 1]);
- px = x;
- py = y;
- }
- return res;
- });
- var echartslayer = new EchartsLayer(map);
- echartslayer.chart.setOption(option = {
- GLMap: {
- roam: true
- },
- coordinateSystem: 'GLMap',
- title: {
- text: resources.text_weiboChina,
- subtext: 'From ThinkGIS',
- sublink: 'http://www.thinkgis.cn/public/sina',
- left: 'center',
- top: 'top',
- textStyle: {
- color: '#fff'
- }
- },
- tooltip: {},
- legend: {
- left: 'left',
- top: 'bottom',
- data: [resources.text_strong, resources.text_middle, resources.text_weak],
- textStyle: {
- color: '#ccc'
- }
- },
- geo: {
- name: resources.text_strong,
- type: 'scatter',
- map: 'GLMap',
- label: {
- emphasis: {
- show: false
- }
- },
- itemStyle: {
- normal: {
- areaColor: '#323c48',
- borderColor: '#111'
- },
- emphasis: {
- areaColor: '#2a333d'
- }
- }
- },
- series: [{
- name: resources.text_weak,
- type: 'scatter',
- coordinateSystem: 'GLMap',
- symbolSize: 1,
- large: true,
- itemStyle: {
- normal: {
- shadowBlur: 2,
- shadowColor: 'rgba(37, 140, 249, 0.8)',
- color: 'rgba(37, 140, 249, 0.8)'
- }
- },
- data: weiboData[0]
- }, {
- name: resources.text_middle,
- type: 'scatter',
- coordinateSystem: 'GLMap',
- symbolSize: 1,
- large: true,
- itemStyle: {
- normal: {
- shadowBlur: 2,
- shadowColor: 'rgba(14, 241, 242, 0.8)',
- color: 'rgba(14, 241, 242, 0.8)'
- }
- },
- data: weiboData[1]
- }, {
- name: resources.text_strong,
- type: 'scatter',
- coordinateSystem: 'GLMap',
- symbolSize: 1,
- large: true,
- itemStyle: {
- normal: {
- shadowBlur: 2,
- shadowColor: 'rgba(255, 255, 255, 0.8)',
- color: 'rgba(255, 255, 255, 0.8)'
- }
- },
- data: weiboData[2]
- }]
- });
- });
- </script>
- </body>
- </html>
|