> On 29 Nov., 16:56, danielb <[EMAIL PROTECTED]> wrote:
>
> > hi,
> > I'm quite new with google maps, and while i was doing some
> > experinents, I had strange results. Suddenly, the directions that
> > where loading when map load, didn't appear. I tried to recever to
> > earlier version, but it didn't halp. After about ten minutes, I
> > rifreshed the page, and it worked, without me changing the code again.
> > After a few more checks the same thing happend...
> > this is the address:http://kaloot.co.il/map/map3.html
>
> > anybody have an idea?
On Nov 29, 11:54 am, Andy R <[EMAIL PROTECTED]> wrote:
> Put your JS at the bottom of your HTML body.
He has his code in a function which is called by the onload function
which will work as well.
The error I get in IE is this line:
startMarker = createMarker("37.961523,-102.150879",'Start')
createMarker expects a GLatLng not a string as its first argument.
It should be:
startMarker = createMarker(new GLatLng(37.961523,-102.150879),'Start')
-- 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
-~----------~----~----~----~------~----~------~--~---