调节heading,pitch,

main
许宏杰 2 days ago
parent 7dcfe9fa02
commit 15e025bc95

@ -15,6 +15,7 @@
<!--引入mars3d库lib-->
<link href="https://registry.npmmirror.com/mars3d/latest/files/mars3d.css" rel="stylesheet" type="text/css" />
<script src="https://registry.npmmirror.com/mars3d/latest/files/mars3d.js" type="text/javascript"></script>
<!-- <script src="http://www.jichuanglanhai.com/demo/map3d/turf.min.js" type="text/javascript"></script>
<link href="http://www.jichuanglanhai.com/demo/map3d/mars3d/mars3d.css" rel="stylesheet" type="text/css" />
<script src="http://www.jichuanglanhai.com/demo/map3d/mars3d/mars3d.js" type="text/javascript"></script> -->

@ -0,0 +1,260 @@
<template>
<div class="map-container">
<mars-map :options="options" @onload="mapLoad"></mars-map>
</div>
</template>
<script setup>
import { ref, onMounted, onUnmounted } from "vue";
import marsMap from "@/components/marsMap";
let options = {
scene: {
center: {
lat: 30.647679,
lng: 120.691682,
alt: 37478.2,
heading: 2.7,
pitch: -36.9,
},
showSun: false,
showMoon: false,
showSkyBox: false,
showSkyAtmosphere: false,
fog: false,
// backgroundColor: "#363635", //
globe: {
baseColor: "#363635", //
showGroundAtmosphere: false,
enableLighting: false,
},
clock: {
currentTime: "2023-11-01 12:00:00", //
},
cameraController: {
zoomFactor: 1.5,
minimumZoomDistance: 0.1,
maximumZoomDistance: 200000,
enableCollisionDetection: false, //
},
},
terrain: {
show: false,
},
basemaps: [
{
id: 2017,
pid: 10,
name: "蓝色底图",
icon: "https://data.mars3d.cn/img/thumbnail/basemap/my_blue.png",
type: "gaode",
layer: "vec",
chinaCRS: "GCJ02",
invertColor: true,
filterColor: "#015CB3",
brightness: 0.6,
contrast: 1.8,
gamma: 0.3,
hue: 1,
saturation: 0,
show: true,
},
],
};
const gamepadIndex = ref(null); //
const direction = ref(""); //
let map = null;
let Cesium = {};
let mapLayer = {};
let uav = null;
const params = reactive({
lat: 31.162232,
lng: 120.734077,
altitude: 3000,
heading: 0, //
pitch: 0, //
roll: 0, //
correction: 1,
speed: 800,
gamepad: true,
});
/**
* 地图渲染完毕
* @param mapInstance 当前地图对象
*/
const mapLoad = (mapInstance) => {
map = mapInstance;
Cesium = mars3d.Cesium;
//marker
mapLayer.markerLayer = new mars3d.layer.GraphicLayer({
allowDrillPick: true, // clickgraphics
});
map.addLayer(mapLayer.markerLayer);
onAddGamepadboardListener()
boostrapUav();
};
/**
* 监听游戏手柄
*/
const onAddGamepadboardListener =()=>{
window.addEventListener('gamepadconnected', function (e) {
var gp = navigator.getGamepads()[e.gamepad.index]
console.log(gp, '链接')
})
//
window.addEventListener('gamepaddisconnected', function (e) {
clearInterval(interval)
})
}
/**
* 创建模型对象
*/
const initModel = () => {
const position = Cesium.Cartesian3.fromDegrees(120.734077, 31.162232, 2000)
uav = new mars3d.graphic.Route({
id:"uav",
name:"无人机模型",
position:position,
model:{
url: "https://data.mars3d.cn/gltf/mars/wrj.glb",
scale: 5,
minimumPixelSize: 50,
// heading:220
},
camera:{
type:'gs',
radius:25000,
heading:25,
pitch:-35
}
})
mapLayer.markerLayer.addGraphic(uav);
};
const boostrapUav = () => {
initModel();
const renderer = () => {
startgamepad()
onAdjustAttitude();
requestAnimationFrame(renderer);
};
renderer();
};
const startgamepad = () => {
var gamepad = navigator.getGamepads()[0]
if (gamepad) {
//
// pressKey(gamepad!.buttons)
//
rocker(gamepad.axes)
}
}
const rocker = (axes) => {
const deadZone = 0.5
const x = axes[0]
const y = axes[1]
// //
if (x < -deadZone) {
//
params.heading -= 0.1
if (params.roll > -0.785) {
params.roll -= 1
}
} else if (x > deadZone) {
//
params.heading += 0.1
if (params.roll < 0.785) {
params.roll += 0.1
}
}
//
if (y < -deadZone && params.pitch <= 0.3) {
params.pitch += 0.015
if (params.pitch > 0) {
const { speed, pitch } = params
const temp = (params.speed / 60 / 60 / 60) * 110
//1110km
params.altitude += temp * Math.sin(pitch)
}
} else if (y > deadZone && params.pitch >= -0.3) {
//
params.pitch -= 0.016
if (params.pitch < 0) {
const { speed, pitch } = params
//1110km
const temp = (params.speed / 60 / 60 / 60) * 110
params.altitude += temp * Math.sin(pitch)
}
}
uavCommit()
}
const uavCommit = () => {
const { heading, pitch, roll } = params
const { abs, cos } = Math
params.correction = abs(cos(heading) * cos(pitch))
if (abs(heading) < 0.001) params.heading = 0
if (abs(roll) < 0.001) params.roll = 0
if (abs(pitch) < 0.001) params.pitch = 0
//
// if (params.heading > 0) params.heading -= 0.0025
// if (params.heading < 0) params.heading += 0.0025
if (params.roll > 0) params.roll -= 0.003
if (params.roll < 0) params.roll += 0.003
if (params.pitch < 0) params.pitch += 0.005
if (params.pitch > 0) params.pitch -= 0.003
}
// 姿
const onAdjustAttitude = () => {
const temp = params.speed / 60 / 60 / 60 / 110
params.lng += temp * Math.cos(params.heading)
params.lat -= temp * Math.sin(params.heading)
const { lng, lat, altitude, heading, pitch, roll } = params
params.altitude += temp * Math.sin(pitch) * 110 * 1000 * 10
// const position = Cesium.Cartesian3.fromDegrees(lng, lat, altitude)
// const hpr = new Cesium.HeadingPitchRoll(heading, pitch, roll)
// const orientation = Cesium.Transforms.headingPitchRollQuaternion(
// position,
// hpr
// )
const point = new mars3d.LngLatPoint(lng, lat, altitude)
uav.model.setStyle({
heading:heading,
pitch:pitch,
roll:roll,
})
uav.addTimePosition(point)
}
onUnmounted(() => {
window.removeEventListener("gamepadconnected", );
window.removeEventListener("gamepaddisconnected", );
});
</script>
<style lang="scss" scoped>
.map-container {
height: 100%;
}
</style>

@ -62,8 +62,23 @@ let options = {
],
};
const gamepadIndex = ref(null); //
const direction = ref(""); //
const DIRECTION = {
UP: "w",
DOWN: "s",
LEFT: "a",
RIGHT: "d",
SPEED_UP: "q",
SPEED_DOWN: "e",
};
const keyboardMap = {
[DIRECTION.UP]: false,
[DIRECTION.DOWN]: false,
[DIRECTION.LEFT]: false,
[DIRECTION.RIGHT]: false,
[DIRECTION.SPEED_UP]: false,
[DIRECTION.SPEED_DOWN]: false,
};
let map = null;
let Cesium = {};
@ -93,164 +108,146 @@ const mapLoad = (mapInstance) => {
allowDrillPick: true, // clickgraphics
});
map.addLayer(mapLayer.markerLayer);
onAddGamepadboardListener()
boostrapUav();
};
/**
* 监听游戏手柄
*/
const onAddGamepadboardListener =()=>{
window.addEventListener('gamepadconnected', function (e) {
var gp = navigator.getGamepads()[e.gamepad.index]
console.log(gp, '链接')
})
//
window.addEventListener('gamepaddisconnected', function (e) {
clearInterval(interval)
})
}
/**
* 创建模型对象
*/
const initModel = () => {
const position = Cesium.Cartesian3.fromDegrees(120.734077, 31.162232, 2000)
uav = new mars3d.graphic.Route({
id:"uav",
name:"无人机模型",
position:position,
model:{
id: "uav",
name: "无人机模型",
model: {
url: "https://data.mars3d.cn/gltf/mars/wrj.glb",
scale: 5,
minimumPixelSize: 50,
// heading:220
scale: 5,
minimumPixelSize: 50,
runAnimations: true,
mergeOrientation: true,
},
camera:{
type:'gs',
radius:25000,
heading:25,
pitch:-35
}
})
camera: {
type: "gs",
radius: 25000,
heading: 25,
pitch: -35,
},
});
mapLayer.markerLayer.addGraphic(uav);
};
};
const boostrapUav = () => {
initModel();
onAddKeyboardListener();
const renderer = () => {
startgamepad()
onAdjustParams();
onAdjustAttitude();
requestAnimationFrame(renderer);
};
renderer();
};
const startgamepad = () => {
var gamepad = navigator.getGamepads()[0]
if (gamepad) {
//
// pressKey(gamepad!.buttons)
//
rocker(gamepad.axes)
//
const onAddKeyboardListener = () => {
document.addEventListener("keydown", (e) => {
if (Object.keys(keyboardMap).includes(e.key)) {
keyboardMap[e.key] = true;
}
});
document.addEventListener("keyup", (e) => {
if (Object.keys(keyboardMap).includes(e.key)) {
keyboardMap[e.key] = false;
}
});
};
//
const onAdjustParams = () => {
if (keyboardMap[DIRECTION.SPEED_UP]) {
params.speed += 100;
}
const rocker = (axes) => {
const deadZone = 0.5
const x = axes[0]
const y = axes[1]
// //
if (x < -deadZone) {
//
params.heading -= 0.1
if (params.roll > -0.785) {
params.roll -= 1
}
} else if (x > deadZone) {
//
params.heading += 0.1
if (params.roll < 0.785) {
params.roll += 0.1
}
if (keyboardMap[DIRECTION.SPEED_DOWN]) {
if (params.speed >= 500) {
params.speed -= 100;
}
//
if (y < -deadZone && params.pitch <= 0.3) {
params.pitch += 0.015
if (params.pitch > 0) {
const { speed, pitch } = params
const temp = (params.speed / 60 / 60 / 60) * 110
//1110km
params.altitude += temp * Math.sin(pitch)
}
} else if (y > deadZone && params.pitch >= -0.3) {
//
params.pitch -= 0.016
if (params.pitch < 0) {
const { speed, pitch } = params
//1110km
const temp = (params.speed / 60 / 60 / 60) * 110
params.altitude += temp * Math.sin(pitch)
}
}
//
if (keyboardMap[DIRECTION.UP] && params.pitch <= 0.3) {
params.pitch += 0.005;
if (params.pitch > 0) {
const { speed, pitch } = params;
const temp = (params.speed / 60 / 60 / 60) * 110;
//1110km
params.altitude += temp * Math.sin(pitch);
}
uavCommit()
}
const uavCommit = () => {
const { heading, pitch, roll } = params
const { abs, cos } = Math
params.correction = abs(cos(heading) * cos(pitch))
if (abs(heading) < 0.001) params.heading = 0
if (abs(roll) < 0.001) params.roll = 0
if (abs(pitch) < 0.001) params.pitch = 0
//
// if (params.heading > 0) params.heading -= 0.0025
// if (params.heading < 0) params.heading += 0.0025
if (params.roll > 0) params.roll -= 0.003
if (params.roll < 0) params.roll += 0.003
if (params.pitch < 0) params.pitch += 0.005
if (params.pitch > 0) params.pitch -= 0.003
//
if (keyboardMap[DIRECTION.DOWN] && params.pitch >= -0.3) {
params.pitch -= 0.006;
if (params.pitch < 0) {
const { speed, pitch } = params;
//1110km
const temp = (params.speed / 60 / 60 / 60) * 110;
params.altitude += temp * Math.sin(pitch);
}
}
// 姿
const onAdjustAttitude = () => {
const temp = params.speed / 60 / 60 / 60 / 110
params.lng += temp * Math.cos(params.heading)
params.lat -= temp * Math.sin(params.heading)
const { lng, lat, altitude, heading, pitch, roll } = params
params.altitude += temp * Math.sin(pitch) * 110 * 1000 * 10
// const position = Cesium.Cartesian3.fromDegrees(lng, lat, altitude)
// const hpr = new Cesium.HeadingPitchRoll(heading, pitch, roll)
// const orientation = Cesium.Transforms.headingPitchRollQuaternion(
// position,
// hpr
// )
const point = new mars3d.LngLatPoint(lng, lat, altitude)
uav.model.setStyle({
heading:heading,
pitch:pitch,
roll:roll,
})
uav.addTimePosition(point)
//
if (keyboardMap[DIRECTION.LEFT]) {
params.heading -= 0.115;
if (params.roll > -10) {
params.roll -= 0.115;
}
}
//
if (keyboardMap[DIRECTION.RIGHT]) {
params.heading += 0.115;
if (params.roll < 10) {
params.roll += 0.115;
}
}
const { heading, pitch, roll } = params;
const { abs, cos } = Math;
params.correction = abs(cos(heading) * cos(pitch));
if (abs(heading) < 0.001) params.heading = 0;
if (abs(roll) < 0.001) params.roll = 0;
if (abs(pitch) < 0.001) params.pitch = 0;
//
// if (params.heading > 0) params.heading -= 0.0025
// if (params.heading < 0) params.heading += 0.0025
if (params.roll > 0) params.roll -= 0.003;
if (params.roll < 0) params.roll += 0.003;
if (params.pitch < 0) params.pitch += 0.005;
if (params.pitch > 0) params.pitch -= 0.003;
};
// 姿/
const onAdjustAttitude = () => {
const temp = params.speed / 60 / 60 / 60 / 110;
params.lng += temp * Math.cos(params.heading);
params.lat -= temp * Math.sin(params.heading);
const { lng, lat, altitude, heading, pitch, roll } = params;
onUnmounted(() => {
window.removeEventListener("gamepadconnected", );
window.removeEventListener("gamepaddisconnected", );
});
params.altitude += temp * Math.sin(pitch) * 110 * 1000 * 10;
const position = Cesium.Cartesian3.fromDegrees(lng, lat, altitude);
const hpr = new Cesium.HeadingPitchRoll(heading, pitch, roll);
const orientation = Cesium.Transforms.headingPitchRollQuaternion(
position,
hpr
);
uav.model.setStyle({
heading,
pitch,
roll
});
// uav.model.orientation= orientation //,
uav.addTimePosition(position);
};
</script>
<style lang="scss" scoped>

Loading…
Cancel
Save