maps-kt/maps-kt-geojson
2023-05-06 15:39:58 +03:00
..
api Prepare for 0.2.2 release 2023-05-06 15:39:58 +03:00
src Split points and multiline 2023-02-13 16:49:36 +03:00
build.gradle.kts Add trajectory-kt 2023-04-06 10:03:38 +03:00
README.md Prepare for 0.2.2 release 2023-05-06 15:39:58 +03:00

Module maps-kt-geojson

Usage

Artifact:

The Maven coordinates of this project are center.sciprog:maps-kt-geojson:0.2.2.

Gradle Groovy:

repositories {
    maven { url 'https://repo.kotlin.link' }
    mavenCentral()
}

dependencies {
    implementation 'center.sciprog:maps-kt-geojson:0.2.2'
}

Gradle Kotlin DSL:

repositories {
    maven("https://repo.kotlin.link")
    mavenCentral()
}

dependencies {
    implementation("center.sciprog:maps-kt-geojson:0.2.2")
}