# Module maps-kt-geojson ## Usage ## Artifact: The Maven coordinates of this project are `center.sciprog:maps-kt-geojson:0.2.1-dev-2`. **Gradle Groovy:** ```groovy repositories { maven { url 'https://repo.kotlin.link' } mavenCentral() } dependencies { implementation 'center.sciprog:maps-kt-geojson:0.2.1-dev-2' } ``` **Gradle Kotlin DSL:** ```kotlin repositories { maven("https://repo.kotlin.link") mavenCentral() } dependencies { implementation("center.sciprog:maps-kt-geojson:0.2.1-dev-2") } ```