File tree 1 file changed +3
-0
lines changed
src/Nest/Mapping/Types/Geo/GeoShape
1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ public GeoShapeAttribute() : base(FieldType.GeoShape) { }
15
15
double ? IGeoShapeProperty . DistanceErrorPercentage { get ; set ; }
16
16
bool ? IGeoShapeProperty . PointsOnly { get ; set ; }
17
17
bool ? IGeoShapeProperty . IgnoreMalformed { get ; set ; }
18
+ bool ? IGeoShapeProperty . IgnoreZValue { get ; set ; }
18
19
19
20
/// <inheritdoc cref="IGeoShapeProperty.Tree"/>
20
21
public GeoTree Tree { get => Self . Tree . GetValueOrDefault ( GeoTree . Geohash ) ; set => Self . Tree = value ; }
@@ -36,5 +37,7 @@ public double DistanceErrorPercentage
36
37
public bool PointsOnly { get => Self . PointsOnly . GetValueOrDefault ( false ) ; set => Self . PointsOnly = value ; }
37
38
/// <inheritdoc cref="IGeoShapeProperty.IgnoreMalformed"/>
38
39
public bool IgnoreMalformed { get => Self . IgnoreMalformed . GetValueOrDefault ( false ) ; set => Self . IgnoreMalformed = value ; }
40
+ /// <inheritdoc cref="IGeoShapeProperty.IgnoreZValue"/>
41
+ public bool IgnoreZValue { get => Self . IgnoreZValue . GetValueOrDefault ( false ) ; set => Self . IgnoreZValue = value ; }
39
42
}
40
43
}
You can’t perform that action at this time.
0 commit comments