コード例 #1
0
 public GeoDistanceQueryDescriptor <T> Location(GeoLocation location) => Assign(a => a.Location = location);
コード例 #2
0
 public SuggestContextQueryDescriptor <T> Context(GeoLocation context) => Assign(a => a.Context = context);
コード例 #3
0
 public GeoHashCellQueryDescriptor <T> Location(GeoLocation location) => Assign(a => a.Location   = location);
コード例 #4
0
 public BoundingBoxDescriptor BottomRight(GeoLocation bottomRight) => Assign(bottomRight, (a, v) => a.BottomRight = v);
コード例 #5
0
 public GeoBoundingBoxQueryDescriptor <T> BoundingBox(GeoLocation topLeft, GeoLocation bottomRight) =>
 BoundingBox(f => f.TopLeft(topLeft).BottomRight(bottomRight));
コード例 #6
0
 public GeoDistanceQueryDescriptor <T> Location(GeoLocation location) => Assign(location, (a, v) => a.Location = v);
コード例 #7
0
 public BoundingBoxDescriptor TopLeft(GeoLocation topLeft) => Assign(topLeft, (a, v) => a.TopLeft = v);
コード例 #8
0
 public GeoDistanceAggregationDescriptor <T> Origin(GeoLocation geoLocation) => Assign(a => a.Origin = geoLocation);
コード例 #9
0
 /// <inheritdoc cref="IGeoPointProperty.NullValue" />
 public GeoPointPropertyDescriptor <T> NullValue(GeoLocation defaultValue) => Assign(defaultValue, (a, v) => a.NullValue = v);
コード例 #10
0
 public SuggestContextQueryDescriptor <T> Context(GeoLocation context) => Assign(context, (a, v) => a.Context = v);
コード例 #11
0
 public GeoLocationSuggestContextDescriptor <T> Default(GeoLocation geoPoint) => Assign(a => a.Default = geoPoint);
コード例 #12
0
 public GeoDistanceAggregationDescriptor <T> Origin(GeoLocation geoLocation) => Assign(geoLocation, (a, v) => a.Origin = v);