> shows up, but i can't do this:
>       infowindow = new google.maps.InfoWindow({content: label, aptinfo});

That's right, javascript will not allow you to assign two values to a
single option.

You could combine the values perhaps ; guessing that maybe 'label' and
'aptinfo' are two string variables, you might concatenate them in the
usual way
http://www.google.com/search?q=javascript+concatenate+string+variables

mytext = label + aptinfo;
infowindow = new google.maps.InfoWindow({content: mytext});

> maybe its in my page code?

Maybe.  Let us know when your page is ready to demonstrate your
problem, not many people read long code snippets here - they are error
prone and you can't run a debugger on them, or even see what errors
the browser reports in use.

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