51 lines
1.1 KiB
HTML
51 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Title</title>
|
|
<!-- <script src="https://cesium.com/downloads/cesiumjs/releases/1.117/Build/Cesium/Cesium.js"></script> -->
|
|
<script src="../sdk/YJEarth.min.js"></script>
|
|
<script src="vue.js"></script>
|
|
|
|
<style>
|
|
body {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="app" class="fullSize">
|
|
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|
|
|
|
<script>
|
|
new Vue({
|
|
el: "#app",
|
|
data: {
|
|
},
|
|
async mounted() {
|
|
await YJ.on()
|
|
this.createEarth()
|
|
},
|
|
methods: {
|
|
createEarth() {
|
|
window.sdk = new YJ.YJEarth("app")
|
|
YJ.Global.setDefaultView(sdk, {
|
|
destination: { lng: 100, lat: 30, alt: 10 },
|
|
orientation: {
|
|
heading: 0.0,
|
|
pitch: -90.0,
|
|
roll: 0.0
|
|
}
|
|
})
|
|
new YJ.Tools(sdk).flyHome(0)
|
|
}
|
|
}
|
|
})
|
|
</script> |