You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to use the GeoPoint capabilites of ES.
If I give a column on my document the type GeoLocation from Nest. It is not mapped to the geopoint automatically because of the way the ElasticMappingFactory works. It mapped to a myPoint.latitute & myPoint.longitude columns.
Temp Solution
I had to import the ElasticMappingFactory in my project & tweak it by adding the following code the existing cases:
Even if adding that case in kinetix.search would be great. I'd want a way to be able to custom the way fields are mapped within my project. ex: I'd want to use complex columns for some advanced cases.
Like what we did for the Domain add a ElasticCustomMappingFactory that would act as an extension for some custom cases.
The text was updated successfully, but these errors were encountered:
Issue
I want to use the GeoPoint capabilites of ES.
If I give a column on my document the type GeoLocation from Nest. It is not mapped to the geopoint automatically because of the way the ElasticMappingFactory works. It mapped to a myPoint.latitute & myPoint.longitude columns.
Temp Solution
I had to import the ElasticMappingFactory in my project & tweak it by adding the following code the existing cases:
Final solution
Even if adding that case in kinetix.search would be great. I'd want a way to be able to custom the way fields are mapped within my project. ex: I'd want to use complex columns for some advanced cases.
Like what we did for the Domain add a
ElasticCustomMappingFactory
that would act as an extension for some custom cases.The text was updated successfully, but these errors were encountered: