I would like to query some geo location points with morphia framework. I use my latitude, longitude, and radius(100 km.) with "Near" method to query the other around my location and limit 10 results. Just like this :
morphia.ds.find(Location.class).field("Location").near(latitude, longitude, 100).limit(10).asList();
It doesn't error but the result shows me the location points that around me and out of scope of my radius(100km.). So, my radius doesn't concern when query the result.
What is my problem with query statement?
Thanks you in advance