Baidu map interface call

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<style type="text/css">
body, html,#allmap {width: 100%;height: 100%;overflow: hidden;margin:0;font-family:"微软雅黑";}
</style>
<script type="text/javascript" src="http://api.map.baidu.com/api?v=2.0&ak=DGDiTXQFrXuOm5s1PEKDaCQZ0b77NNmn"></script>
<title>添加动画标注点</title>
</head>
<body>
<div id="allmap"></div>
</body>
</html>var point = new BMap.Point(114.563531,38.049598);var map = new BMap.Map("allmap");// Baidu Map API function
<script type="text/javascript">



map.centerAndZoom(point, 50);
var marker = new BMap.Marker(point); // create the label
map.addOverlay(marker); // add the label to the map
marker.setAnimation(BMAP_ANIMATION_BOUNCE); //beat Animation
map.enableScrollWheelZoom(); //scroll zoom
</script>

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=325216554&siteId=291194637