load a google map url inside a div

758 views Asked by At

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?

1

There are 1 answers

1
nagendra On

$(function() {$("#map").googleMap({zoom: 10, // Initial zoom level (optional)coords: [48.895651, 2.290569], // Map center (optional)type: "ROADMAP" // Map type (optional)});})