私はこのコードを持っています
address = "11533"
geocoder.geocode({"address" : address}, function(results, status)
{
if(status == google.maps.GeocoderStatus.OK)
{
map.setCenter(results[0].geometry.location);
var marker = new google.maps.Marker({
map: map,
position: results[0].geometry.location
});
var str = results[0].formatted_address + "";
var info = new google.maps.InfoWindow({
content : str
});
google.maps.event.addListener(marker, "click", function()
{
info.open(map, marker);
});
}
else
alert("Error in address");
都市の人口とその市外局番に関する情報を追加したいと思います。何か助けはありますか?
ありがとう