Hello folks, I have been trying to build this google maps api for a client for a while now and am stuck. Following guidelines at the google api pages and forums, I have created this: http://www.visitcitrus.com/g-map.html and this: http://www.visitcitrus.com/homosassa_hotels.html What I want is a combination of the two. The data is drawn out of a SQL database. There needs to be five bulleted lists for each of the categories (bed & breakfasts, hotels, campgrounds, resorts, and vacation rentals) like on the second example. However, they need to be a hide/show format so that they will disappear when the check box is unchecked and appear when checked like the first example (but these are not separated into bulleted lists like the second). No matter what I have done so far, I have not been able to get these to to work properly together. How do I get these two married and have a child? I have tried to use separate divs to no avail. This is the last step in this project and I want it to be done! Thanks in advance for your help! bardman6
bardman6, So you need to use a bit of javascript events and styles for the div, If I understand the problem correctly. 1) onclick of checkbox (of course check the checked status or toggling) set the style of the div of right hand side using style="visibility:hidden" or style="visibility:visible" 2) You already have markers, so that createMarker function can be called on checkbox hit. If you still find it troublesome, please let me know.