I got a google map and I load it but I want to change the direction or center by changing the center,how can I do this? I got a code like this to load the map:
function putmap(x) {
if (GBrowserIsCompatible()) {
map = new GMap2(document.getElementById("Map"));
// Create new geocoding object
geocoder = new GClientGeocoder();
// Retrieve location information, pass it to addToMap()
geocoder.getLocations(x, addToMap);
}
}
I want to change the value of x by say entering a new value on the textbox how can I do this...
Give your textbox an id, then you can write
geocoder.getLocations(document.getElementById("mytextbox").value, addToMap);