GeoSpatial Radius Search Using Objectify
I am developing an application using GeoModel . I need to perform search in a particular radius based on the given latitude and longitude. I am able to generate the GeoCells in the datastore using Objectify, but not able to get back the results in a particular radius. I am sharing my code below. Entity Class @Entity public class NewsFeed implements Serializable { private static final long serialVersionUID = 1L; @Id @Index private Long feedID; @Index private String topic; @Index private String title; private String description; @Index private Date createDate; private String imageOrVideo;