-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Fix #3323 Add support for null_value, ignore_z_value on GeoPoint prop… #3364
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
One small change for the default value for GeoPointAttribute
GeoLocation IGeoPointProperty.NullValue { get; set; } | ||
|
||
public bool IgnoreMalformed { get => Self.IgnoreMalformed.GetValueOrDefault(); set => Self.IgnoreMalformed = value; } | ||
public bool IgnoreZValue { get => Self.IgnoreZValue.GetValueOrDefault(); set => Self.IgnoreZValue= value; } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this should be Self.IgnoreZValue.GetValueOrDefault(true)
, in line with the default value in Elasticsearch
#3364) This commit adds support for null_value, ignore_z_value on GeoPoint property
#3364) This commit adds support for null_value, ignore_z_value on GeoPoint property
…erty