On Jan 24, 6:19 am, panore <[email protected]> wrote:
> Hello friends,
>
> I had created the google map by assigning an array of strings.
>
> the problem is this it creates the map properly but does not shows the
> tooltip and openinfowindowhtml details In Firefos
>
> the page is uploaded on the following URL.http://www.cybersurf.in/stuff/a.htm
>
> as well as google map does not shows the marker in the IE
>
> It seems that there is some problem in defining an array of
> "location" in the header.

Did you try looking at the errors reported by the browsers?
IE gives an 'object expected' error on this line:
var location=new Array["Rani Ki Vav or Queens stepwell","Sahasralinga
Talav","Panchasara Parshvanath Jain Derasar","Hemachandracharya Jain
Gnan Mandir","Sheikh Farids mosque","Siddhapur","Bohra havelis
(Kohinoor society)","Rudra Mahalaya","Modhera","Sun Temple"];

new Array[] is not the correct syntax, should be new Array()

Then "'undefined' is null or not an object" on this line:
map.addOverlay(createMarker(point, locationNam[i]));
because locationNam is not defined.

  -- Larry
--~--~---------~--~----~------------~-------~--~----~
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