-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
update new module script to use geo-compose toolkit component #148
Changes from all commits
25b8e02
5e0e282
020edcf
43b6c11
b14cd8d
087e343
a57cbc7
ce55d2a
f3d8f68
40c1f99
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ ext { | |
// ArcGIS Maps SDK for Kotlin version | ||
arcgisVersion = '200.3.0-4075' | ||
// ArcGIS Maps SDK for Kotlin Toolkit version | ||
arcgisToolkitVersion = '200.3.0-4075' | ||
arcgisToolkitVersion = '200.3.0-1' | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. shouldn't this be There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
// SDK versions | ||
compileSdkVersion = 33 | ||
minSdkVersion = 26 | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I like the new module created when the script is used, but I don't think it should require any sample changes. The
DisplayComposableMapView
sample should be a basic implementation of theDisplayMap
sample, i.e. render a map with a basemap style.The module script can spin up a sample with touch event implementation, but let's keep this sample similar to
DisplayMap
with the geo-compose module.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am fine with this change. Although with the previous version of
display-composable-mapview
sample, we did have the touch event implementation in addition to displaying the map with a particular basemap style. Not sure if there was any particular intention of doing it that way back then? But I too feel it should be similar to the display map sample.