欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

html5定位获取当前位置并在百度地图上显示

程序员文章站 2023-11-05 23:28:04
用html5的地理定位功能通过手机定位获取当前位置并在地图上居中显示出来,下面是百度地图API的使用过程,有需要的朋友可以参考下... 14-08-22...
在开发移动端 web 或者webapp时,使用百度地图 api 的过程中,经常需要通过手机定位获取当前位置并在地图上居中显示出来,这就需要用到html5的地理定位功能。

复制代码
代码如下:

navigator.geolocation.getcurrentposition(callback);

在获取坐标成功之后会执行回调函数 callback; callback 方法的参数就是获取到的坐标点;然后可以初始化地图,设置控件、中心点、缩放等级,然后给地图添加point的overlay:

复制代码
代码如下:

var map = new bmap.map("mapdiv");//mapdiv为放地图的 div 的 id
map.addcontrol(new bmap.navigationcontrol());
map.addcontrol(new bmap.scalecontrol());
map.addcontrol(new bmap.overviewmapcontrol());
map.centerandzoom(point, 15);//point为坐标点,15为地图缩放级别,最大级别是 18
var pointmarker = new bmap.marker(point);
map.addoverlay(pointmarker);

然而事实上这样还不够,显示出来的结果并不准,这是因为 getcurrentposition 获取到的坐标是 gps 经纬度坐标,而百度地图的坐标是经过特殊转换的,所以,在获取定位坐标和初始化地图之间需要进行一步坐标转换工作,该转换方法百度api里面已经提供了,转换一个点或者批量装换的方法均有提供:单个点转换需引用 http://developer.baidu.com/map/jsdemo/demo/convertor.js,批量转换需引用 http://developer.baidu.com/map/jsdemo/demo/changemore.js,这里只需要前者即可:

复制代码
代码如下:

bmap.convertor.translate(gpspoint, 0, callback);
//gpspoint:转换前坐标,第二个参数为转换方法,0表示gps坐标转换成百度坐标,callback回调函数,参数为新坐标点

例子的详细代码如下:(引用中的ak是申请的key)

复制代码
代码如下:

<!doctype html>
<html lang="zh-cn">
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title></title>
<style type="text/css">
*{
height: 100%; //设置高度,不然会显示不出来
}
</style>
<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
<script type="text/javascript" src="http://api.map.baidu.com/api?v=2.0&ak=··············"></script>
<script type="text/javascript" src="http://developer.baidu.com/map/jsdemo/demo/convertor.js"></script>
<script>
$(function(){
navigator.geolocation.getcurrentposition(translatepoint); //定位
});
function translatepoint(position){
var currentlat = position.coords.latitude;
var currentlon = position.coords.longitude;
var gpspoint = new bmap.point(currentlon, currentlat);
bmap.convertor.translate(gpspoint, 0, initmap); //转换坐标
}
function initmap(point){
//初始化地图
map = new bmap.map("map");
map.addcontrol(new bmap.navigationcontrol());
map.addcontrol(new bmap.scalecontrol());
map.addcontrol(new bmap.overviewmapcontrol());
map.centerandzoom(point, 15);
map.addoverlay(new bmap.marker(point))
}
</script>
</head>
<body>
<div id="map"></div>
</body>
</html>

本人开发过程中觉得电脑的定位速度有点慢,经常无法获取坐标导致地图无法显示,建议用手机测试,定位较快。

当然了,如果仅是开发移动端的网页,就不需要使用jquery,框架太大,可以换用其他轻量级的移动端的 js 框架。