VelocityDB.geohash.query.GeoHashBoundingBoxQuery.AddSearchHash C# (CSharp) Method

AddSearchHash() private method

private AddSearchHash ( GeoHash hash ) : void
hash GeoHash
return void
    private void AddSearchHash(GeoHash hash)
    {
      if (m_boundingBox == null)
      {
        m_boundingBox = new BoundingBox(hash.BoundingBox);
      }
      else
      {
        m_boundingBox.ExpandToInclude(hash.BoundingBox);
      }
      m_searchHashes.Add(hash);
    }