function initialize() {
if (GBrowserIsCompatible()) {
map = new GMap2(document.getElementById("map_canvas"));
map.setCenter(new GLatLng(37.4419, -122.1419), 13);
//看这里
for(var i=0;i<10;i++){
var geocoder = new GClientGeocoder();
geocoder.getLatLng(address,function(point){})
}
//
}
}
我的address是正常,单独是能搜索得到的
是这样的么!?