为提升您的使用体验,本站正在维护,部分功能暂时无法使用。如果本站文章无法解决您的问题,您想要向社区提问的话,请到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 提问,我们的支持社区将会很快回复您的疑问。

搜索 | 用户支持

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

详细了解

More iframe issues; now with Google Maps. Has this been addressed?

  • 5 个回答
  • 1 人有此问题
  • 1 次查看
  • 最后回复者为 cor-el

more options

I received an e-mail with an embedded Google Maps snapshot. Underneath is a link "Click for larger map". A Firefox window opens with this message: "The Google Maps Embed API must be used in an iframe." The rest of the page is blank.

Is this another settings issue regarding iframes, or is this a feature that has been ended?

Using Firefox 68.0.2 (64-bit) on a Dell OptiPlex 5060 running Windows 10 Pro (64 bit).

Thanks.

I received an e-mail with an embedded Google Maps snapshot. Underneath is a link "Click for larger map". A Firefox window opens with this message: "The Google Maps Embed API must be used in an iframe." The rest of the page is blank. Is this another settings issue regarding iframes, or is this a feature that has been ended? Using Firefox 68.0.2 (64-bit) on a Dell OptiPlex 5060 running Windows 10 Pro (64 bit). Thanks.

所有回复 (5)

more options

Hi ed9213, does the link work better in other browsers? If so, are they resolving/redirecting to the same URL in the new window/tab?

more options

Jscherr2000,

I bit the bullet and temporarily made Microsoft Edge my default browser. When going to the same site and clicking the same link, “The Google Maps Embed API must be used in an iframe.” is the message produced.

Does that help?

Thanks. Ed9213

more options

Hi Ed9213, if it's not a top secret location, do you want to the URL of the page with the error? Maybe the person sharing the link made a mistake and the link only works for them...

more options

It is, actually, a secure URL so I can't post it or pass it along. I'm not sure I even have the access to address the webmaster. I thought it was a browser issue at my end. If it isn't, I'll probably have to figure out who has the path to the right people to correct it. Thanks.

more options

You can try to force to open the link in an iframe with code in the Web Console.

var loc=location.href;
var uri='data:text/html;charset=utf-8;base64,';
ifr='<html><head><title>[IFRAME]</title></head><body height="100%"><iframe id="iframe" src="'+loc+'" height="95%" width="100%"></iframe></body></html>';
location.href=uri+btoa(ifr);

由cor-el于修改