Reputation: 5742
In MongoDB for a coordinate (lat, lng), we can describe a circle of radius R around it and determine which points are inside this circle using centerSphere method.
Withoud using MongoDB, is it possible to efficiently query those points using only Google Cloud DataStore API?
Upvotes: 1
Views: 99
Reputation: 213
Consider using the AppEngine Search service. You need to index your content into 'documents' first but then you can use a geopoint query to find the appropriate data. https://cloud.google.com/appengine/docs/java/search/query_strings#Java_Queries_on_geopoint_fields
Upvotes: 2