jQuery Plugin MBextruder
I am using the Go开发者_运维知识库ogle Maps API V3. When I load the page, I have two warning messages in the console:
data:image/svg+xml; charset=utf-8 ,<svg xmlns="http://www.w3.org/2000/svg"><rect x="0" y="0" width="27px" height="45px" fill="rgb(0, 0, 0)" stroke="none"></rect><text x="-0" y="5" font-family="Arial, Helvetica, sans-serif" fill="rgb(255, 255, 255)" font-size="18" style="text-anchor: end; dominant-baseline: hanging" transform="rotate(-90)" text-rendering="optimizeSpeed">Menu</text></svg>:-1Resource interpreted as Document but transferred with MIME type image/svg+xml.
data:image/svg+xml; charset=utf-8 ,<svg xmlns="http://www.w3.org/2000/svg"><rect x="0" y="0" width="27px" height="32px" fill="rgb(0, 0, 0)" stroke="none"></rect><text x="-4.5" y="0" font-family="Arial, Helvetica, sans-serif" fill="rgb(255, 255, 255)" font-size="18" style="text-anchor: start; dominant-baseline: hanging" transform="rotate(90, 9, 13.5)" text-rendering="optimizeSpeed">B!G</text></svg>:-1Resource interpreted as Document but transferred with MIME type image/svg+xml.
Here are the includes:
<script src="https://www.google.com/jsapi?key=MY_KEY_IS_HERE_IN_THE_REAL_SOURCE"></script>
<script type=text/javascript>
//<![CDATA[
google.load("jquery", "1.6.1", {uncompressed: true});
google.load("jqueryui", "1.8.13", {uncompressed: true});
google.load('visualization', '1', {packages:['imageareachart', 'corechart', 'geomap']});
//]]>
</script>
<script src="http://maps.google.com/maps/api/js?v=3.4&sensor=false"></script>
It will have the same error regardless of including the other Libraries/APIs above. This leads me to believe it has to do with The Google Maps API.
Here is the top of my document:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
EDIT:
I realized that instead of the Google Maps API causing this, it seems to be related to the MBextruder jQuery plugin I am using. Here is the link to the developer's site: http://pupunzi.open-lab.com/mb-jquery-components/jquery-mb-extruder/
精彩评论