var address = "福岡タワー"; // addressは住所だけでなく、建物名等も可
var geocoder = new GClientGeocoder();
geocoder.getLatLng( address, function( point ) {
if( point ) {
// ジオコーディング成功時
alert( "経度:" + point.x + ", 緯度:" + point.y );
} else {
// ジオコーディング失敗時
}
});