>>http://www.springfieldmnchamber.org/pages/springfieldmnmap

This seems to be not quite right:-

var map = new google.maps.Map(document.getElementById('map'), {
          zoom: 15,
          center: center,

Should be like this:-

var myOptions = {
      zoom: 15,
      center: center,
      mapTypeId: google.maps.MapTypeId.ROADMAP
    }

var map = new google.maps.Map(document.getElementById("map"), myOptions);

and as an example this should be:-

        var marker = new GMarker(point, {icon:icon});

something like this:-

        var marker = new google.maps.Marker({position:point,map:map,
icon:icon });

The syntax for icons has also changed.

http://code.google.com/apis/maps/documentation/javascript/overlays.html#Icon
s


Ralph
-
www.easypagez.com/maps/map_index.html
www.easypagez.com/maps/v3_basicmap.html








 



-- 
You received this message because you are subscribed to the Google Groups 
"Google Maps JavaScript API v3" group.
To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.

Reply via email to