我在使用以下代码时遇到问题:
function initialize() {
//myLatLng = new google.maps.LatLng(37.422104808,-122.0838851);
var myOptions = {
zoom: 18,
center: new google.maps.LatLng(42.564613,-70.809087),
// zoom: 5,
// center: myLatlng,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
map = new google.maps.Map(document.getElementById("map_canvas"),
myOptions);
geoXml = new geoXML3.parser({
map: map,
singleInfoWindow: true,
afterParse: useTheData
});
geoXml.parse('ActivityStatus_Producing_labels.kml');
};
function kmlClick(marker) {
google.maps.event.trigger(geoXml.docs[0].markers[marker],"click");
}
function useTheData(doc){
// Geodata handling goes here, using JSON properties of the doc object
var sidebarHtml = "<table>";
for (var i = 0; i < doc[0].markers.length; i++) {
// console.log(doc[0].markers[i].title);
sidebarHtml += '<tr><td><a href="javascript:kmlClick('+i+');">'+doc[0].placemarks[i].name+'</a></td></tr>';
}
我收到一个错误,即 doc[0].markers.length 无法从 null 或不存在的变量中获取长度,具体取决于我使用的浏览器。
在这个网站上: http: //thoughtfi.com/geoxmlpractice/practiceIMR2.html我可以让它在 Chrome 但不是 IE 中运行
该网站在 IE 和 Chrome 中运行,代码几乎相同:http ://www.geocodezip.com/geoxml3_test/v3_geoxml3_us_states_kml_test.html
我怎样才能让我的网站正常工作?我猜它没有及时解析kml文件,或者服务器/浏览器解析kml太慢?