We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We have the following model:
public partial class Company : IRealmObject { public string Name { get; set; } public IList<CustomGeoPoint> Offices { get; } } public partial class CustomGeoPoint : IEmbeddedObject { public IList<double> coordinates { get; } public string type { get; set; } = "Point"; }
And the following data:
[{ "Name":"1,2", "Offices":[{ "type":"Point", "coordinates":[ 1.0, 1.0 ] }, { "type":"Point", "coordinates":[ 2.0, 2.0 ] }] }, { "Name":"2,3", "Offices":[{ "type":"Point", "coordinates":[ 2.0, 2.0 ] }, { "type":"Point", "coordinates":[ 3.0, 3.0 ] }] }]
Then, this query doesn't return any results, even though I would expect it to match the first company:
Offices GEOWITHIN GeoSphere([1, 1], 0.00872665)
The text was updated successfully, but these errors were encountered:
ironage
Successfully merging a pull request may close this issue.
We have the following model:
And the following data:
Then, this query doesn't return any results, even though I would expect it to match the first company:
The text was updated successfully, but these errors were encountered: