在首页的时候, 我们可能要去对用户进行定位,然后去展示不同的内容给用户浏览
腾讯地图定位完整代码
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title></title>
<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no">
</head>
<body>
<script type="text/javascript" src="https://3gimg.qq.com/lightmap/components/geolocation/geolocation.min.js"></script>
<script src="https://cdn.nikm.cn/js/jquery.js"></script>
<script type="text/JavaScript">
var geolocation = new qq.maps.Geolocation("YNFBZ-N5BRV-ZCJPS-USFGL-BSMHZ-YZFNZ", "开发调试");
function showPosition(position) {
console.log(position);
console.log('您当前的位置是'+position.province+position.city+position.district+position.addr);
console.log('您当前的经纬度是'+position.lat+','+position.lng);
};
geolocation.getLocation(showPosition);
</script>
</body>
</html>
版权属于:本文是原创文章,版权归 吾梦小站 所有。
本文链接:https://nikm.cn/archives/15.html
本站所有原创文章采用 知识共享署名-非商业性使用 4.0 国际许可协议 进行许可。
您可以自由地转载和修改,但请务必注明文章来源并且不可用于商业目的。