Cesium-Examples/examples/threeEx/2.1.1、three-tile入门.html

93 lines
2.7 KiB
HTML
Raw Permalink Normal View History

2025-03-11 08:25:45 +00:00
<!--********************************************************************
* by jiawanlong
原作者https://github.com/sxguojf/three-tile
https://github.com/sxguojf/three-tile-example/blob/master/src/step1.1/main.ts
*********************************************************************-->
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
2025-03-19 03:00:22 +00:00
<script type="text/javascript" src="./../../libs/three/three.js"></script>
2025-03-11 08:25:45 +00:00
<style>
* {
margin: 0;
padding: 0;
overflow: hidden;
}
body,
#map {
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<div id="map" ></div>
<script type="importmap">
{
"imports": {
2025-03-19 03:00:22 +00:00
"three": "./../../libs/three/build/three.module.js",
2025-03-11 08:25:45 +00:00
"three-tile": "./three-tile.js"
}
}
</script>
<script type="module">
import * as THREE from "three";
import * as tt from "three-tile";
const MAPBOXKEY =
"pk.eyJ1IjoidHJhbXBqd2wiLCJhIjoiY2xhYXIxbHExMDN3dzN3cGliOHdrMThxMiJ9.6er2aYb1EBjSsK1-t9d2-w";
// mapbox影像数据源
const mapBoxImgSource = new tt.plugin.MapBoxSource({
token: MAPBOXKEY,
dataType: "image",
style: "mapbox.satellite",
});
// mapbox地形数据源
const mapBoxDemSource = new tt.plugin.MapBoxSource({
token: MAPBOXKEY,
dataType: "terrain-rgb",
style: "mapbox.terrain-rgb",
maxLevel: 15,
});
// 创建地图
const map = tt.TileMap.create({
// 影像数据源
imgSource: mapBoxImgSource,
// 地形数据源
demSource: mapBoxDemSource,
// 地图投影中心经度
lon0: 90,
// 最小缩放级别
minLevel: 2,
// 最大缩放级别
maxLevel: 18,
});
// 地图旋转到xz平面
map.rotateX(-Math.PI / 2);
// 地图中心坐标(经度,纬度,高度)
const centerGeo = new THREE.Vector3(105, 30, 0);
// 摄像坐标(经度,纬度,高度)
const camersGeo = new THREE.Vector3(105, 0, 5000);
// 地图中心转为世界坐标
const centerPostion = map.localToWorld(map.geo2pos(centerGeo));
// 摄像机转为世界坐标
const cameraPosition = map.localToWorld(map.geo2pos(camersGeo));
// 初始化场景
const viewer = new tt.plugin.GLViewer("#map", { centerPostion, cameraPosition });
// 地图添加到场景
viewer.scene.add(map);
</script>
</body>
</html>