Hi you need to change your xml or function which creates marker.

In xml on http://ezdaylilies.com/Map/categories.xml you have those
attributes:
- lat
- lng
- html
- icontype

Your function reads:
for (var i = 0; i < markers.length; i++) {
          // obtain the attribues of each marker
          var lat = parseFloat(markers[i].getAttribute("lat"));
          var lng = parseFloat(markers[i].getAttribute("lng"));
          var point = new GLatLng(lat, lng);
          var address = markers[i].getAttribute("address");
          var name = markers[i].getAttribute("name");
          var html = "<b>"+name+"<\/b><p>"+address;
          var category = markers[i].getAttribute("category");

So, you need xml which contains:
- lat (already done)
- lng (already done)
- address
- name
-category

Maybe my page will help you a little: http://adresar.bohyne.net
I did not create function which shows only specific category, but Idea
is (nearly) the same

Since my page is in Czech, don't hesitate to ask more questions. Will
try to keep this thread in my mind

Pavel

On Jun 26, 6:39 pm, Marianne <[email protected]> wrote:
> written to lines 184/185/186
> uploaded - no change
>
>
>
> On Fri, Jun 26, 2009 at 1:30 PM, Ralph Ames <[email protected]> wrote:
>
> > function initialize() {
> > if (GBrowserIsCompatible()) {
> >      var gmarkers = [];
> > ...
> > ...
>
> > }
> > }
>
> > Ralph
>
> --
> Marianne Joordens
> Lincoln, NB, Canada
> Zone 4
--~--~---------~--~----~------------~-------~--~----~
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