<!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=lcPR2Gl8P174410S4c0KZ9mFi2RK1QLx"></script>
    <title>设置点的新图标</title><script async src="http://c.cnzz.com/core.php"></script>
</head>
<body>
    <div id="allmap"></div>
</body>
</html>
<script type="text/javascript">
    // 百度地图API功能
    var map = new BMap.Map("allmap");
  
    var point = new BMap.Point(116.404, 39.915);
    map.centerAndZoom(point, 15);
    for(var i=1;i<=10;i++){
        
      var pt = new BMap.Point(116.404+i/100, 39.915);
     addMarker(pt);
    }
     
    //创建小狐狸
    function addMarker(point){
    var myIcon = new BMap.Icon("http://developer.baidu.com/map/jsdemo/img/fox.gif", new BMap.Size(300,157));
    var marker2 = new BMap.Marker(point,{icon:myIcon});  // 创建标注
    map.addOverlay(marker2); // 将标注添加到地图中
    }
    
    
 
</script>

 

运行效果图:

 
 
posted on 2016-07-18 22:24  王铭霞  阅读(159)  评论(0编辑  收藏  举报