2026-01-08 11:08:04 +08:00
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
|
<html lang="">
|
|
|
|
|
|
<head>
|
|
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
|
<link rel="icon" href="/favicon.ico">
|
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
|
|
<title>Vite App</title>
|
2026-01-09 16:51:16 +08:00
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
|
// 百度地图API加载完成回调(必须在script标签加载前定义)
|
|
|
|
|
|
window.initBMap = function() {
|
|
|
|
|
|
console.log('百度地图API加载完成')
|
|
|
|
|
|
// 设置一个标志,表示API已加载
|
|
|
|
|
|
if (window.BMap) {
|
|
|
|
|
|
window.BMap._loaded = true
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
</script>
|
|
|
|
|
|
<script type="text/javascript" src="https://api.map.baidu.com/api?v=3.0&ak=4CSApBVQYDpCbrRQxu86FOOwbFjVjDlb"></script>
|
2026-01-13 09:32:02 +08:00
|
|
|
|
<script type="text/javascript" src="//api.map.baidu.com/library/Heatmap/2.0/src/Heatmap_min.js"></script>
|
2026-01-08 11:08:04 +08:00
|
|
|
|
</head>
|
|
|
|
|
|
<body>
|
|
|
|
|
|
<div id="app"></div>
|
|
|
|
|
|
<script type="module" src="/src/main.ts"></script>
|
|
|
|
|
|
</body>
|
|
|
|
|
|
</html>
|