我遇到以下代码时出现问题:
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?
答案 0 :(得分:1)
似乎是kml文件。 IE不相信它是有效的xml。 feedvalidator也没有: http://www.feedvalidator.org/check.cgi?url=http%3A%2F%2Fthoughtfi.com%2Fgeoxmlpractice%2FActivityStatus_Producing_labels.kml#l675
如果我修复了无效的xml(以及编码xml文件的字符报告),它对我有用:
http://www.geocodezip.com/geoxml3_test/thoughtfi_com_geoxmlpractice_practiceIMR2a.html
Here is another example显示“固定”kml
You can also see what Google Maps thinks of your kml:
http://thoughtfi.com/geoxml ...无法显示,因为它不是有效的KML或KMZ文件。