Link to home
Start Free TrialLog in
Avatar of Lanmarkian
Lanmarkian

asked on

Enter Address and have Google Maps Directions appear on submit

Here are the steps that I need.

- Go to website, only see form field that says "Enter your address"
- On submit, below the form field, the user now sees a map and the directions listed out. (the destination address has to already be pre-populated)

How can I accomplish this? Are there any samples out there? I can't seem to find anything online.

Thank you.
Avatar of Big Monty
Big Monty
Flag of United States of America image

here's a tutorial that allows you to enter in an address and it'll display directions to the address on your site:

http://charliesaidthat.com/digital/web-design/all-small-businesses-need-this-how-to-add-google-map-directions-for-customers-to-your-website/
Avatar of Lanmarkian
Lanmarkian

ASKER

No, that takes you to google maps site. I want everything embedded on my website. When the user enters their address, the map and directions appear directly below the form field.

Please re-read my original post.
my apologies, i did misread the question...this method should still work thought, just embed the url into an iFrame on your site and it should work.

if that doesnt do the trick, try looking at their API:

https://developers.google.com/maps/documentation/javascript/basics
OK - How can I hide/show this div when the user hits submit?
The div would contain the iframe.
Everything is contained in the iframe, you cannot be hiding/showing it.
That's the point of the question. Then the iframe method will not work. Any other thoughts?
Are we talking about the link I posted, there is no iframe.  Did you even try it?
Cathill - I did look at that, but I don't want the map viewable until after the user enters directions.
I also need full control over styling for the form etc. and I have used this widget in the past - There isn't a way to get rid of the drop down etc.
Then I suggest you start reading their API documentation
https://developers.google.com/maps/documentation/directions/
Still having trouble even with API - maybe I just don't know enough. Are there any samples of this being done?
That's not a good example. It uses Google Maps v2 instead of v3 and makes getting directions far more complicated. Google API v3 provides a Directions Service that makes it much easier.

Complete working example based on these instructions:
https://developers.google.com/maps/documentation/javascript/examples/directions-simple
<!DOCTYPE html>
<html>
  <head>
    <meta name="viewport" content="initial-scale=1.0, user-scalable=no">
    <meta charset="utf-8">
    <title>Directions service</title>
    <style>
      html, body, #map-canvas {
        height: 100%;
		width: 100%;
        margin: 0px;
        padding: 0px
      }
	  #map-canvas {
		position: absolute;
		left: -9999px
	  }
	  #start, #end {
		  width: 300px
	  }
	  
    </style>
    <script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false"></script>
    <script>
var directionsDisplay;
var directionsService = new google.maps.DirectionsService();
var map;

function initialize() {
  directionsDisplay = new google.maps.DirectionsRenderer();
  var chicago = new google.maps.LatLng(41.850033, -87.6500523);
  var mapOptions = {
    zoom:7,
    center: chicago
  };
  map = new google.maps.Map(document.getElementById('map-canvas'), mapOptions);
  directionsDisplay.setMap(map);
}

function calcRoute() {
  var start = document.getElementById('start').value;
  var end = document.getElementById('end').value;
  var request = {
      origin:start,
      destination:end,
      travelMode: google.maps.TravelMode.DRIVING
  };
  directionsService.route(request, function(response, status) {
    if (status == google.maps.DirectionsStatus.OK) {
      directionsDisplay.setDirections(response);
    }
  });
  document.getElementById("map-canvas").style.left = 0;
}

google.maps.event.addDomListener(window, 'load', initialize);

    </script>
</head>

<body>
<label for="pointA">Point A</label>
<input type="text" id="start" /><br />
<label for="pointB">Point B</label>
<input type="text" id="end" />
<input type="button" value="Submit" onclick="calcRoute()" />
<div id="map-canvas"></div>
</body>
</html>

Open in new window

Here's another good example that adds auto-complete to the entering of addresses.
https://developers.google.com/maps/documentation/javascript/examples/places-autocomplete?csw=1
Where in that linked page does it say v2
Where in your example are the directions?
line 12, "v=2"
http://maps.google.com/?file=api&v=2&key=ABQIAAAAjU0EJWnWPMv7oQ-jjS7dYxSPW5CJgpdgO_s4yyMovOaVh_KvvhSfpvagV18eOyDWu7VytS6Bi1CWxw

You mean printed out directions? I missed that part of the question.
Simple fix - change it to 3, but it seems to be using v3 regardless
ASKER CERTIFIED SOLUTION
Avatar of Tom Beck
Tom Beck
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial