美文网首页
2.初始化地图

2.初始化地图

作者: xueyueshuai | 来源:发表于2023-07-28 11:59 被阅读0次
<template>
  <div id="vue-cesium"></div>
</template>
<script>

export default {
  data() {
    return {
      tk: 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJjOTAwOGZhNy04MzE4LTQ4MjgtODQ4Ni0wNjBkNWUyNmE4NWQiLCJpZCI6MTU2NzgxLCJpYXQiOjE2OTA0NDQzNDR9.IzChoJZqHdsGiLeUhE_U0HAy3vbWWD1w2B-YoJwJ2ZU',
      viewer: null
    }
  },
  mounted() {
    Cesium.Ion.defaultAccessToken = this.tk;
    this.viewer = new Cesium.Viewer('vue-cesium', {
      animation: false,
      baseLayerPicker: true,
      geocoder: true,
      timeline: false,
      sceneModePicker: true,
      navigationHelpButton: false,
      infoBox: true,
    });
  }
}
</script>
<style scoped>
#vue-cesium {
  width: 1920px;
  height: 1080px;
  position: relative;
}
</style>

参考
https://www.jianshu.com/p/5c36d9d1b69c

相关文章

网友评论

      本文标题:2.初始化地图

      本文链接:https://www.haomeiwen.com/subject/rpikpdtx.html