V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  EspoirBao  ›  全部回复第 2 页 / 共 3 页
回复总数  41
1  2  3  
哈哈哈,一开始不发视频和证据,后面再补,前两页一边倒的在说支持维权,后面两页清一色的没刮到证据不足🤣
@AoEiuV020JP 你装个反诈中心试一下,说不定可以接到诈骗电话
大亏,为这事赔 100 ,物业难道一丁点责任没有一丁点钱没赔,下次有个小偷跑去你们小区偷东西都只能认栽...
分子+1
分母+1
分母
拉低中奖率
254 天前
回复了 Goalonez 创建的主题 分享发现 sony 的多设备连接感觉挺好用的
@sarices 索尼耳机有个 app ,里面可以进行固件更新调音什么的,多设备连接也有设置,一般来说哪个蓝牙有声音就会去连哪个,后来的也会顶掉前面的,还可以强行锁设备
索大法有没有在考虑范围内呢?听说还可以安些奇怪的 APP
274 天前
回复了 sommer 创建的主题 推广 「夜晚限定抽奖」评论送 B 站年度大会员 X 1
+1
282 天前
回复了 BaymaxK 创建的主题 程序员 我入职了
跟楼主一样,甚至年龄学历几乎都是一样的,不过人在武汉,工作低一倍,但是关于 3 指坐标系跟 three.js 那块我还是想指正一下,面试的时候最好告诉面试官叫笛卡尔坐标系,并且确实 3d 部分会很复杂,光 api 都得坑一年,我学这个的时候甚至连带着把本科也自考了😂
做的不错,我选择 localsend
小米是这样的,苹果就完全没有这样的问题
function isCoordinateInsideFence(latitude1, longitude1, latitude2, longitude2) {
const earthRadius = 6371000; // 地球半径,单位为米

// 将经纬度转换为弧度
const lat1Rad = toRadians(latitude1);
const lon1Rad = toRadians(longitude1);
const lat2Rad = toRadians(latitude2);
const lon2Rad = toRadians(longitude2);

// 计算两个坐标点之间的距离
const distance = getDistance(lat1Rad, lon1Rad, lat2Rad, lon2Rad, earthRadius);

// 判断距离是否小于等于 500 米
return distance <= 500;
}

function toRadians(degrees) {
return degrees * Math.PI / 180;
}

function getDistance(lat1, lon1, lat2, lon2, radius) {
const dLat = lat2 - lat1;
const dLon = lon2 - lon1;

const a = Math.sin(dLat / 2) * Math.sin(dLat / 2) +
Math.cos(lat1) * Math.cos(lat2) *
Math.sin(dLon / 2) * Math.sin(dLon / 2);

const c = 2 * Math.atan2(Math.sqrt(a), Math.sqrt(1 - a));

const distance = radius * c;
return distance;
}

// 测试
const fenceLatitude = 40.123456; // 围栏中心点的纬度
const fenceLongitude = -74.123456; // 围栏中心点的经度
const testLatitude = 40.123; // 测试点的纬度
const testLongitude = -74.123; // 测试点的经度

const isInside = isCoordinateInsideFence(
fenceLatitude,
fenceLongitude,
testLatitude,
testLongitude
);

console.log(isInside ? '坐标在围栏内' : '坐标不在围栏内');
306 天前
回复了 Linvas 创建的主题 程序员 如何自己搭一个 GIS 的地图?
没资质审核还不简单?我写的一个 demo: https://github.com/EspoirBao/cesium-ugly-demo
如果是 11 岁的孩子的话,我建议教会她如何删除浏览器记录
321 天前
回复了 Thalia 创建的主题 问与答 有什么类似 V2EX 的网站推荐?
2023-03-16 14:15:20 +08:00
回复了 MajestySolor 创建的主题 Windows 突然发现我可能一直以来都错怪 win11 了 🐶
bios 升级还可以解决掉 usb 驱动的问题,我有个 u 盘,公司用的好好的家里的 c8i 有天突然就读不出来了,更了 bios 就好了
2022-12-09 15:35:49 +08:00
回复了 wanzi2019 创建的主题 Windows AMD 处理器装了 WIN11 简直是恐怖
翻了半天,70 楼了我都不知道 up 是什么 cpu ,只知道很牛,给我急的!
2022-11-16 16:39:50 +08:00
回复了 hljhbing 创建的主题 分享发现 什么时候有的 5G+,你们有在手机上见到嘛
小米在开发者模式里面有一个载波聚合的开关
1  2  3  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   2301 人在线   最高记录 6543   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 38ms · UTC 03:20 · PVG 11:20 · LAX 20:20 · JFK 23:20
Developed with CodeLauncher
♥ Do have faith in what you're doing.