2023-01-12 11:52:54 +03:00
|
|
|
# Module kmath-core
|
|
|
|
|
|
|
|
The core interfaces of KMath.
|
|
|
|
|
|
|
|
- [osm](#) : OpenStreetMap tile provider.
|
|
|
|
|
|
|
|
|
|
|
|
## Artifact:
|
|
|
|
|
2023-05-06 15:39:58 +03:00
|
|
|
The Maven coordinates of this project are `center.sciprog:maps-kt-compose:0.2.2`.
|
2023-01-12 11:52:54 +03:00
|
|
|
|
|
|
|
**Gradle Groovy:**
|
|
|
|
```groovy
|
|
|
|
repositories {
|
|
|
|
maven { url 'https://repo.kotlin.link' }
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2023-05-06 15:39:58 +03:00
|
|
|
implementation 'center.sciprog:maps-kt-compose:0.2.2'
|
2023-01-12 11:52:54 +03:00
|
|
|
}
|
|
|
|
```
|
|
|
|
**Gradle Kotlin DSL:**
|
|
|
|
```kotlin
|
|
|
|
repositories {
|
|
|
|
maven("https://repo.kotlin.link")
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2023-05-06 15:39:58 +03:00
|
|
|
implementation("center.sciprog:maps-kt-compose:0.2.2")
|
2023-01-12 11:52:54 +03:00
|
|
|
}
|
|
|
|
```
|