-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Feature] 可自定义滑窗和步长 & [Improve] 修改孔洞处理显示逻辑 (#47)
* 后端支持自定义滑窗和步长 * 滑窗大小进行校验 * 孔洞处理合并进入变化检测,无需手动指定 * 添加动画效果 * 同步更新可拖拽框内信息 * 孔洞处理渲染 * 限制window_size和stride * 变化检测功能实现自定义滑窗和步长 * 异步加载百度地图,改变ak编码形式 * 异步加载百度地图,改变ak编码形式 * 支持自定义端口号 * 更新Readme * Revert "更新Readme" This reverts commit 91d0255. * 修改错误的提示信息 * 统一模型名称 * 修改模型命名,设置窗口和步长限制关系 Co-authored-by: Lu Lidong <2421235683@qq.com>
- Loading branch information
Showing
17 changed files
with
298 additions
and
234 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
VUE_APP_BACKEND_PORT = 5008 | ||
VUE_APP_BACKEND_IP = 127.0.0.1 | ||
VUE_APP_BACKEND_IP = 127.0.0.1 | ||
VUE_APP_BAIDU_MAP_ACCESS_KEY = <ACCESS_KEY> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,8 +12,6 @@ | |
<script> | ||
export default { | ||
name: 'App', | ||
} | ||
</script> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
export default function loadBMap(ak) { | ||
return new Promise(function(resolve, reject) { | ||
if (typeof BMap !== 'undefined') { | ||
resolve(BMap) | ||
return true | ||
} | ||
window.onBMapCallback = function() { | ||
resolve(BMap) | ||
} | ||
let script = document.createElement('script') | ||
script.type = 'text/javascript' | ||
script.src = | ||
'http://api.map.baidu.com/api?v=3.0&ak=' + ak + '&callback=onBMapCallback' | ||
script.onerror = reject | ||
document.head.appendChild(script) | ||
}) | ||
} |
Oops, something went wrong.