This code have been working until I updated last night.
The code works perfectly on my localhost, but I get an error on my test server. The error message (from Firebug) is "map.set_center is not a function".

So why is this not working on my server any more?

  function googleMapInit() 
  {    
    if (jQuery('#map_canvas').length > 0) {
      var currentLocation    = jQuery('#geomap_ddlCity :selected').text() + ', ' + jQuery('#geomap_ddlCountry :selected').text();
      var options   = {zoom: 14, mapTypeId: google.maps.MapTypeId.ROADMAP }
      var map       = new google.maps.Map(document.getElementById("map_canvas"), options);
      var geocoder  = new google.maps.Geocoder();

      //Center map for current selected city
      geocoder.geocode(    
      { 
        address: currentLocation}, function(results, status)
        {
            if (status == google.maps.GeocoderStatus.OK && results.length) {
                alert(results[0].geometry.location);
                map.set_center(results[0].geometry.location);
            } else 
            {
                var oslo = new google.maps.LatLng(59.9167, 10.75);
                map.set_center(oslo);
            } 
        }
      );  
    }
  }
link|improve this question

76% accept rate
feedback

1 Answer

up vote 5 down vote accepted

It seems there is no set_center method in the Map class ; you should probably use setCenter, instead.

link|improve this answer
That was it. Thanks! – Steven Dec 15 '09 at 12:33
You're welcome :-) Have fun ! – Pascal MARTIN Dec 15 '09 at 12:34
feedback

Your Answer

 
or
required, but never shown

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