I have a simple web site page with a map (from Google Maps) embedded into an iFrame.
<iframe src="https://www.google.com/maps/embed? .... ></iframe>
See Fiddle as example.
Embedding the map into the page results in Google's cookies being stored on the client's browser.
Is there any way to avoid that?
Why I'm asking this:
in the EU a web site that stores 3rd party cookies on the user's device is required to get informed consent from the user and give her/him discretion to read a long document about cookies and privacy. See Cookies - European commission
A web site that uses only session cookies (non persistent) is not required to get informed consent.
There are many simple websites whose purpose is just to give basic online presence to commercial activities such as restaurants, shops and so on.
Normally those websites only need session cookies (or no cookies at all).
However as many of them use embedded Google Maps' maps to show their location they automatically fall into the category of "websites that stores 3rd party cookies" and must obey all the EU obligations regarding that. I think too much overhead for just displaying a map.