public GeoShapeFilterDescriptor Coordinates(IEnumerable<IEnumerable<double>> coordinates) { if (this._Shape == null) this._Shape = new GeoShapeVector(); this._Shape.Coordinates = coordinates; return this; }
public GeoShapeFilterDescriptor Type(string type) { if (this._Shape == null) this._Shape = new GeoShapeVector(); this._Shape.Type = type; return this; }
public GeoShapeFilterDescriptor Coordinates(IEnumerable <IEnumerable <double> > coordinates) { if (this._Shape == null) { this._Shape = new GeoShapeVector(); } this._Shape.Coordinates = coordinates; return(this); }
public GeoShapeFilterDescriptor Type(string type) { if (this._Shape == null) { this._Shape = new GeoShapeVector(); } this._Shape.Type = type; return(this); }
public GeoShapeQueryDescriptor <T> Type(string type) { if (this._Shape == null) { this._Shape = new GeoShapeVector(); } this._Shape.Type = type; return(this); }