Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save moyashi/f17472cb2bbee1e44eccf0a804303897 to your computer and use it in GitHub Desktop.
Save moyashi/f17472cb2bbee1e44eccf0a804303897 to your computer and use it in GitHub Desktop.
tell application "Photos"
set sel to selection
set cnt to contents of sel
class of cnt
set pr to properties of item 1 of cnt
set loc to location of pr
set lat to first item of loc
set lon to second item of loc
set u to "https://www.google.com/maps/place/" & lat & "," & lon & "/"
set the clipboard to u
display notification u with title "クリップボードにコピーしました"
end tell
tell application "System Events"
open location u
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment