이 글에서는 앵귤러에서 전자차트를 활용하는 방법과 3D 지도를 그리는 방법을 소개하겠습니다. 도움이 필요한 친구들이 모두 참고할 수 있기를 바랍니다.
1. @angular-cli 스캐폴딩
2을 설치합니다. <code><strong>ng -v</strong>
查看版本
3、ng new my-project(项目名)
ng -v
ng new my -project (프로젝트 이름)
npm i echarts관련 권장 사항: "
컨테이너 만들기
<div id="main" style="width:800px;height:500px"></div>
지도 인스턴스 만들기
src/app/app.componnet.ts
import { Component } from '@angular/core'; import * as echarts from "echarts"; import 'echarts/map/js/china.js' @Component({ selector: 'app-root', templateUrl: './app.component.html', styleUrls: ['./app.component.scss'] }) export class AppComponent { option = { title: { top: 10, text: '3D中国地图', left: 'center', textStyle: { color: '#fff' } }, backgroundColor: 'rgba(0, 10, 52, 1)', geo: { map: 'china', aspectScale: 0.75, layoutCenter: ["50%", "51.5%"], //地图位置 layoutSize: '118%', roam: true, itemStyle: { normal: { borderColor: 'rgba(147, 235, 248, 1)', borderWidth: 0.5, color: { type: 'linear-gradient', x: 0, y: 1500, x2: 2500, y2: 0, colorStops: [{ offset: 0, color: '#009DA1' // 0% 处的颜色 }, { offset: 1, color: '#005B9E' // 50% 处的颜色 }], global: true // 缺省为 false }, opacity: 0.5, }, emphasis: { areaColor: '#2a333d' } }, regions: [{ name: '南海诸岛', itemStyle: { areaColor: 'rgba(0, 10, 52, 1)', borderColor: 'rgba(0, 10, 52, 1)' }, emphasis: { areaColor: 'rgba(0, 10, 52, 1)', borderColor: 'rgba(0, 10, 52, 1)' } }], z: 2 }, series: [{ type: 'map', map: 'china', tooltip: { show: false }, label: { show: true, color: '#FFFFFF', fontSize: 16 }, aspectScale: 0.75, layoutCenter: ["50%", "50%"], //地图位置 layoutSize: '118%', roam: true, itemStyle: { normal: { borderColor: 'rgba(147, 235, 248, 0.6)', borderWidth: 0.8, areaColor: { type: 'linear-gradient', x: 0, y: 1200, x2: 1000, y2: 0, colorStops: [{ offset: 0, color: '#009DA1' // 0% 处的颜色 }, { offset: 1, color: '#005B9E' // 50% 处的颜色 }], global: true // 缺省为 false }, }, emphasis: { areaColor: 'rgba(147, 235, 248, 0)' } }, zlevel: 1 }] }; ngOnInit(){ let dom = document.getElementById('main') let myChart = echarts.init(dom) myChart.on('georoam', function(params) { var option = myChart.getOption(); //获得option对象 if (params.zoom != null && params.zoom != undefined) { //捕捉到缩放时 option.geo[0].zoom = option.series[0].zoom; //下层geo的缩放等级跟着上层的geo一起改变 option.geo[0].center = option.series[0].center; //下层的geo的中心位置随着上层geo一起改变 } else { //捕捉到拖曳时 option.geo[0].center = option.series[0].center; //下层的geo的中心位置随着上层geo一起改变 } myChart.setOption(option); //设置option }); myChart.setOption(this.option) } }
효과적인 그림
더 많은 프로그래밍 관련 지식을 보려면 🎜프로그래밍 비디오🎜를 방문하세요! ! 🎜위 내용은 3D 지도를 그리는 데 angle9+echarts를 사용하는 방법에 대한 간략한 토론의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!