it-tools/src/tools/geo-distance-calculator/index.ts
2025-01-12 23:16:45 +01:00

13 lines
470 B
TypeScript

import { WorldLatitude } from '@vicons/tabler';
import { defineTool } from '../tool';
export const tool = defineTool({
name: 'Geo distance calculator',
path: '/geo-distance-calculator',
description: 'Compute distance between two geo location (and display current user location information)',
keywords: ['geo', 'distance', 'calculator'],
component: () => import('./geo-distance-calculator.vue'),
icon: WorldLatitude,
createdAt: new Date('2025-01-01'),
});