I've a form with three fields hospital name,city & Your Location when the user hits submit button, he navigates to a new page displaying map along with directions. Route directions are not displaying. I'm unable to figure out mistake.Any help will
be appreciated.
CSS:
html,
body,
#container {
margin: 0;
padding: 0;
height: 700px;
width: 1350px;
}
#sidebar {
float: right;
width: 250px;
height: 100%;
background: white;
border: 0px solid #DDD;
overflow: auto;
overflow-x: hidden;
z-index: 30;
box-shadow: -1px 1px 3px -1px #000;
}
#map-canvas {
float: left;
width: 1100px;
height: 700px;
}
.row {
padding: 10px;
}
.separator {
width: 96%;
height: 1px;
margin: 0 auto;
border-bottom: 1px solid black;
}
label {
font: 12px/14px Arial, Helvetica, sans-serif;
font-weight: bold;
}
JS:
< s ...
Go to the complete details ...