Skip to content

Commit

Permalink
fix(map-utils): removed duplicate import
Browse files Browse the repository at this point in the history
  • Loading branch information
LAMM26 committed Nov 11, 2024
1 parent ec6b5e9 commit 9914cc7
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions packages/geo/src/lib/map/shared/map.utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import { Position } from 'geojson';

import { MapViewState } from './map.interface';
import { Projection } from './projection.interfaces';
import { Coordinate } from 'ol/coordinate';

/**
* This method extracts a coordinate tuple from a string.
Expand Down Expand Up @@ -367,10 +366,7 @@ function convertDMSToDD(
* @param decimal number of decimals for seconds
* @returns longitude and latitude in dms
*/
export function convertDDToDMS(
lonLatDD: Coordinate,
decimal = 3
): string[] {
export function convertDDToDMS(lonLatDD: Coordinate, decimal = 3): string[] {
const lonLatDMS = [];

lonLatDD.forEach((dd) => {
Expand Down

0 comments on commit 9914cc7

Please sign in to comment.