any idea? On Fri, Jul 1, 2011 at 9:54 AM, rejeesh tj <[email protected]> wrote:
> http://qa.saloncheckin.com > Login using the username : [email protected] password : 123456 > Click use map -> enter zip code (85710) > There you will get a map. There you will get a custom marker labeled > 'WEBCHECKIN' . I want to show the wait time on that marker. > 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 9:31 AM, Andrew Leach <[email protected]>wrote: > >> On 1 July 2011 10:19, rejeesh tj <[email protected]> wrote: >> >>> YEs... But I want to write the contents inside the custom label, >>> dynamically. Plz help me >>> >>> >>> >> Please provide a link so we can see what you're doing with your >> proprietory classes. It may be possible to help; it may not be. But there's >> no way we can help with just the snippets you have provided so far. A link >> is essential. >> >> -- >> 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 > > * > > > -- ** [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.
