vote up 1 vote down star

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...

flag

33% accept rate
I'm not sure what you're trying to do. Are you the Google Maps API or simply trying to navigate a map? – Ben S Nov 2 at 21:05
I successfully loaded the map to my webpage but I want to change the center dynamically,how can I do this? – jamal Nov 2 at 21:10
Your question needs more detail. Please update it. – C. Ross Nov 2 at 21:11
1  
Yeah, are you just looking for the docs for setCenter? If so, here you go: code.google.com/apis/maps/… – Anthony Mills Nov 2 at 21:12

3 Answers

vote up 0 vote down

Give your textbox an id, then you can write

geocoder.getLocations(document.getElementById("mytextbox").value, addToMap);

link|flag
vote up 0 vote down

Are you using the Map2 API? If so, just use the setCenter() method:

var map = new google.maps.Map2(document.getElementById("map"));
map.setCenter(new google.maps.LatLng(0, 0), 2);

See the docs for more help getting started.

link|flag
vote up 2 vote down

Well, you change the center by doing

map.setCenter(new GLatLng(lat, lng), map.getZoom());

Look here for more detail. If you know the zoom level you want, you can use that instead of map.getZoom().

link|flag
If you don't want to change the zoom, you don't need to specify it. Just use: map.setCenter(new GLatLng(lat, lng)); – Chris B Nov 2 at 21:54

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.