搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

Firefox not displaying Google map (but only sometimes!)

  • 6 个回答
  • 4 人有此问题
  • 330 次查看
  • 最后回复者为 FredMcD

more options

On my website (remotely hosted) there is a page (https://www.mediterraneangardeningfrance.org/gdVisit.htm) which lists gardens in the South of France that can be visited. At the top of the page is a Google map which shows the location of these gardens. On one of my machines (Win7 Home / 64), the map will not display in Firefox (58.0.2/64bit) but it does display in IE (on the same machine). The page will also display correctly on:

iphone/Safari Android phone/Chrome Win10 laptop/Edge and Firefox Win7 laptop/Firefox

What's weird is that the page will display correctly in Firefox on the problem machine if I use the source version of the page which is kept on the same machine rather than the live one on the website - see the enclosed image (remote site on the left, local version on the right). The two versions are identical as I have done tests after immediately uploading the page.

I'm really scratching my head on this one. Any ideas?

On my website (remotely hosted) there is a page (https://www.mediterraneangardeningfrance.org/gdVisit.htm) which lists gardens in the South of France that can be visited. At the top of the page is a Google map which shows the location of these gardens. On one of my machines (Win7 Home / 64), the map will not display in Firefox (58.0.2/64bit) but it does display in IE (on the same machine). The page will also display correctly on: iphone/Safari Android phone/Chrome Win10 laptop/Edge and Firefox Win7 laptop/Firefox What's weird is that the page will display correctly in Firefox on the problem machine if I use the source version of the page which is kept on the same machine rather than the live one on the website - see the enclosed image (remote site on the left, local version on the right). The two versions are identical as I have done tests after immediately uploading the page. I'm really scratching my head on this one. Any ideas?

被采纳的解决方案

I have now got this sorted. Calling Google maps requires the following script:

<script src="http://maps.google.com/maps/api/js?sensor=false"></script>

This worked fine until the site became protected by SSL which requires all links on the page to be https. Changing the line calling Google maps to

<script src="https://maps.google.com/maps/api/js?sensor=false"></script>

fixes the problem.

Thanks again to Fred for turning the light on in my brain.

定位到答案原位置 👍 0

所有回复 (6)

more options

Sorry, the image didn't get uploaded. Here it is.

more options

Make sure you are not blocking content.

Start Firefox in Safe Mode {web link} by holding down the <Shift> (Mac=Options) key, and then starting Firefox.

A small dialog should appear. Click Start In Safe Mode (not Refresh). Is the problem still there?

more options

Hi Fred,

That seems to have done the trick. I started FF in Safe Mode and the problem went away. I restarted FF in normal mode and it's fine now.

I'd like to understand why the problem arose in the first place. The page in question was re-developed a few weeks ago and in testing there weren't any problems with the map. So, I've done something in the meantime but have no idea what it might be.

more options

Further to my earlier reply, the problem seems to be https. Since the page was redone a few weeks ago, the site has had SSL added to it. If the URL is preceded by https, then the map doesn't display but does display when the prefix is not there.

more options

选择的解决方案

I have now got this sorted. Calling Google maps requires the following script:

<script src="http://maps.google.com/maps/api/js?sensor=false"></script>

This worked fine until the site became protected by SSL which requires all links on the page to be https. Changing the line calling Google maps to

<script src="https://maps.google.com/maps/api/js?sensor=false"></script>

fixes the problem.

Thanks again to Fred for turning the light on in my brain.

more options

That was very good work. Well done. Please flag your last post as Solved Problem so others will know.