ありがとうございます。↑このサイトを参考に都道府県や市町村にわけることができました!!
var geocoder = new GClientGeocoder();
geocoder.getLocations(point, function(addresses) {
if (addresses.Status.code == 200) {
var result = addresses.Placemark[0];
window.alert(result.address);//住所
window.alert(result.AddressDetails.Accuracy);//精度
window.alert(result.AddressDetails.Country.CountryNameCode);// JPと
か
window.alert
(result.AddressDetails.Country.AdministrativeArea.AdministrativeAreaName); //
都道府県
window.alert
(result.AddressDetails.Country.AdministrativeArea.Locality.LocalityName); //
市区
window.alert
(result.AddressDetails.Country.AdministrativeArea.Locality.DependentLocality.DependentLocalityName); //
町村
window.alert
(result.AddressDetails.Country.AdministrativeArea.Locality.DependentLocality.Thoroughfare.ThoroughfareName); //
丁目他
}
});