I have customized a map with the google maps engine and I have the corresponding url. I just want to load this url inside a div by using the simple load() method. Unfortunatelly, I get a P3P error message.
jQuery('#map-canvas').load( "https://mapsengine.google.com/map/edit?whatever", function() {
alert( "Load was performed." );
});
The error I'm getting:
This is not a P3P policy! See http://www.google.com/support/accounts/bin/answer.py?hl=en&answer=151657 for more info.
The info in the link is not as usefull as expected.
Any hints?
How can I accomplish the P3P policy and load the map?