Added near by search support #256
Open
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
I have added near by search support. It works based on geohash concept. Redis also uses same concept for near search.
Query syntax:
There is no index created in json-server at run time for near search query.
On latitude and longitude property of data geohash is calculated and stored along data. The geohash is used for nearby search. I have used node-geohash and geo-nearby modules to achieve the same.
Sample output
To generate the sample random location data use following script
One doubt from my side, I have added default latitude, longitude and geohash property name in
src/server/router/index.js
but there should be a better place to add default and overwrite these properties while creating an instance ofjson-server
when used as module. At command line i have added option to override the default property.