Account Options

  1. Sign in
The old Google Groups will be going away soon.
Switch to the new Google Groups.
Google Groups Home
« Groups Home
Window IE 6 not showing map
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  8 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
ruthie  
View profile  
 More options Apr 14 2008, 5:40 pm
From: ruthie <r...@lipserve.com>
Date: Mon, 14 Apr 2008 14:40:08 -0700 (PDT)
Local: Mon, Apr 14 2008 5:40 pm
Subject: Window IE 6 not showing map
I see this problem has been posted before but I don't see an answer.
Map appearing in Windows IE7 and Firefox and in my Mac browsers but a
blank map in IE6 (the address shows in the address box and there is a
grey box where the map should be).

http://www.lipserve.com/enjou/retail-store.htm

Thanks for your help.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Rossko  
View profile  
 More options Apr 14 2008, 7:40 pm
From: Rossko <ros...@culzean.clara.co.uk>
Date: Mon, 14 Apr 2008 16:40:23 -0700 (PDT)
Local: Mon, Apr 14 2008 7:40 pm
Subject: Re: Window IE 6 not showing map

I can confirm the grey background IE6, for what its worth.

Struggling to read the JS so can't help much, but noted you're
geocoding the address for every site visitor.  Assuming the store
doesn't move around much, why not just plonk the marker at a fixed lat/
long and eliminate the vagaries of asynschronous geocoding?

cheers, Ross K


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
warden [Andrew Leach - Maps API Guru]  
View profile  
 More options Apr 14 2008, 7:58 pm
From: "warden [Andrew Leach - Maps API Guru]" <andrew.leac...@googlemail.com>
Date: Mon, 14 Apr 2008 16:58:32 -0700 (PDT)
Local: Mon, Apr 14 2008 7:58 pm
Subject: Re: Window IE 6 not showing map
On Apr 14, 10:40 pm, ruthie <r...@lipserve.com> wrote:

> I see this problem has been posted before but I don't see an answer.
> Map appearing in Windows IE7 and Firefox and in my Mac browsers but a
> blank map in IE6 (the address shows in the address box and there is a
> grey box where the map should be).

You're not using the bog-standard Maps API, but an add-on set of
"helper" functions, which is making debugging difficult. However, I
can see that there's a <body onload="load()"> but I can't find a
function called "load". There's a cmxMap.load(), which is already
called as part of cmxMap.js.

Firefox and IE6 tend to handle errors differently: Firefox will carry
on executing code if it can, whereas IE6 tends just to stop dead.
(I've no idea about IE7, as I don't run it, but it looks like it
behaves like Firefox.) I suspect this is what's happening here:
Firefox is encountering the "Can't find function load()" error but
it's not fatal, so the function cmxMap.load() carries on running and
you get a map; IE6 just stops *all* Javascript operations, so the API
is prevented from downloading map tiles, having got as far as setting
up the map.

All that's a bit of a guess, admittedly. What happens if you take out
the onload attribute from your body tag?

Andrew

PS: Rossko is right about geocoding. The store isn't going to move.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Mike Williams  
View profile  
 More options Apr 15 2008, 1:59 am
From: Mike Williams <nos...@econym.demon.co.uk>
Date: Tue, 15 Apr 2008 06:59:24 +0100
Local: Tues, Apr 15 2008 1:59 am
Subject: Re: Window IE 6 not showing map
Your problem is here:

<!--[if lte IE 6]><style type="text/css">img { behavior:
url(scripts/iepngfix.htc) }</style><![endif]-->

This is a bit of code that only gets loaded when the browser is MSIE6.
It searches through the DOM and attempts to "fix" any PNG files that are
used on your page. The problem is that the API displays PNG files
correctly in the first place, and when iepngfix attempts to "fix" images
that don't need fixing it completely breaks them.

You can't use iepngfix on pages that use the API. Since there's only one
"unfixed" png file on that page, you could just write your own
Javascript to call the AlphaImageLoader on your logo.png file rather
than have iepngfix modify every png image.

--
http://econym.googlepages.com/index.htm
The Blackpool Community Church Javascript Team


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
ruthie  
View profile  
 More options Apr 15 2008, 8:16 am
From: ruthie <r...@lipserve.com>
Date: Tue, 15 Apr 2008 05:16:32 -0700 (PDT)
Local: Tues, Apr 15 2008 8:16 am
Subject: Re: Window IE 6 not showing map
Thank you. I tried removing the "onload". IE6 still not happy.

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
ruthie  
View profile  
 More options Apr 15 2008, 8:32 am
From: ruthie <r...@lipserve.com>
Date: Tue, 15 Apr 2008 05:32:33 -0700 (PDT)
Local: Tues, Apr 15 2008 8:32 am
Subject: Re: Window IE 6 not showing map

Mike: I responded to you directly by mistake. Just so there's a record
in the forum, here again.

Makes sense to me and I appreciate your suggestion. I have never
written a word of JS but will google AlphaImageLoader and see what I
can find.

Thank you.

ruthie


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
warden [Andrew Leach - Maps API Guru]  
View profile  
 More options Apr 15 2008, 8:46 am
From: "warden [Andrew Leach - Maps API Guru]" <andrew.leac...@googlemail.com>
Date: Tue, 15 Apr 2008 05:46:20 -0700 (PDT)
Local: Tues, Apr 15 2008 8:46 am
Subject: Re: Window IE 6 not showing map
On Apr 15, 1:32 pm, ruthie <r...@lipserve.com> wrote:

> Makes sense to me and I appreciate your suggestion. I have never
> written a word of JS but will google AlphaImageLoader and see what I
> can find.

This
<!--[if lte IE 6]><style type="text/css">img { behavior:
url(scripts/iepngfix.htc) }</style><![endif]-->

should exclude images in the map from the behaviour:
<!--[if lte IE 6]>
  <style type="text/css">
    img { behavior:url(scripts/iepngfix.htc) }
    #cmxMap img { behavior:none }
  </style>
<![endif]-->

This is actually explicitly referenced here:
http://prototypes.wcctechhelp.com/iepngfix/iepngfix.html

Andrew


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
ruthie  
View profile  
 More options Apr 15 2008, 8:57 am
From: ruthie <r...@lipserve.com>
Date: Tue, 15 Apr 2008 05:57:04 -0700 (PDT)
Local: Tues, Apr 15 2008 8:57 am
Subject: Re: Window IE 6 not showing map
WOW! Thanks. It worked.

I'll read the reference so I'll remember it should it come up again.

Best,

Ruth


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »