CellFromPoint constructs a cell for the given Point.
(p Point)
| 69 | |
| 70 | // CellFromPoint constructs a cell for the given Point. |
| 71 | func CellFromPoint(p Point) Cell { |
| 72 | return CellFromCellID(cellIDFromPoint(p)) |
| 73 | } |
| 74 | |
| 75 | // CellFromLatLng constructs a cell for the given LatLng. |
| 76 | func CellFromLatLng(ll LatLng) Cell { |
searching dependent graphs…