On Feb 25, 9:42 am, Chris Moody <[email protected]> wrote:

> The "marker.openInfoWindowHtml(value); " line will show just the
> value, but I'd like it to show both value and score in the same format
> as newly created markers (IE "Value: <value> Score: <score>"

So just put together the string you want to display:
marker.openInfoWindowHtml("Value: " + value + " Score: " + score);

-- 
You received this message because you are subscribed to the Google Groups 
"Google Maps API" 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-api?hl=en.

Reply via email to