123456789101112131415 |
- import { AllGeoJSON, Units } from "@turf/helpers";
- /**
- * http://turfjs.org/docs/#transform-translate
- */
- export default function transformTranslate<T extends AllGeoJSON>(
- geojson: T,
- distance: number,
- direction: number,
- options?: {
- units?: Units;
- zTranslation?: number;
- mutate?: boolean;
- }
- ): T;
|