YuukiToriyama / japanese-address-parser

日本の住所を都道府県/市区町村/町名/その他に分割するライブラリです
https://yuukitoriyama.github.io/japanese-address-parser/public/index.html
MIT License
3 stars 0 forks source link

`ParseResult`に緯度経度の情報を含める #39

Closed YuukiToriyama closed 1 week ago

YuukiToriyama commented 11 months ago

町名までパースできた場合、geolonia/japanese-addressesからおおよその緯度経度情報が取得できるので、それを返り値に追加したい。

AsIs

struct ParseResult {
    address: Address,
    error: Error,
}

ToBe

struct ParseResult {
    address: Address,
    latlng: LatLng,
    error: Error,
}

struct LatLng {
    latitude: Option<f32>,
    longitude: Option<f32>,
}
YuukiToriyama commented 11 months ago

フラグでON/OFFを切り替えられるようにしておけば、テストコードを書く際に楽ができるかもしれない

YuukiToriyama commented 10 months ago

experimentalとして提供する

YuukiToriyama commented 10 months ago

フィーチャフラグを指定したときのみ

YuukiToriyama commented 1 week ago

v0.1.22で試験的だが導入した