http://dev.baidu.com/wiki/static/map/API/examples/?v=1.3&2_0#2&0太原市的经纬度:112.596,37.884北京市的经纬度:116.404,39.915//JScript文件代码示例http://dev.baidu.com/wiki/static/map/API/examples/?v=1.3&7_8#7&8/************************地图初始化时,添加了十个自定义标注图标,且是这十个图标是在一张图片中**************************/varmap=newBMap.Map("container");varpoint=newBMap.Point(116.404,39.915);map.centerAndZoom(point,15);//编写自定义函数,创建标注functionaddMarker(point,index){varmyIcon=newBMap.Icon("http://dev.baidu.com/wiki/static/map/API/examples/images/ico-1-9.png",newBMap.Size(28,37),//也可以用本地图片varmyIcon=newBMap.Icon("./Images/xiao.png",newBMap.Size(28,37),{offset:newBMap.Size(10,25),imageOffset:newBMap.Size(0-index*28,0)});varmarker=newBMap.Marker(point,{icon:myIcon});map.addOverlay(marker);}//随机向地图添加10个标注varbounds=map.getBounds();varsw=bounds.getSouthWest();varne=bounds.getNorthEast();varlngSpan=Math.abs(sw.lng-ne.lng);varlatSpan=Math.abs(ne.lat-sw.lat);for(vari=0;i<25;i++){varpoint=newBMap.Point(sw.lng+lngSpan*(Math.random()*0.7),ne.lat-latSpan*(Math.random()*0.7));addMarker(point,i);}/*******************给出一个关键字搜索相关名字并在地图下方输出*******************/varmap=newBMap.Map("container");map.centerAndZoom(newBMap.Point(116.404,39.915),10);varoptions={onSearchComplete:function(results){//判断状态是否正确if(local.getStatus()==BMAP_STATUS_SUCCESS){vars=[];for(vari=0;i<results.getCurrentNumPois();i++){s.push(results.getPoi(i).title+","+results.getPoi(i).address);}document.getElementById("results").innerHTML=s.join("<br/>");}}};varlocal=newBMap.LocalSearch(map,options);local.search("庙");/*********************指定地点进行搜索***********************/varmap=newBMap.Map("container");map.centerAndZoom(newBMap.Point(116.404,39.915),11);varlocal=newBMap.LocalSearch(map,{renderOptions:{map:map,autoViewport:true}});local.searchNearby("小吃","前门");/**************************根据指定地址找到地图上的经纬度***********************/varmap=newBMap.Map("container");map.centerAndZoom(newBMap.Point(112.404,37.915),11);//创建地址解析器实例varmyGeo=newBMap.Geocoder();//将地址解析结果显示在地图上,并调整地图视野myGeo.getPoint("迎泽西大街",function(point){if(point){map.centerAndZoom(point,16);map.addOverlay(newBMap.Marker(point));}},"太原市");/******************IP定位*****************************/varmap=newBMap.Map("container");//创建Map实例varpoint=newBMap.Point(116.404,39.915);//创建点坐标map.centerAndZoom(point,15);functionmyFun(result){varcityName=result.name;map.setCenter(cityName);alert(cityName);}varmyCity=newBMap.LocalCity();myCity.get(myFun);/********************点击地图发出反应************************/varmap=newBMap.Map("container");map.centerAndZoom(newBMap.Point(116.404,39.915),11);map.addEventListener("click",function(){alert("您点击了地图。");});/****************右侧地图加载完成后,拖拽地图,在地图的右上方能显示当前拖拽点的经纬度。***************/varmap=newBMap.Map("container");//创建Map实例map.centerAndZoom(newBMap.Point(112.596,37.884),11);//初始化地图,设置中心点坐标和地图级别varopts={anchor:BMAP_ANCHOR_TOP_RIGHT,offset:newBMap.Size(10,30),type:BMAP_NAVIGATION_CONTROL_SMALL};//指定鱼骨头控件的位置,样式map.addControl(newBMap.NavigationControl(opts));//添加平移缩放控件鱼骨头控件/**/map.addControl(newBMap.ScaleControl());//添加比例尺控件map.addContro...