jquery - load a google map url inside a div -
i have customized map google maps engine , have corresponding url. want load url inside div using simple load() method. unfortunatelly, p3p error message.
jquery('#map-canvas').load( "https://mapsengine.google.com/map/edit?whatever", function() { alert( "load performed." ); });
the error i'm getting:
not p3p policy! see http://www.google.com/support/accounts/bin/answer.py?hl=en&answer=151657 more info. info in link not usefull expected.
hints?
how can accomplish p3p policy , load map?
$(function() {$("#map").googlemap({zoom: 10, // initial zoom level (optional)coords: [48.895651, 2.290569], // map center (optional)type: "roadmap" // map type (optional)});})
Comments
Post a Comment