0
こんにちは私はajaxメソッドを使用していないGoogleの例に基づいて作成しようとしている次の関数を持っています。私は思っています。私は今どこかで私が間違っているところを見ている人とやりとりすることができます。Jquery AjaxとGoogle Maps v3 APIマーカー - a {または(
以下の行には問題があるとフラグされていますが、何も問題はありません。
多くありがとうございます。
テラン
// http://code.google.com/apis/maps/articles/phpsqlajax_v3.html
// Change this depending on the name of your PHP file
function showGetResultkml()
{
var result = null;
var scriptUrl = "http://www.kml";
$.ajax({
url: scriptUrl,
type: 'get',
dataType: 'xml',
async: false,
success: function(data) {
result = data;
var xml = data.responseXML;
var markers = xml.documentElement.getElementsByTagName("marker");
for (var i = 0; i < markers.length; i++) {
var name = markers[i].getAttribute("name");
var address = markers[i].getAttribute("address");
var type = markers[i].getAttribute("type");
var point = new google.maps.LatLng(
parseFloat(markers[i].getAttribute("lat")),
parseFloat(markers[i].getAttribute("lng")));
var html = "<b>" + name + "</b> <br/>" + address;
var icon = customIcons[type] || {};
var marker = new google.maps.Marker({
map: map,
position: point,
icon: icon.icon,
shadow: icon.shadow
});
bindInfoWindow(marker, map, infoWindow, html);
}
// problem with this bracket
});
// problem with this bracket
}
function bindInfoWindow(marker, map, infoWindow, html) {
google.maps.event.addListener(marker, 'click', function() {
infoWindow.setContent(html);
infoWindow.open(map, marker);
});
}
}
});
return result;
}
おかげで...ただ、簡単に見て、私は手を見送りカントは何が変わったのか? –
'}'が間違っていました。 –
ああ...ありがとうございました。 –