Skip to content
  • This project
    • Loading...
  • Sign in

刘远 / 3d_dc

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 1
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • 3d_dc
  • src
  • views
  • Home.vue
  • 刘远's avatar
    优化 cesium · 60b11e18
    60b11e18
    刘远 committed 2020-07-28 10:13:50 +0800
Home.vue 530 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
<template>
    <div class="home">
         <div id="cesiumContainer" style="width: 1000px; height:600px"></div>
    </div>
</template>
<script>



    export default {
        components: {},
        data() {
            return {
              
            }
        },
        mounted() {
            Cesium.Ion.defaultAccessToken = this.config.mapToken;
            var viewer = new Cesium.Viewer('cesiumContainer');
        },
        methods: {
            
        }
    }
</script>

<style scoped lang="scss">

    
</style>