Skip to main content
Known Participant
August 19, 2010
Question

graphical map-based interface auto-linked to keywords?

  • August 19, 2010
  • 1 reply
  • 624 views

Hi, gang.

Any  chance there exists a script to auto-locate an image whereby a geographic place  name entered as a keyword/tag/label can be shown on Google Maps?  I've seen  websites that show such locations, but I can't tell whether they've been  manually entered or auto-entered.

Thanks!

This topic has been closed for replies.

1 reply

Muppet_Mark-QAl63s
Inspiring
September 4, 2010

Im not sure that I understand your question? This would fire open safari (my default browser) to google maps using 3 bits of string from a files metadata. This would be for a mac only…

#target bridge var thisThumb = app.document.selections[0]; googleMaps(thisThumb); function googleMaps(t) {      var md = t.metadata;      md.namespace = "http://ns.adobe.com/photoshop/1.0/";      // Make a url      var Url = "open 'http://maps.google.com/maps?q=";      Url += md.City + ", ";      Url += md.State + ", ";      Url += md.Country + "'";      //$.writeln(Url);      app.system(Url); }

The example is just for the first selected thumbnail…