2

嘿伙计们,当我加载我的网页时,谷歌地图开始加载,但它没有完全加载。这是控制台打印出来的:

Resource interpreted as Image but transferred with MIME type text/html: "http://maps.googleapis.com/maps/gen_204?ev=api_viewport&cad=src:apiv3".
Resource interpreted as Image but transferred with MIME type text/html: "http://maps.googleapis.com/maps/gen_204?ev=api_ads&cad=src:apiv3,ads:0".
Resource interpreted as Image but transferred with MIME type text/html: "http://maps.googleapis.com/maps/gen_204?ev=api_marker&cad=src:apiv3,m:2,d:0,s:0".

我知道它与内容类型有关,但我不确定如何设置它。我将这两个元标记放在我的标题中,但没有运气。

<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />

<meta http-equiv="content-type" content="text/html"; charset=utf-8">

我也在尝试另一种方式,将它放在我的文件顶部:

<?php // header('Content-Type: application/x-javascript; charset=UTF-8'); ?>

但这也无济于事。

我正在使用 PHP 和 MYSQL。有人可以引导我朝着正确的方向前进。谢谢。

4

1 回答 1

1

我弄清楚为什么我的地图没有完全加载。我正在使用它来获取位置:

new google.maps.LatLng(-103.6975488, 36.8813329);

但是我需要这样做:

new google.maps.LatLng(36.8813329, -103.6975488);

感谢 Andrew 指出 MIME 类型错误并不重要。

于 2012-04-18T13:04:19.200 回答