IE8 で、'document' is null or not an object というエラーが表示されます。
User Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.3)
Timestamp: Fri, 3 May 2013 10:54:06 UTC
Message: 'document' is null or not an object
Line: 111
Char: 5
Code: 0
URI: http://foo/f2/Teste.html
IE を除くすべてのブラウザが動作します。
<body>
<div id="map" style="width: 400px; height: 650px;"></div>
<script type="text/javascript">
var ActiveXObject;
var Parsed = [[]];
var txtFile;
と、
var map = new google.maps.Map(document.getElementById('map'), {
zoom: 7,
center: new google.maps.LatLng(39.50, -8.37),
disableDefaultUI: true,
mapTypeId: google.maps.MapTypeId.ROADMAP
});
私が覚えている唯一のことは .getElemntByID('') の問題でしたが、マップに正しく割り当てられています。
問題に見えるのは?
完全なコードはこちら:ソースコード