Hello,

Is it possible to create separate fields in the direction panel?

Example:

Address
City
State
Zip Code

Each would have it's own text field. Similar to the classic version of
Mapquest (http://www.mapquest.com/)

Here is my current code:

<div id="side-container">
  <ul>
    <li class="dir-label">From:</li>
    <li>
      <input id="from-input" type=text value="enter starting adress"/>
    </li>
    <br clear="both"/>
    <li class="dir-label">To:</li>
    <li><input id="to-input" type=text value="enter end address"/></
li>
  </ul>
  <div>
    <p>
      <select onChange="Demo.getDirections();" id="travel-mode-input">
        <option value="driving" selected="selected">By car</option>
        <option value="bicycling">Bicycling</option>
        <option value="walking">Walking</option>
      </select>
      <select onChange="Demo.getDirections();" id="unit-input">
        <option value="imperial" selected="selected">Imperial</option>
        <option value="metric">Metric</option>
      </select>
      </p>

    <p><br/>
      <input onclick="Demo.getDirections();" type=button value="GET
DIRECTIONS!"/>
    </p>
  </div>

Thank You

-- 
You received this message because you are subscribed to the Google Groups 
"Google Maps JavaScript API v3" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.

Reply via email to