@@ -251,6 +251,11 @@ func (p *Point) Cells() ([]uint64, []uint64) {
251251 return nil , nil
252252}
253253
254+ func (p * Point ) QueryCells () ([]uint64 , []uint64 ) {
255+ // placeholder implementation
256+ return nil , nil
257+ }
258+
254259func (p * Point ) BoundingBox () index.GeoJSON {
255260 // placeholder implementation
256261 return nil
@@ -308,6 +313,11 @@ func (br *boundedRectangle) Cells() ([]uint64, []uint64) {
308313 return nil , nil
309314}
310315
316+ func (br * boundedRectangle ) QueryCells () ([]uint64 , []uint64 ) {
317+ // placeholder implementation
318+ return nil , nil
319+ }
320+
311321func (br * boundedRectangle ) BoundingBox () index.GeoJSON {
312322 // placeholder implementation
313323 return nil
@@ -366,6 +376,11 @@ func (bp *boundedPolygon) Cells() ([]uint64, []uint64) {
366376 return nil , nil
367377}
368378
379+ func (bp * boundedPolygon ) QueryCells () ([]uint64 , []uint64 ) {
380+ // placeholder implementation
381+ return nil , nil
382+ }
383+
369384func (bp * boundedPolygon ) BoundingBox () index.GeoJSON {
370385 // placeholder implementation
371386 return nil
@@ -424,6 +439,11 @@ func (pd *pointDistance) Cells() ([]uint64, []uint64) {
424439 return nil , nil
425440}
426441
442+ func (pd * pointDistance ) QueryCells () ([]uint64 , []uint64 ) {
443+ // placeholder implementation
444+ return nil , nil
445+ }
446+
427447func (pd * pointDistance ) BoundingBox () index.GeoJSON {
428448 // placeholder implementation
429449 return nil
0 commit comments