Skip to content
Snippets Groups Projects
Commit 302ed1e1 authored by Adrian Orłów's avatar Adrian Orłów
Browse files

feat(map): improve readability of point to lat lng util

parent fecf722b
No related branches found
No related tags found
2 merge requests!223reset the pin numbers before search results are fetch (so the results will be...,!36feat(map): add render components and tests
...@@ -3,28 +3,33 @@ import { LATLNG_FALLBACK, VALID_MAP_SIZE_SCHEMA } from '@/constants/map'; ...@@ -3,28 +3,33 @@ import { LATLNG_FALLBACK, VALID_MAP_SIZE_SCHEMA } from '@/constants/map';
import { MapSize } from '@/redux/map/map.types'; import { MapSize } from '@/redux/map/map.types';
import { LatLng, Point } from '@/types/map'; import { LatLng, Point } from '@/types/map';
import { radiansToDegrees } from '../number/radiansToDegrees'; import { radiansToDegrees } from '../number/radiansToDegrees';
import { getPointOriginAndShifted } from './getPointOriginAndShifted'; import { getPointOffset } from './getPointOffset';
export const pointToLatLng = (point: Point, mapSize?: MapSize): LatLng => { const FULL_CIRCLE_DEGREES = 360;
if (!mapSize) {
return LATLNG_FALLBACK;
}
try { const getIsMapSizeValid = (mapSize?: MapSize): boolean => {
VALID_MAP_SIZE_SCHEMA.parse(mapSize); const parseResult = VALID_MAP_SIZE_SCHEMA.safeParse(mapSize);
} catch (e) {
if (parseResult.success === false) {
// TODO: need to rething way of handling parsing errors, for now let's leave it to console.log // TODO: need to rething way of handling parsing errors, for now let's leave it to console.log
// eslint-disable-next-line no-console // eslint-disable-next-line no-console
console.error('Error parsing map size', e); console.error('Error parsing map size', parseResult.error);
}
return parseResult.success;
};
export const pointToLatLng = (point: Point, mapSize?: MapSize): LatLng => {
const isMapSizeValid = getIsMapSizeValid(mapSize);
if (!isMapSizeValid || !mapSize) {
return LATLNG_FALLBACK; return LATLNG_FALLBACK;
} }
const { pointOrigin, pointShifted } = getPointOriginAndShifted(point, mapSize); const { x: xOffset, y: yOffset } = getPointOffset(point, mapSize);
const pixelsPerLonDegree = mapSize.tileSize / 360; const pixelsPerLonDegree = mapSize.tileSize / FULL_CIRCLE_DEGREES;
const pixelsPerLonRadian = mapSize.tileSize / (2 * Math.PI); const pixelsPerLonRadian = mapSize.tileSize / (2 * Math.PI);
const lng = xOffset / pixelsPerLonDegree;
const lng = (pointShifted.x - pointOrigin.x) / pixelsPerLonDegree; const latRadians = yOffset / -pixelsPerLonRadian;
const latRadians = (pointShifted.y - pointOrigin.y) / -pixelsPerLonRadian;
const lat = radiansToDegrees(2 * Math.atan(Math.exp(latRadians)) - Math.PI / 2); const lat = radiansToDegrees(2 * Math.atan(Math.exp(latRadians)) - Math.PI / 2);
return [lng, lat]; return [lng, lat];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment