I'm developing an application that utilizes Leaflet to store GPS coordinates of specific locations in a table format [lat,lng]. This functionality is only accessible from the back end. On the front end, I need to retrieve the current position and generate a radius of "n" kilometers around it. I then want to filter all records within that specified radius.
Here's the challenge: I do not intend to show a map on the front end; my objective is solely to display a list of records within the defined radius. The Leaflet map will not be shown due to network traffic constraints.
Any suggestions on how this can be achieved?