Tuesday, February 24, 2009

Google Map API sample parameter as from address & to Address

<!

DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<

html xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml">

<head>

<meta http-equiv="content-type" content="text/html; charset=utf-8"/>

<title>Google Maps JavaScript API Example: Directions + Static Map</title>

<script src=" http://maps.google.com/?file=api&amp;v=2.x&amp;key=Your API Key"

type="text/javascript"></script>

<style type="text/css">

body {

font-family: Verdana, Arial, sans serif;

font-size: 11px;

margin: 2px;

}

table.directions th {

background-color:#EEEEEE;

}

img {

color: #000000;

}

</style>

<script type="text/javascript">

var map;

var gdir;

var geocoder = null;

var addressMarker;

//alert(QueryVariable);

function initialize() {

if (GBrowserIsCompatible()) {

map =

new GMap2(document.getElementById("map_canvas"));

gdir =

new GDirections(map, document.getElementById("directions"));

GEvent.addListener(gdir,

"addoverlay", onGDirectionsLoad);

GEvent.addListener(gdir,

"error", handleErrors);

var queryString = new String();

queryString = window.location.search;

queryString = queryString.substring(1);

document.getElementById(

"div1").innerHTML = queryString + "<br />";

var arr1 = new Array();

arr1 = queryString.split(

"&");

var arr2 = new Array();

var tempval;

var tempval1;

for(var i = 0; i<arr1.length; i++)

{

arr2[i] = arr1[i].toString().substring(arr1[i].toString().indexOf(

"=") + 1);

arr1[i] = arr1[i].toString().substring(0,arr1[i].toString().indexOf(

"="));

if (i==0)

{

tempval= arr2[0].toString();

}

if (i==1)

{

tempval1= arr2[1].toString();

}

}

document.getElementById(

"div1").innerHTML += arr1.concat() + "<br />";

document.getElementById(

"div1").innerHTML += arr2.concat();

document.getElementById(

"fromAddress").innerText=tempval ;

document.getElementById(

"toAddress").innerText=tempval1 ;

var fdirc=tempval;

var tdirc=tempval1;

setDirections(fdirc, tdirc,

"en_US");

}

}

function setDirections(fromAddress, toAddress, locale)

{

gdir.load(

"from: " + fromAddress + " to: " + toAddress,

{

"locale": locale });

}

function handleErrors(){

if (gdir.getStatus().code == G_GEO_UNKNOWN_ADDRESS)

alert(

"No corresponding geographic location could be found for one of the specified addresses. This may be due to the fact that the address is relatively new, or it may be incorrect.\nError code: " + gdir.getStatus().code);

else if (gdir.getStatus().code == G_GEO_SERVER_ERROR)

alert(

"A geocoding or directions request could not be successfully processed, yet the exact reason for the failure is not known.\n Error code: " + gdir.getStatus().code);

else if (gdir.getStatus().code == G_GEO_MISSING_QUERY)

alert(

"The HTTP q parameter was either missing or had no value. For geocoder requests, this means that an empty address was specified as input. For directions requests, this means that no query was specified in the input.\n Error code: " + gdir.getStatus().code);

else if (gdir.getStatus().code == G_GEO_BAD_KEY)

alert(

"The given key is either invalid or does not match the domain for which it was given. \n Error code: " + gdir.getStatus().code);

else if (gdir.getStatus().code == G_GEO_BAD_REQUEST)

alert(

"A directions request could not be successfully parsed.\n Error code: " + gdir.getStatus().code);

else alert("An unknown error occurred.");

}

function onGDirectionsLoad(){

var poly = gdir.getPolyline();

if (poly.getVertexCount() > 100) {

// alert("This route has too many vertices");

return;

}

var baseUrl = "http://maps.google.com/staticmap?";

var params = [];

var markersArray = [];

markersArray.push(poly.getVertex(0).toUrlValue(5) +

",greena");

markersArray.push(poly.getVertex(poly.getVertexCount()-1).toUrlValue(5) +

",greenb");

params.push(

"markers=" + markersArray.join("|"));

var polyParams = "rgba:0x0000FF80,weight:5|";

var polyLatLngs = [];

for (var j = 0; j < poly.getVertexCount(); j++) {

polyLatLngs.push(poly.getVertex(j).lat().toFixed(5) +

"," + poly.getVertex(j).lng().toFixed(5));

}

params.push(

"path=" + polyParams + polyLatLngs.join("|"));

params.push(

"size=300x300");

params.push(

"key=ABQIAAAAqIgtWyiOtP6QBTeyzVln2hQyDHt7JDG3iBXpfs6LRlLb1WavxBQ4WvuAL-v0NSB7koPUpk8oR28XeA");

baseUrl += params.join(

"&");

var extraParams = [];

extraParams.push(

"center=" + map.getCenter().lat().toFixed(6) + "," + map.getCenter().lng().toFixed(6));

extraParams.push(

"zoom=" + map.getZoom());

addImg(baseUrl +

"&" + extraParams.join("&"), "staticMapOverviewIMG");

var extraParams = [];

extraParams.push(

"center=" + poly.getVertex(0).toUrlValue(5));

extraParams.push(

"zoom=" + 15);

addImg(baseUrl +

"&" + extraParams.join("&"), "staticMapStartIMG");

var extraParams = [];

extraParams.push(

"center=" + poly.getVertex(poly.getVertexCount()-1).toUrlValue(5));

extraParams.push(

"zoom=" + 15);

addImg(baseUrl +

"&" + extraParams.join("&"), "staticMapEndIMG");

//alert(lstrDistance);

}

function

addImg(url, id) {

var img = document.createElement("img");

img.src = url;

document.getElementById(id).innerHTML =

"";

document.getElementById(id).appendChild(img);

}

</script>

</head>

<body onload="initialize()" onunload="GUnload()">

<h2>Maps API Directions Illustrated</h2>

<form action="#" onsubmit="setDirections(this.from.value, this.to.value, this.locale.value); return false">

<table align="center">

<tr><th align="right">From:&nbsp;</th>

<td><input type="text" size="25" id="fromAddress" name="from" value="Palo Alto"/></td>

<th align="right">&nbsp;&nbsp;To:&nbsp;</th>

<td align="right"><input type="text" size="25" id="toAddress" name="to"

value="Mountain View" /></td></tr>

<tr><th>Language:&nbsp;</th>

<td colspan="3"><select id="locale" name="locale">

<option value="en" selected>English</option>

<option value="fr">French</option>

<option value="de">German</option>

<option value="ja">Japanese</option>

<option value="es">Spanish</option>

</select>

<input name="submit" type="submit" value="Get Directions!" />

<asp:Label ID="Label1" runat="server" Text="Label" Visible="False"></asp:Label></td></tr>

</table>

</form>

<br/>

<table class="directions">

<tr><th>Formatted Directions</th><th>Map</th></tr>

<tr>

<td valign="top"><div id="directions" style="width: 275px"></div></td>

<td valign="top"><div id="map_canvas" style="width: 310px; height: 400px"></div></td>

</tr>

</table>

<

hr>

Static Maps (printable) version:

<div id="staticMapOverviewIMG"></div>

<div id="staticMapStartIMG"></div>

<div id="staticMapEndIMG"></div>

<div id="div1"></div>

<

br clear="all"/>

</body>

</

html>

No comments: