Gmail Calendar Documents Reader Web more »
Recently Visited Groups | Help | Sign in
Google Groups Home
Problem with IE7 - Only Displays partial 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
  12 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
 
CaboDave  
View profile  
 More options Nov 7, 10:18 am
From: CaboDave <d...@suncabo.com>
Date: Fri, 6 Nov 2009 15:18:04 -0800 (PST)
Local: Sat, Nov 7 2009 10:18 am
Subject: Problem with IE7 - Only Displays partial map
I've been trying to solve this problem for a few days now. Hopefully
somebody can offer some insight.

I noticed this problem a while ago. The maps on my website which used
to work on every browser were now not working on IE7. I've tested the
code thouroughly and it works perfectly on Chrome, Firefox, and
interestingly enough IE 64 bit browsers - but it only loads a partial
map in IE7. There's a link here. Any help greatly appreciated!

http://dev.suncabo.com/Marquis_Los_Cabos.asp?dev=CabodelSol&loc=Corri...


    Reply    Reply to author    Forward  
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.
Ralph Ames  
View profile  
 More options Nov 7, 12:16 pm
From: Ralph Ames <ralph.a...@gmail.com>
Date: Sat, 7 Nov 2009 03:16:39 +0200
Local: Sat, Nov 7 2009 12:16 pm
Subject: RE: Problem with IE7 - Only Displays partial map

t=22.98597263719975&lng=-109.75760221481323

The map looks ok for me in IE7.

Ralph
-
www.easypagez.com/maps/map_index.html

--

You received this message because you are subscribed to the Google Groups
"Google Maps API" group.
To post to this group, send email to google-maps-api@googlegroups.com.
To unsubscribe from this group, send email to
google-maps-api+unsubscribe@googlegroups.com.
For more options, visit this group at
http://groups.google.com/group/google-maps-api?hl=en.


    Reply    Reply to author    Forward  
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.
CaboDave  
View profile  
 More options Nov 8, 7:15 am
From: CaboDave <d...@suncabo.com>
Date: Sat, 7 Nov 2009 12:15:50 -0800 (PST)
Local: Sun, Nov 8 2009 7:15 am
Subject: Re: Problem with IE7 - Only Displays partial map
Thanks for the input Ralph - however, I'm still having the same
problem. What version of IE are you using?

The version I am having the problem with is V 7.0.6001.18000
256-bit

IE 64 bit browsers work fine.

Here's what it looks like on my screen.

http://tinyurl.com/yj2slyc

I have noticed one thing though - If I click on maximize button for
the window - when it refreshes it shows up in full.

Any Google people out there that can help??

On Nov 6, 5:16 pm, Ralph Ames <ralph.a...@gmail.com> wrote:


    Reply    Reply to author    Forward  
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.
Andrew Leach  
View profile  
 More options Nov 8, 8:01 am
From: Andrew Leach <andrew.leac...@googlemail.com>
Date: Sat, 7 Nov 2009 13:01:43 -0800 (PST)
Local: Sun, Nov 8 2009 8:01 am
Subject: Re: Problem with IE7 - Only Displays partial map
On Nov 7, 8:15 pm, CaboDave <d...@suncabo.com> wrote:

> Here's what it looks like on my screen.

> http://tinyurl.com/yj2slyc

> I have noticed one thing though - If I click on maximize button for
> the window - when it refreshes it shows up in full.

This is the standard IE thing with not knowing the size of the map
when it's created because it's hidden. You can fix it by using the
{size:} option in the new GMap2(...) statement, or by including a
checkResize() command in the code which unhides it.

Andrew


    Reply    Reply to author    Forward  
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 Nov 8, 8:07 am
From: Rossko <ros...@culzean.clara.co.uk>
Date: Sat, 7 Nov 2009 13:07:40 -0800 (PST)
Local: Sun, Nov 8 2009 8:07 am
Subject: Re: Problem with IE7 - Only Displays partial map

You've got whitespace in front of your <!DOCTYPE, that can invalidate
it on certain browsers.

The map is in a tab which is initially hidden.  It fails the same in
IE6.  The issue is just about a FAQ here ; when the API asks the
browser what size the (hidden) div is, the brower says zero.  So the
map is built with zero size, and not all the needed tiles will be
fetched.
You've a choice of actions;
perform a checkResize() after un-hiding the map
or
tell the API what size map to build, in the GMap2 constructor


    Reply    Reply to author    Forward  
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.
CaboDave  
View profile  
 More options Nov 9, 5:29 am
From: CaboDave <d...@suncabo.com>
Date: Sun, 8 Nov 2009 10:29:44 -0800 (PST)
Local: Mon, Nov 9 2009 5:29 am
Subject: Re: Problem with IE7 - Only Displays partial map
Thanks Rossko -

Don't you find it odd that IE 7 64bit version works fine? I'll try
implementing the checkResize() when the tab gets clicked and see how
that goes. As for the GMap2 constructor - This is what I use

var map = new GMap2(document.getElementById("map_canvas"),{size: new
GSize(599,487), mapTypes:[G_NORMAL_MAP,G_SATELLITE_MAP]});

does that not specify a size properly?

Funny thing is - 6 months ago it worked perfectly and I haven't
touched a thing!.....

On Nov 7, 1:07 pm, Rossko <ros...@culzean.clara.co.uk> wrote:


    Reply    Reply to author    Forward  
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.
Andrew Leach  
View profile  
 More options Nov 9, 6:06 am
From: Andrew Leach <andrew.leac...@googlemail.com>
Date: Sun, 8 Nov 2009 11:06:09 -0800 (PST)
Local: Mon, Nov 9 2009 6:06 am
Subject: Re: Problem with IE7 - Only Displays partial map
On Nov 8, 6:29 pm, CaboDave <d...@suncabo.com> wrote:

> var map = new GMap2(document.getElementById("map_canvas"),{size: new
> GSize(599,487), mapTypes:[G_NORMAL_MAP,G_SATELLITE_MAP]});
> does that not specify a size properly?

Yes, it does, but you also have map.checkResize() in your initialize
function -- when the API does that, it asks the browser what size the
map is at that point. During initialisation, the map will have zero
size, and your {size} option gets reset.

I recommend removing that checkResize() line. If you want it in
somewhere, it needs to go wherever the tabs do something (is that
dtabs.js?) in order that it's done when the map is unhidden.

Andrew


    Reply    Reply to author    Forward  
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.
David Girard  
View profile  
 More options Nov 9, 7:16 am
From: David Girard <d...@suncabo.com>
Date: Sun, 8 Nov 2009 12:16:42 -0800
Local: Mon, Nov 9 2009 7:16 am
Subject: Re: Problem with IE7 - Only Displays partial map

Yes - I was just testing it out to see if it might work in there. It was not
there before.

Ideally it needs to get called when someone clicks on the tab, but DTABS
doesn't offer that. I can add some javascript when some clicks on a tab, but
have yet to figure out how to display a tab from within that javascript...
life is just a series of hoops :-)

Dave

On Sun, Nov 8, 2009 at 11:06 AM, Andrew Leach <andrew.leac...@googlemail.com


    Reply    Reply to author    Forward  
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.
Ken Priest  
View profile  
 More options Nov 21, 12:03 pm
From: Ken Priest <k...@pointbweb.com>
Date: Fri, 20 Nov 2009 17:03:45 -0800 (PST)
Local: Sat, Nov 21 2009 12:03 pm
Subject: Re: Problem with IE7 - Only Displays partial map
I have the exact same problem on one of my client's sites, but this
page has no tabs hiding the map AND it was working fine before some
minor design changes were made to the page.
Problem is only in IE7:
Old Page (should look fine in IE7): http://www.buchanhomes.com/_OLD/locator/
New Page (minor cosmetic changes) - PARTIAL MAP DISPLAY:
http://www.buchanhomes.com/locator/
*Here is what it looks like in IE7: http://www.buchanhomes.com/misc/bad_google.jpg

I did not write the js code and it looks like it is using a script
called GPlotter 0.90. NO CHANGES were made to any of the javacript.

I see the problem still exists on CaboDave's site, so does anyone have
a fix or a clue?

On Nov 8, 12:16 pm, David Girard <d...@suncabo.com> wrote:


    Reply    Reply to author    Forward  
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.
geocodezip@gmail.com  
View profile  
 More options Nov 21, 5:23 pm
From: "geocode...@gmail.com" <geocode...@gmail.com>
Date: Fri, 20 Nov 2009 22:23:30 -0800 (PST)
Local: Sat, Nov 21 2009 5:23 pm
Subject: Re: Problem with IE7 - Only Displays partial map
On Nov 20, 5:03 pm, Ken Priest <k...@pointbweb.com> wrote:

> I have the exact same problem on one of my client's sites, but this
> page has no tabs hiding the map AND it was working fine before some
> minor design changes were made to the page.
> Problem is only in IE7:
> Old Page (should look fine in IE7):http://www.buchanhomes.com/_OLD/locator/
> New Page (minor cosmetic changes) - PARTIAL MAP DISPLAY:http://www.buchanhomes.com/locator/
> *Here is what it looks like in IE7:http://www.buchanhomes.com/misc/bad_google.jpg

It looks the same in IE6.

> I did not write the js code and it looks like it is using a script
> called GPlotter 0.90. NO CHANGES were made to any of the javacript.

> I see the problem still exists on CaboDave's site, so does anyone have
> a fix or a clue?

The issue is that like all these problems the map is being initialized
before the DOM is defined enough so the API gets the correct size for
the map div.  Move the call of init either to the body onload event
(so it doesn't get called until the page has completely rendered) or
move the call to the very end of the page (just before the </body>
tag).

  -- Larry


    Reply    Reply to author    Forward  
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.
Ralph Ames  
View profile  
 More options Nov 21, 11:05 pm
From: Ralph Ames <ralph.a...@gmail.com>
Date: Sat, 21 Nov 2009 14:05:28 +0200
Local: Sat, Nov 21 2009 11:05 pm
Subject: RE: Problem with IE7 - Only Displays partial map

Try this link

http://www.easypagez.com/maps/ieworking.html

Ralph
-
www.easypagez.com/maps/map_index.html

--

You received this message because you are subscribed to the Google Groups
"Google Maps API" group.
To post to this group, send email to google-maps-api@googlegroups.com.
To unsubscribe from this group, send email to
google-maps-api+unsubscribe@googlegroups.com.
For more options, visit this group at
http://groups.google.com/group/google-maps-api?hl=.


    Reply    Reply to author    Forward  
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.
Ken Priest  
View profile  
 More options Nov 22, 3:53 am
From: Ken Priest <k...@pointbweb.com>
Date: Sat, 21 Nov 2009 08:53:38 -0800 (PST)
Local: Sun, Nov 22 2009 3:53 am
Subject: Re: Problem with IE7 - Only Displays partial map
Bingo! Moving the init() to just before the /body tag fixed it.
THANKS!

On Nov 20, 10:23 pm, "geocode...@gmail.com" <geocode...@gmail.com>
wrote:


    Reply    Reply to author    Forward  
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 »

Create a group - Google Groups - Google Home - Terms of Service - Privacy Policy
©2009 Google