diff --git a/Scripts/open-google-maps.ps1 b/Scripts/open-google-maps.ps1
index 60224f1f..0c49fbbd 100755
--- a/Scripts/open-google-maps.ps1
+++ b/Scripts/open-google-maps.ps1
@@ -11,5 +11,5 @@
 	https://github.com/fleschutz/PowerShell
 #>
 
-& "$PSScriptRoot/open-browser.ps1" "https://google.de/maps"
+& "$PSScriptRoot/open-browser.ps1" "https://www.google.com/maps"
 exit 0 # success
diff --git a/Scripts/show-new-york-city.ps1 b/Scripts/show-new-york-city.ps1
new file mode 100755
index 00000000..22b346e3
--- /dev/null
+++ b/Scripts/show-new-york-city.ps1
@@ -0,0 +1,15 @@
+<#
+.SYNOPSIS
+	Show NYC in Google Maps 
+.DESCRIPTION
+	This script launches the Web browser with Google Maps at New York City.
+.EXAMPLE
+	PS> ./show-new-york-city
+.NOTES
+	Author: Markus Fleschutz · License: CC0
+.LINK
+	https://github.com/fleschutz/PowerShell
+#>
+
+& "$PSScriptRoot/open-browser.ps1" "https://www.google.com/maps/place/New+York+City"
+exit 0 # success