Files
shixi2026vue/index.html
2026-01-13 09:32:02 +08:00

26 lines
918 B
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!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>
<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>
<script type="text/javascript" src="//api.map.baidu.com/library/Heatmap/2.0/src/Heatmap_min.js"></script>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>