Skip to content

Commit

Permalink
chore: upgrade maplibre version
Browse files Browse the repository at this point in the history
  • Loading branch information
clementgayvallet committed Sep 19, 2024
1 parent 0244656 commit 6e01129
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,6 @@ dependencies {
implementation("androidx.core:core-ktx:1.13.1")
implementation("androidx.appcompat:appcompat:1.7.0")
implementation("com.google.android.material:material:1.12.0")
implementation("org.maplibre.gl:android-sdk:11.1.0")
implementation("org.maplibre.gl:android-plugin-annotation-v9:3.0.0")
implementation("org.maplibre.gl:android-sdk:11.4.0")
implementation("org.maplibre.gl:android-plugin-annotation-v9:3.0.1")
}
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ class DataMapActivity : Activity() {
.withProperties(
PropertyFactory.iconImage(MARKER_ICON),
PropertyFactory.iconAnchor(Property.ICON_ANCHOR_BOTTOM),
PropertyFactory.iconAllowOverlap(true)
PropertyFactory.iconAllowOverlap(true),
PropertyFactory.iconIgnorePlacement(true)
)

// Add the layer to the map
Expand Down
4 changes: 2 additions & 2 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ pluginManagement {
gradlePluginPortal()
}
plugins {
id("com.android.application") version "8.5.1"
id("com.android.library") version "8.5.1"
id("com.android.application") version "8.6.1"
id("com.android.library") version "8.6.1"
id("org.jetbrains.kotlin.android") version "1.9.23"
}
}
Expand Down

0 comments on commit 6e01129

Please sign in to comment.