I've got it working now with all those things. I guess perseverence
pays off.


On Jun 15, 5:24 pm, vetswest <george.reyno...@gmail.com> wrote:
> Amazingly, I got that to work, by modifying his function! Thanks a lot
> for the advice!!
>
> Any idea how to get it to do a nice clean sidebar like i have on the
> website right now, with the pins in place and to get it to
> automatically popup the label when you do mousover?
>
> I'm guessing that is something you set globally.
>
> thanks
>
> On Jun 15, 4:16 pm, Andrew Leach <andrew.leac...@gmail.com> wrote:
>
> > On Jun 15, 3:46 pm, vetswest <george.reyno...@gmail.com> wrote:
>
> > > Now my next question: How do i label these markers and get them to
> > > appear on the list on the right? How do I attach bubble text to them?
>
> > > Alternatively, is there a way to easily convert (some of ) my markers
> > > athttp://www.vetswest.co.uk/map_ready.htmtooffsetmarkers without re-
> > > writing everything?
>
> > What you're currently doing is passing data to a function called
> > GV_Draw_Marker() in order to create each marker.
>
> > This is the principal issue when using a third-party library -- it's
> > not easily altered when you want to do something else. You may need to
> > re-write everything along the lines of Mike's sidebar 
> > examplehttp://econym.org.uk/gmap/basic2.htm
>
> > As he uses a createMarker function to create the markers, you could
> > adapt that to accept other arguments to create offset markers:
>
> > Instead of
> >   createMarker(point,name,html)
> > because you have lat and lng separate you could have
> >   createMarker(lat, lng, name, html, offsetx, offsety)
> > and within the function create the GLatLng(lat,lng) for the marker
> > position. If offsetx and offsety are present, create an OffsetMarker;
> > otherwise create a normal GMarker. The rest of the code to add the
> > marker to the map and the sidebar will probably remain the same.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Maps API" group.
To post to this group, send email to google-maps-...@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-api+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-api?hl=en.

Reply via email to