溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

如何使用angular9+echarts繪制3D地圖

發(fā)布時(shí)間:2021-03-26 10:07:24 來(lái)源:億速云 閱讀:263 作者:小新 欄目:web開(kāi)發(fā)

這篇文章主要介紹如何使用angular9+echarts繪制3D地圖,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!

新建一個(gè)angular9的工程

1、安裝了@angular-cli的腳手架

2、ng -v查看版本

3、ng new my-project(項(xiàng)目名)

下載echarts

npm i echarts

相關(guān)推薦:《angular教程》

創(chuàng)建容器

src/app/app.componnet.html

<div id="main" style="width:800px;height:500px"></div>

創(chuàng)建地圖實(shí)例

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中國(guó)地圖',
        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對(duì)象
      if (params.zoom != null && params.zoom != undefined) { //捕捉到縮放時(shí)
          option.geo[0].zoom = option.series[0].zoom; //下層geo的縮放等級(jí)跟著上層的geo一起改變
          option.geo[0].center = option.series[0].center; //下層的geo的中心位置隨著上層geo一起改變
      } else { //捕捉到拖曳時(shí)
          option.geo[0].center = option.series[0].center; //下層的geo的中心位置隨著上層geo一起改變
      }
      myChart.setOption(option); //設(shè)置option
  });
    myChart.setOption(this.option)
  }
}

效果圖片

如何使用angular9+echarts繪制3D地圖

以上是“如何使用angular9+echarts繪制3D地圖”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI