While using the ELabel extension which you specified, the marker is
completely vanished.

What about this one? any idea?

Also one more doubt I am having is

I wrote the script as
this.marker = new GMarker(point,hIcon);
this.map.addOverlay(this.marker);
            this.map.address = this.address;
            this.map.label = this.label;
            GEvent.addListener(this.map, "click", function() {

              this.openInfoWindowHtml(point,this.label||this.address);
            });
At that time I could open the info window. But it show the info window while
click on anywhere on the map.
I want to open it only while click on the marker.
So that I changed the script as

this.marker = new GMarker(point,hIcon);
this.map.addOverlay(this.marker);
            this.marker.address = this.address;
            this.marker.label = this.label;
            GEvent.addListener(this.marker, "click", function() {
              this.openInfoWindowHtml(point,this.label||this.address);
            });

At that time I am getting the error as "a is undefined".(But this second
issue is not committed so you will not get it in the current link)
Please help me.






On Fri, Jul 1, 2011 at 7:51 PM, xelawho <[email protected]> wrote:

> > YEs... But I want to write the contents inside the custom label,
> > dynamically. Plz help me
>
> just theorizing here, because i have no idea how or even if it could
> be done, but assuming that you could get the waiting time at the time
> when the infowindow was opened (from whatever your source is), would
> it not be possible to put that number in a div in the infowindow and
> then just run a simple countdown script on it?
>
> (assuming that the waiting time will just keep counting down and that
> you only really need to check back with the info source the next time
> the infowindow is opened?)
>
> --
> 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.
>
>


-- 
**

[image: Fun & Info @ Keralites.net]
*       *
*Be Positive
Rejeesh T J

*

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

Reply via email to