import type { MercatorLngLat, MercatorTile } from '../../types.ts'; /** * Converts a geographic point to the integer Mercator tile containing it at the given zoom level. * @param point - The geographic coordinate * @param z - The zoom level * @returns The tile as [x, y, zoom] */ declare const tileFromPoint: (point: MercatorLngLat, z: number) => MercatorTile; export { tileFromPoint }; //# sourceMappingURL=point.d.ts.map