I want to fetch top 5 markers that are closest to the users location (in order) and put that into a useState object. How can I achieve that?
My map screen loadflow:
- Load map
- Get user location (stored in location useState)
- HTTP Get request for markers location (each marker got lat and ltd)
- Fetch markers around user (if agreed to share location)
- Display screen
JavaScript
x
47
47
1
const fetchClosestRendelok = async () => {
2
3
//Get markers in an area here and add to a json
4
}
5
6
const fetchRendeloData = async () => {
7
const data = await fetchRendelok()
8
setRendelok(data)
9
}
10
11
useEffect(() => {
12
fetchRendeloData()
13
fetchClosestRendelok()
14
}, []);
15
16
17
18
return (
19
<View style={styles.container}>
20
<MapView style={styles.map}
21
provider={PROVIDER_GOOGLE}
22
region={mapRegion}
23
showsUserLocation={true}
24
onPress={() => setSelectedMarkerIndex("")}
25
>
26
{
27
rendelok.map((rendelok) => {
28
return (
29
<Marker
30
key={rendelok.id}
31
coordinate={{ latitude:parseFloat(rendelok.lat), longitude:parseFloat(rendelok.ltd) }}
32
onPress={() => markerClick(rendelok)}
33
tracksViewChanges={false}
34
>
35
<View>
36
<MaterialCommunityIcons name="hospital-marker" size={selectedMarkerIndex === rendelok.id ? 80 : 30} color={selectedMarkerIndex === rendelok.id ? 'red' : color_theme_light.iconColor}/>
37
</View>
38
</Marker >
39
)
40
})
41
}
42
</MapView>
43
44
</View>
45
);
46
}
47
Advertisement
Answer
In the end this was my solution, I used libary to order my markers by distance https://github.com/manuelbieh/geolib, then I just compared the coords with my original array.
JavaScript
1
14
14
1
try {
2
let coordsArray = []
3
rendelok.map((rendelok) => coordsArray.push({latitude:rendelok.lat, longitude:rendelok.ltd}))
4
let closestRendelok = orderByDistance(userPosition.coords, coordsArray).slice(0,5);
5
var result = rendelok.filter(function (o1) {
6
return closestRendelok.some(function (o2) {
7
return o1.lat === o2.latitude;
8
});
9
});
10
setClosestRendelok(result)
11
} catch (error) {
12
console.log(error)
13
}
14