gpstool/src/urls.js

18 lines
436 B
JavaScript
Raw Normal View History

2023-10-08 20:43:45 +02:00
import { latLngToDMS } from './conversion.js';
export function getAppleUrl({ lat, lng }) {
return `https://maps.apple.com/?address=${lat},${lng}`;
}
export function getGoogleUrl(latlng) {
return `https://www.google.com/maps/place/${encodeURIComponent(
latLngToDMS(latlng)
)}`;
}
export function getDuckDuckGoUrl(latlng) {
return `https://duckduckgo.com/?q=${encodeURIComponent(
latLngToDMS(latlng)
)}&iaxm=maps`;
}