From mboxrd@z Thu Jan 1 00:00:00 1970 From: Sebastian Rose Subject: Yet another way to use maps --- the light way Date: Thu, 23 Sep 2010 10:17:14 +0200 Message-ID: <87tylgn0xw.fsf@gmx.de> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from [140.186.70.92] (port=41820 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Oyk9W-0001Xq-N6 for emacs-orgmode@gnu.org; Thu, 23 Sep 2010 07:39:54 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1Oyk9V-0006Zl-Ku for emacs-orgmode@gnu.org; Thu, 23 Sep 2010 07:39:50 -0400 Received: from mailout-de.gmx.net ([213.165.64.22]:49832 helo=mail.gmx.net) by eggs.gnu.org with smtp (Exim 4.69) (envelope-from ) id 1Oyk9V-0006ZV-5z for emacs-orgmode@gnu.org; Thu, 23 Sep 2010 07:39:49 -0400 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Emacs-orgmode mailing list Hi, there is a light and easy way to use google and openstreetmap.org maps if you define them as a custom link type: (setq org-link-abbrev-alist '(("gmap" . "http://maps.google.com/maps?q=3D%s") ("omap" . "http://nominatim.openstreetmap.org/search?q=3D%s&polygon=3D1"))) Now [[gmap:Falkenstr 10, Hannover, Germany][Falkenstra=C3=9Fe]] and [[omap:Falkenstr 10, Hannover, Germany]] show a map in your browser. LaTeX and HTML export works out the box with the advantage, that this export can legally be published on the internet without any additional action (API license key). Even on commercial sites, as it's just a link to google. OSM is no problem anyway. This way it's possible to show a certain place on earth, but not a track or route. There's a (known) bug in the LaTeX eporter: [[Falkenstra=C3=9Fe 10, Hannover, Germany]] will _not_ work, because the german Umlaut will be distorted somehow (unless fixed already....) Sebastian