js 地图功能

Posted 文幻

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js 地图功能相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>异步加载</title>
<script type="text/javascript">
function initialize() {
var mp = new BMap.Map(‘map‘);
mp.centerAndZoom(new BMap.Point(121.491, 31.233), 11);
}

function loadScript() {
var script = document.createElement("script");
script.src = "http://api.map.baidu.com/api?v=2.0&ak=您的密钥&callback=initialize";//此为v2.0版本的引用方式
// http://api.map.baidu.com/api?v=1.4&ak=您的密钥&callback=initialize"; //此为v1.4版本及以前版本的引用方式
document.body.appendChild(script);
}

window.onload = loadScript;
</script>
</head>
<body>
<div id="map" style="width:500px;height:320px"></div>
</body>
</html>
转自:http://lbsyun.baidu.com/index.php?title=jspopular/guide/introduction














以上是关于js 地图功能的主要内容,如果未能解决你的问题,请参考以下文章

我在网页上想调用百度地图,如何实现百度地图的标记功能,在html文件里写js代码

js仿百度地图拖拽缩放添加图层功能(原创)

微信JS-SDK之地理位置的获取与在线导航,集成百度地图实现在线地图搜索

JS: 百度地图与腾讯/高德地图经纬度转换

Blazor:谷歌地图 JS API

GIS——在js版搜索地图上加入Marker标记