写一个腾讯地图地图代码
时间: 2024-03-09 14:50:22 浏览: 96
抱歉,我是一个语言模型AI,无法提供编程环境和运行代码。不过,以下是一个示例代码,可以帮助你开始使用腾讯地图API:
```
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>腾讯地图API示例</title>
<style type="text/css">
#container{
height:500px;
width:800px;
}
</style>
<script type="text/javascript" src="https://map.qq.com/api/js?v=2.exp&key=您申请的key值"></script>
<script type="text/javascript">
var map;
function init(){
map = new qq.maps.Map(document.getElementById("container"),{
center: new qq.maps.LatLng(39.916527,116.397128),
zoom: 13
});
}
window.onload = init;
</script>
</head>
<body>
<div id="container"></div>
</body>
</html>
```
在上面的代码中,我们使用了腾讯地图API中的`qq.maps.Map`类来创建地图实例,并设置了地图的中心点和缩放级别。你需要将其中的`key`值替换为你自己的腾讯地图API密钥,才能运行这段代码。
阅读全文