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;
 }
示例#3
0
 public GeoShapeFilterDescriptor Coordinates(IEnumerable <IEnumerable <double> > coordinates)
 {
     if (this._Shape == null)
     {
         this._Shape = new GeoShapeVector();
     }
     this._Shape.Coordinates = coordinates;
     return(this);
 }
示例#4
0
 public GeoShapeFilterDescriptor Type(string type)
 {
     if (this._Shape == null)
     {
         this._Shape = new GeoShapeVector();
     }
     this._Shape.Type = type;
     return(this);
 }
示例#5
0
 public GeoShapeQueryDescriptor <T> Type(string type)
 {
     if (this._Shape == null)
     {
         this._Shape = new GeoShapeVector();
     }
     this._Shape.Type = type;
     return(this);
 }