A library for formatting addresses.
This project uses the address templates from OpenCage to format addresses.
This library has only the kotlin standard library and Mustache.java (needed to format the address template) as dependencies.
For Java 11 and above.
Add the library to your dependencies.
Gradle (Kotlin)
dependencies {
implementation("com.bettermile:address-formatter-kotlin:0.3.1")
}
Gradle (Groovy)
dependencies {
implementation 'com.bettermile:address-formatter-kotlin:0.3.1'
}
Maven
<dependency>
<groupId>com.bettermile</groupId>
<artifactId>address-formatter-kotlin</artifactId>
<version>0.3.1</version>
</dependency>
val formatter = AddressFormatter(abbreviate = false, appendCountry = false)
val components = mapOf(
"country_code" to "US",
"house_number" to "301",
"road" to "Hamilton Avenue",
"neighbourhood" to "Crescent Park",
"city" to "Palo Alto",
"postcode" to "94303",
"county" to "Santa Clara County",
"state" to "California",
"country" to "United States",
)
println(formatter.format(components))
/*
301 Hamilton Avenue
Palo Alto, CA 94303
United States of America
*/
val abbreviateFormatter = AddressFormatter(abbreviate = true, appendCountry = false)
println(abbreviateFormatter.format(json))
/*
301 Hamilton Ave
Palo Alto, CA 94303
United States of America
*/
val appendCountryFormatter = AddressFormatter(abbreviate = false, appendCountry = true)
println(appendCountryFormatter.format(json))
/*
301 Hamilton Avenue
Palo Alto, CA 94303
United States of America
*/
This project is licensed under the Apache 2.0. See the LICENSE for details.