-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
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
Geo-spatial backend #11
Comments
Hi @barseghyanartur, I would like tou help out on this feature. What should I do? |
First part
Second part
|
Ok, have you make any progress to start with? |
Not in this project, but this feature is implemented in django-elasticsearch-dsl-drf. |
Hi @barseghyanartur I was able to resolve a GeoPoint as a InnerDoc, perhaps it could help as starting point class Place(InnerDoc):
lat = Float()
lon = Float()
class User(Document):
location=Object(Place) that's how I saw django_elasticsearch_dsl.fields.GeoPointField saves a Point. |
No description provided.
The text was updated successfully, but these errors were encountered: