排行榜 轨迹
This commit is contained in:
parent
e60046b7fe
commit
b03b0ff2e5
|
@ -5,8 +5,8 @@ VUE_APP_TITLE = 共享电动车管理系统
|
||||||
ENV = 'development'
|
ENV = 'development'
|
||||||
|
|
||||||
# 共享电动车管理系统/开发环境
|
# 共享电动车管理系统/开发环境
|
||||||
# VUE_APP_BASE_API = 'https://dche.ccttiot.com/prod-api'
|
VUE_APP_BASE_API = 'https://dche.ccttiot.com/prod-api'
|
||||||
VUE_APP_BASE_API = 'https://che.chuangtewl.com/prod-api'
|
# VUE_APP_BASE_API = 'https://che.chuangtewl.com/prod-api'
|
||||||
|
|
||||||
# VUE_APP_BASE_API = 'http://192.168.2.75:8088'
|
# VUE_APP_BASE_API = 'http://192.168.2.75:8088'
|
||||||
|
|
||||||
|
|
|
@ -138,7 +138,7 @@ export default {
|
||||||
AMapLoader.load({
|
AMapLoader.load({
|
||||||
key: globalConfig.aMap.key, // 申请好的Web端开发者Key,首次调用 load 时必填
|
key: globalConfig.aMap.key, // 申请好的Web端开发者Key,首次调用 load 时必填
|
||||||
version: "2.0", // 指定要加载的 JSAPI 的版本,缺省时默认为 1.4.15
|
version: "2.0", // 指定要加载的 JSAPI 的版本,缺省时默认为 1.4.15
|
||||||
plugins: ["AMap.MoveAnimation"]
|
plugins: ["AMap.PlaceSearch", "AMap.MoveAnimation"], // 确保包含 "AMap.MoveAnimation"
|
||||||
}).then((AMap) => {
|
}).then((AMap) => {
|
||||||
let abb;
|
let abb;
|
||||||
try {
|
try {
|
||||||
|
|
|
@ -146,7 +146,7 @@ export default {
|
||||||
AMapLoader.load({
|
AMapLoader.load({
|
||||||
key: globalConfig.aMap.key, // 申请好的Web端开发者Key,首次调用 load 时必填
|
key: globalConfig.aMap.key, // 申请好的Web端开发者Key,首次调用 load 时必填
|
||||||
version: "2.0", // 指定要加载的 JSAPI 的版本,缺省时默认为 1.4.15
|
version: "2.0", // 指定要加载的 JSAPI 的版本,缺省时默认为 1.4.15
|
||||||
plugins: ["AMap.PlaceSearch"], // 需要使用的的插件列表,如比例尺'AMap.Scale'等
|
plugins: ["AMap.PlaceSearch", "AMap.MoveAnimation"], // 确保包含 "AMap.MoveAnimation"
|
||||||
}).then((AMap) => {
|
}).then((AMap) => {
|
||||||
this.AMap = AMap;
|
this.AMap = AMap;
|
||||||
this.map = new AMap.Map("container", {
|
this.map = new AMap.Map("container", {
|
||||||
|
@ -191,6 +191,7 @@ export default {
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
trajectory() {
|
trajectory() {
|
||||||
|
this.marker=null
|
||||||
console.log('轨迹调用了11',this.tripRouteStr);
|
console.log('轨迹调用了11',this.tripRouteStr);
|
||||||
this.line = JSON.parse(this.tripRouteStr)
|
this.line = JSON.parse(this.tripRouteStr)
|
||||||
console.log("this.line================" + this.line)
|
console.log("this.line================" + this.line)
|
||||||
|
@ -201,6 +202,7 @@ export default {
|
||||||
console.error("Error parsing tripRouteStr:", error);
|
console.error("Error parsing tripRouteStr:", error);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
console.log(abb);
|
||||||
let latitude = parseFloat(abb[0][1]);
|
let latitude = parseFloat(abb[0][1]);
|
||||||
let longitude = parseFloat(abb[0][0]);
|
let longitude = parseFloat(abb[0][0]);
|
||||||
let latitude1 = parseFloat(abb[abb.length - 1][1]);
|
let latitude1 = parseFloat(abb[abb.length - 1][1]);
|
||||||
|
@ -593,10 +595,12 @@ export default {
|
||||||
this.doSearchNearBy(keyword, center.lng, center.lat, 1000);
|
this.doSearchNearBy(keyword, center.lng, center.lat, 1000);
|
||||||
},
|
},
|
||||||
startAnimation() {
|
startAnimation() {
|
||||||
|
console.log(this.marker,'this.markerthis.marker');
|
||||||
this.marker.moveAlong(this.line, {
|
this.marker.moveAlong(this.line, {
|
||||||
// 每一段的时长
|
// 每一段的时长
|
||||||
duration: 200,//可根据实际采集时间间隔设置
|
duration: 200,//可根据实际采集时间间隔设置
|
||||||
});
|
});
|
||||||
|
|
||||||
},
|
},
|
||||||
pauseAnimation() {
|
pauseAnimation() {
|
||||||
this.marker.pauseMove();
|
this.marker.pauseMove();
|
||||||
|
|
|
@ -812,7 +812,7 @@
|
||||||
|
|
||||||
</el-row> -->
|
</el-row> -->
|
||||||
<location-map
|
<location-map
|
||||||
v-if="showPlaceSearchMap&&tripRouteStr!=''"
|
v-if="showPlaceSearchMap && tripRouteStr != ''"
|
||||||
ref="map"
|
ref="map"
|
||||||
height="400px"
|
height="400px"
|
||||||
:key="key"
|
:key="key"
|
||||||
|
@ -1011,8 +1011,8 @@ export default {
|
||||||
selected: null,
|
selected: null,
|
||||||
// 表单参数
|
// 表单参数
|
||||||
form: {},
|
form: {},
|
||||||
startTime: "2024-08-20 20:22",
|
startTime: "",
|
||||||
endTime: "2024-08-22 16:00",
|
endTime: "",
|
||||||
// 表单校验
|
// 表单校验
|
||||||
rules: {
|
rules: {
|
||||||
// modelId: [
|
// modelId: [
|
||||||
|
@ -1094,7 +1094,6 @@ export default {
|
||||||
this.showPlaceSearchMap = true; // 打开地图
|
this.showPlaceSearchMap = true; // 打开地图
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
},
|
},
|
||||||
beforeDestroy() {
|
beforeDestroy() {
|
||||||
this.$eventBus.$off("close-all-dialogs", this.closeDialog);
|
this.$eventBus.$off("close-all-dialogs", this.closeDialog);
|
||||||
|
@ -1102,14 +1101,14 @@ export default {
|
||||||
methods: {
|
methods: {
|
||||||
startTimecg(value) {
|
startTimecg(value) {
|
||||||
console.log("start变化", value);
|
console.log("start变化", value);
|
||||||
if(this.startTime!=''&&this.endTime!=''){
|
if (this.startTime != "" && this.endTime != "") {
|
||||||
this.gettj()
|
this.gettj();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
endTimecg(value) {
|
endTimecg(value) {
|
||||||
console.log("start变化", value);
|
console.log("start变化", value);
|
||||||
if(this.startTime!=''&&this.endTime!=''){
|
if (this.startTime != "" && this.endTime != "") {
|
||||||
this.gettj()
|
this.gettj();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
handleScroll() {
|
handleScroll() {
|
||||||
|
@ -1392,7 +1391,7 @@ export default {
|
||||||
qrcode: null,
|
qrcode: null,
|
||||||
longitude: null,
|
longitude: null,
|
||||||
latitude: null,
|
latitude: null,
|
||||||
tripRouteStr: '',
|
tripRouteStr: "",
|
||||||
};
|
};
|
||||||
this.resetForm("form");
|
this.resetForm("form");
|
||||||
if (this.userName === "admin") {
|
if (this.userName === "admin") {
|
||||||
|
@ -1461,7 +1460,21 @@ export default {
|
||||||
this.showPlaceSearchMap = true;
|
this.showPlaceSearchMap = true;
|
||||||
this.key++;
|
this.key++;
|
||||||
this.orderRecordKey += 1;
|
this.orderRecordKey += 1;
|
||||||
this.gettj()
|
// 获取当前日期并设置时间格式
|
||||||
|
const now = new Date();
|
||||||
|
const year = now.getFullYear();
|
||||||
|
const month = String(now.getMonth() + 1).padStart(2, "0");
|
||||||
|
const day = String(now.getDate()).padStart(2, "0");
|
||||||
|
const hours = String(now.getHours()).padStart(2, "0");
|
||||||
|
const minutes = String(now.getMinutes()).padStart(2, "0");
|
||||||
|
|
||||||
|
// 设置 startTime 为当天凌晨 0 点
|
||||||
|
this.startTime = `${year}-${month}-${day} 00:00`;
|
||||||
|
|
||||||
|
// 设置 endTime 为当前时间
|
||||||
|
this.endTime = `${year}-${month}-${day} ${hours}:${minutes}`;
|
||||||
|
|
||||||
|
this.gettj();
|
||||||
},
|
},
|
||||||
gettj() {
|
gettj() {
|
||||||
let data = {
|
let data = {
|
||||||
|
@ -1469,14 +1482,17 @@ export default {
|
||||||
startTime: this.formatDate(this.startTime),
|
startTime: this.formatDate(this.startTime),
|
||||||
endTime: this.formatDate(this.endTime),
|
endTime: this.formatDate(this.endTime),
|
||||||
};
|
};
|
||||||
|
this.showPlaceSearchMap=false
|
||||||
|
|
||||||
gettrajectory(data).then((response) => {
|
gettrajectory(data).then((response) => {
|
||||||
this.tripRouteStr = response.data;
|
this.tripRouteStr = response.data;
|
||||||
// this.re
|
// this.re
|
||||||
|
this.showPlaceSearchMap=true
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
|
|
||||||
this.$refs.map.trajectory();
|
this.$refs.map.trajectory();
|
||||||
}, 600);
|
}, 600);
|
||||||
|
|
||||||
|
|
||||||
// console.log(this.tripRouteStr,'this.tripRouteStr');
|
// console.log(this.tripRouteStr,'this.tripRouteStr');
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue
Block a user