Created
June 4, 2014 09:41
-
-
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/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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