This commit is contained in:
Tomáš Dvořák
2025-10-17 11:15:09 +02:00
parent 35d0954afd
commit 96ff7895a6
61 changed files with 3824 additions and 1061 deletions
+1 -1
View File
@@ -72,7 +72,7 @@ export function parseGoogleMapsUrl(url: string): MapCoordinates | null {
const urlObj = new URL(url);
// Check if it's a Google Maps domain
if (!urlObj.hostname.includes('google.com')) {
if (!urlObj.hostname.includes('google.com') && !urlObj.hostname.includes('google.cz')) {
return null;
}