I have a table that a GeoPoint is referencing so that I can run searches through geoPoints and access the _metadata that associates the GeoPoint with the table data. This places a child relationship column on the table.
Now I also want to be able to search the table fields including the distance using that child relationship… I’m not sure how to do this without causing redundancy and adding a relation to the GeoPoint in a coordinates column.
Is there any way to do an advanced search “distance(lat,long,GeoPoint.action.latitude, GeoPoint.action.longitude) < mi(100)” (action is the name of the table) where GeoPoint.action is a child reference of the GeoPoint?