> I'm not trying to be exactly like this, but the features that I'm
> trying to integrate the tabbed sidebar,
UCI use Spry Tabbed Panels, nowt to do with maps.
> a search bar to search for
> locations on the campus,
UCI submit the search request to a server-side script, nowt to do with
maps.
You'll need to cast your net wider than maps-specific tutorials to
find guides to these more generalised web techniques.
> and to hide the markers until they are
> clicked on the sidebar.
After you put each marker on the map with
map.addOverlay(marker);
you could hide it with
marker.hide();
http://code.google.com/apis/maps/documentation/javascript/v2/reference.html#GMarker.hide
In your myclick() function called from the sidebar entries, you could
show the marker
gmarkers[i].show();
http://code.google.com/apis/maps/documentation/javascript/v2/reference.html#GMarker.show
--
You received this message because you are subscribed to the Google Groups
"Google Maps API V2" 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.