iframe Google maps won't print in chrome - html

Since the latest Google maps update, I'm unable to print the map via my chrome browser.
If I try to print it with firefox, and have a look at the preview, the map shows up.
My code:
<iframe width="600" height="300" marginheight="0"
src="http://maps.google.com/maps?ie=UTF8&q=loc:{address} {number}#{latitude},{longitude}&z=14&output=embed&iwloc=near"
frameborder="0" marginwidth="0" scrolling="no">
</iframe>
It displays the following (in chrome):
And if I try to print it, I get:
While in Firefox and Safari, it shows up perfect.
I assume that this is a chrome issue? (I've tested it on different chrome browsers, on different computers, both MAC and PC)
Or is there something I'm missing, or that I should add with the new maps.
Small detail, if I Go to the developer site of google maps (https://developers.google.com/maps/documentation/embed/guide) and I try to print it from there, it won't print either. Which I think is strange, since both maps and chrome are build by Google.
Does anybody else have this issue, or is it just me? And if it is just me, what am I doing wrong?
(My chrome version: 33.0.1750.152, working on OSX 10.9.2)

I have read and studied too much about this, and unfortunatelly there is no solution to this, to print the iframe insertion using Chrome. I also don´t know the reasons, so I decided to change, to improve! :)
I easyly changed my html codes to use the Google API, then it becomes to print the map again.
In my searches around the web, I found and started to use a very simple to implement jQuery plugin for Google Maps, called $goMAP(); Cons: you need to have a little bit of jQuery and JSON knowledge.
In the Example Page you can find a lot of implementations, I know one of it will fits to you.
And If you need more technical information, you can find whatelse you need in the Google Maps API.
These are some complementary URLs I´ve read before to adopt the solution:
https://code.google.com/p/chromium/issues/detail?id=353937
http://themeforest.net/forums/thread/google-maps-iframe-issue-in-chrome/110324
I hope not have disapointed you, but helped instead :)
Daniel

I have recently been having same problem but discovered that when Chrome's "Strict site isolation" feature is enabled the map iframes do not print, disable the feature and they all work
See:
chrome://flags/
#enable-site-per-process

Related

google docs on firefox: Saving your changes is taking longer than usual. Editing is temporarily disabled

I am attempting to use google docs with firefox, but am constantly getting this message.
It never goes away.
And if I close the tab all of my work is deleted.
This is a brand new Firefox install.
Is this an attempt to force us back to using chrome with google docs?
I have been a chrome user for many years but was recently forced to switch to firefox because chrome has an intolerable bug on macOS catalina.
I need to use google docs but I can't use chrome because of this chrome bug and now I can't use firefox because of this bug with google docs.
Is there a work-around for the problem?
Chrome allows me to work with local copies of google docs without losing work if I lose my network connection, but I cannot find a similar plugin for firefox.
I tried to reproduce the issue on Firefox, however it seems to work fine at my end without any sort of error or warning popup in saving.
But, Google is known to play nasty with competitors to promote Chrome and it can't be ruled out that it might be a cause too. You can try multiple options, and check which one works.
Possible Solutions:
If you want to trick google into thinking you are browsing on Chrome, change this setting in Firefox as mentioned here!
Try using the Firefox Developer Edition: [Official Link])(https://www.mozilla.org/en-US/firefox/developer/ "Firefox Developer Edition")
If the above options don't work, try switching to Microsoft Edge for a Chrome alternative if the bug is particularly associated with Google Chrome, though they both are based on Chromium, it's worth a try.
Searching through the Google forums, I came across an issue with GDrive not loading in Firefox. https://support.google.com/drive/thread/1987396?hl=en&msgid=22679169
The last comment on the page the user mentions disabling CORS
Find a solution ! When the add-in CORS (Access-control-Allow-Origin)
is enabled impossible to load the google drive page but no problem
when it is deactivated.
Have you tried disabling the CORS? http://testingfreak.com/how-to-fix-cross-origin-request-security-cors-error-in-firefox-chrome-and-ie/
This will happen if you try to copy/paste info from a place that is restricted. Make sure editing is turned on for all users. If it’s not “shared” correctly it will glitch.

Google docs iframe not working on mobile devices

I hope someone can help. I am trying to embed an editable google doc into an iFrame, I am currently using
<iframe src="https://docs.google.com/document/d/1bYwsERISJ8-jnn-tgDiMwkQEop1YvP41JZqhUQmYbHc/edit?widget=false&chrome=false&headers=false&gridlines=false&embedded=true" width='1000' height='800' seamless="seamless" scrolling="no"></iframe>
which is a shared test document. This works fine on my windows desktop but does not work on any mobile devices e.g. Android phone, iPad.
Any ideas why or what I could be doing wrong?
Update 1
Perhaps having a URL with test will may be helpful http://google-test.itproz.co.uk
Looks like this is a known issue with no resolution from Google: https://productforums.google.com/forum/?hl=ta#!topic/docs/WPMBrNIcLWU
I'm troubleshooting the same issue on another site and if I find out anything, I'll post here.

html angularjs live edit feature in chrome browser?

I have been practicing angularjs tuts from various tutorials,
I ran across a video tutorial which shows/depicts the live edit of html+angularjs in chrome browser
I am bit amazed with the feature , i am searching for the same since a day and unable to get any such feature,
Alterntatively i tried with webstrom7 which is bit buggy not working with chrome properly on frequent occasions, I know that brackets.io does implement such feature but i would be appreciating the below chrome live edit.
can anyone identify this live editor feature from the pic and suggest the best way to grab it for windows box - is the below a plugin ?
Is Batarang. a Chrome Extension!

Google Apps Script Html Service and Internet Explorer error "This content cannot be displayed in a frame"

I am finally getting my Google script to work. It works fine in Chrome. I am using htmlservice.createHtmlOutputFromFile and the site is obviously hosted on google sites.
But when I try the page in IE, I get
This content cannot be displayed in a frame
To help protect the security of information you enter into this website, the publisher of this content does not allow it to be displayed in a frame.
I tried adding in head tag
meta http-equiv="X-Frame-Options" content="allow"
but it made no difference.
Is there a javascript trick or a GAS library function I can use to try to get this to work cross browser?
Maybe your problem is related to cross domain cookies.
Check this answer maybe will work to you.

Get all images and css using Web Request (Network - Google Chrome)

I want to get the same results that Google Chrome get on his Network functionality Network Google Chrome. I found this, but i'm not sure if it works and how to use it. Basically i want to use that information to made a google chrome extension.
Any idea?
I think the chrome.devtools.network API would be better suited for your use.