12 2017 档案

摘要:-webkit-tap-highlight-color: rgba(0, 0, 0, 0); -webkit-tap-highlight-color: transparent; 阅读全文
posted @ 2017-12-22 16:01 九段刀客 阅读(550) 评论(0) 推荐(0)
摘要:ios平台下的input,button圆角bug修复 input,button{-webkit-appearance:none;border-radius: 0;} 阅读全文
posted @ 2017-12-22 15:47 九段刀客 阅读(238) 评论(0) 推荐(0)
摘要:关于坐标3个: GPS坐标:WGS84 百度坐标(BD09) 国测局坐标/火星坐标:GCJ02 下面的 (x,y)是GPS坐标 var x = 115.778676; var y = 33.844582; //GPS坐标转换百度坐标 var ggPoint = new BMap.Point(x, y 阅读全文
posted @ 2017-12-12 15:55 九段刀客 阅读(501) 评论(0) 推荐(0)
摘要:var x = 115.792111; var y = 33.877972; var point = new BMap.Point(x,y); var geoc = new BMap.Geocoder(); geoc.getLocation(point, function(rs){ var addC 阅读全文
posted @ 2017-12-12 15:47 九段刀客 阅读(797) 评论(0) 推荐(0)
摘要:获取到当前位置的经纬度(这个获取到的是百度地图坐标的经纬度) var geolocation = new BMap.Geolocation(); geolocation.getCurrentPosition(function(r){ if(this.getStatus() == BMAP_STATU 阅读全文
posted @ 2017-12-12 15:32 九段刀客 阅读(3931) 评论(1) 推荐(0)