I was playing around with the infowindow utility library here:
http://google-maps-utility-library-v3.googlecode.com/svn/trunk/infobubble/examples/example.html?compiled

My question is this:  If I get the map looking the way I want it, how
do I implement it?

When I get the map looking the way I like it, and view source, I am
not seeing my tabs due the javascript. Is there a simple page out
there, showing a tabbed info window, so when you view source, I can
see what's going on?


My initialize function is:

<script type="text/javascript">
                function initialize() {
                        var myOptions = {
                                zoom: 12,
                                center: new google.maps.LatLng(40.88,-71.06),
                                mapTypeId: google.maps.MapTypeId.ROADMAP,
                                disableDefaultUI: true,
                                zoomControl: false
                        }
                    map = new 
google.maps.Map(document.getElementById("map_canvas"),
myOptions);

                        // create marker
                    var marker = new google.maps.Marker({
                        map: map,
                        position: new google.maps.LatLng(40.88,-71.06),
                        title: "dude"
                    });



var infowindow = new google.maps.InfoWindow({
                                    content: "Hi"
                                });

                }
                </script>


Thanks in advance,

Mike

-- 
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 [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.

Reply via email to