Skip to content

Instantly share code, notes, and snippets.

@voku
Created June 4, 2014 09:41
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 voku/91a823a46a08e415d9a5 to your computer and use it in GitHub Desktop.
Save voku/91a823a46a08e415d9a5 to your computer and use it in GitHub Desktop.
get directions form (google maps) # saddr = blank input field for entering START address # daddr = hard-coded END address - DEMO: http://jsfiddle.net/voku/ZyU2v/
<form action="http://maps.google.com/maps" method="get" target="_blank">
<label for="saddr">Enter your location</label>
<input type="text" name="saddr" />
<input type="hidden" name="daddr" value="Düsseldorfer Straße 90, 40545 Düsseldorf" />
<input type="submit" value="get my way to work ;)" />
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment