Hello,
I am working on an application to create interactive markers and
infowindows. I meed to keep track of the markerobjects and infowindow
objects that have been created.
Is there a container/manager inside the map object or somewhere else
that is keeping track of these, or do I have to create my own
javascript array/objects and manage it with the events. ?
----------------------------------------------------
second question:
I am associating a infowindow to an object by doing as follows:
infowindow = new google.maps.infowindow(...);
marker = new google.maps.marker(...);

marker.dataInfowindow = infowindow;

Is there a set of reserved attributes of the objects that I can see so
that I don't stamp onto an attribute created by google. I am trying to
keep the namespace separate by prepending the "data" keyword.

(This is out of scope for this group) I need to check up on the
javascript documentation to make sure that the above is inserting a
reference into the attribute and not a copy of the entire field. It
seems to be working fine.
Thank you
Ahmet

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