Skip to content

Instantly share code, notes, and snippets.

@CinderAle
CinderAle / algorithms.ts
Created October 10, 2025 14:23
Marker algorithms
type Coordinates = [number, number];
const EARTH_RADIUS = 6371;
const METERS_IN_KILOMETER = 1000;
// Перевод координат в радианы
const pointToRadians = (degrees: number) => degrees * (Math.PI / 180);
// Получение расстояния между точками на карте
export const getDistanceBetweenPoints = (