我在JSON文件中有用户列表
[
{
"id": 1,
"first_name": "Maurise",
"last_name": "Shieldon",
"latitude": 34.003135,
"longitude": -117.7228641
},
{
"id": 2,
"first_name": "Bendix",
"last_name": "Halgarth",
"latitude": -2.9623869,
"longitude": 104.7399789
},
{
"id": 3,
"first_name": "Meghan",
"last_name": "Southall",
"latitude": "15.45033",
"longitude": "44.12768"
},
{
"id": 4,
"first_name": "Sidnee",
"last_name": "Silwood",
"latitude": -26.94087,
"longitude": 29.24905
},
{
"id": 5,
"first_name": "Rosita",
"last_name": "Ferrulli",
"latitude": 33.5719791,
"longitude": -84.3396421
}]
我正在使用Haversine公式来计算距离,因此我只能让某些LAT和LONG值的用户使用此方法,该方法在我的api.service.ts
类中。
getDistanceFromLatLon(lat1: number, lon1: number, lat2: number, lon2: number): number {
var deg2Rad = deg => {
return deg * Math.PI / 180;
}
var r = 3959; // Radius of the earth in miles
var dLat = deg2Rad(lat2 - lat1);
var dLon = deg2Rad(lon2 - lon1);
var a =
Math.sin(dLat / 2) * Math.sin(dLat / 2) +
Math.cos(deg2Rad(lat1)) * Math.cos(deg2Rad(lat2)) *
Math.sin(dLon / 2) * Math.sin(dLon / 2);
var c = 2 * Math.atan2(Math.sqrt(a), Math.sqrt(1 - a));
var d = r * c; // Distance in miles
return d;
}
然后,在我的app.component.ts
文件中,我可以调用JSON数组,该数组为我提供了上述用户列表中的data.json
文件中的所有用户列表。
getUsers() {
this.httpClient.get('/assets/users.json').pipe(map(data => data as Array<Users>))
.subscribe(result => { console.log(result)}
[我从JSON文件收到所有用户的列表之后。我正在尝试通过result
方法运行JSON getDistanceFromLatLon
数组,以便只有具有LONDON_LAT
和LONDON_LONG
的用户才能显示
//Latitude and longitude of London
LONDON_LAT = 51.509865;
LONDON_LONG = -0.118092;
miles;
const distance = this.apiService.getDistanceFromLatLon(result['latitude'], result['longitude'],
this.LONDON_LAT, this.LONDON_LONG);
if (distance <= this.miles) {
this.UsersByRadius = result;
}
});
}
通过.getDistanceFromLatLon
编译后,我的this.UsersByRadius = result
为空,我没有得到任何用户。我基本上是想在我的角度应用程序中复制此PHP application。任何帮助都感激不尽。
Angular SPA通常是在客户端生成的。因此,在处理大型数组集时,所有的数学计算(单个除法运算都会有大量开销,更不用说所有trig函数了)。您应该考虑在服务器端进行此操作。
您正在检索数组。因此,您需要遍历它们中的每一个来调用该函数。
getUsers() {
this.httpClient.get('/assets/users.json').pipe(
map(data => data as Array<Users>)
).subscribe(result => {
console.log(result);
result.forEach(item => {
const distance = this.apiService.getDistanceFromLatLon(item['latitude'], item['longitude'], this.LONDON_LAT, this.LONDON_LONG)
if (distance <= this.miles) {
this.UsersByRadius = result;
}
});
});
}