On Jul 16, 5:40 pm, "[email protected]" <[email protected]> wrote: > I have determined the line that error in my code is occuring: > > map1.addOverlay(dataobj[j]);
Good. Then you have fixed it? -- Larry > > On Jul 16, 5:38 pm, "[email protected]" <[email protected]> > wrote: > > > > > I am sorry but I cannot provide a link because the project is not yet > > released to the public and it would be too difficult to mimic an > > identical scenario to provide a test environment. > > > When the error occurs, 4 small colored dots appear in the middle of > > the gray map and move when I drag the map with my cursor. However, the > > dots move faster than what would seem to be the correct speed at which > > I dragging. The map is gray, with no ability to zoom in or out, no > > ability to click on any of the view buttons. > > > On Jul 16, 4:52 pm, Esa <[email protected]> wrote: > > > > On Jul 17, 2:28 am, "[email protected]" <[email protected]> > > > wrote:> This is my code: > > > > .... > > > > latitudes[i] = document.getElementById('latitude'+i).value; > > > > longitudes[i] = document.getElementById('longitude'+i).value; > > > > .... > > > > Values from DOM elements return strings. GLatLng() expects numbers. > > > Try: > > > > latitudes[i] = document.getElementById('latitude'+i).value * 1; > > > longitudes[i] = document.getElementById('longitude'+i).value * 1;- Hide > > > quoted text - > > - Show quoted text - --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
