Is there a way to extent the Fields of Shapefile Feature Table, such as adding adding a new Column to the table
I only see how to read
val shapeFileTable = ShapefileFeatureTable(shpPath)
shapeFileTable.load().onSuccess {
val fields = shapeFileTable.fields
fields.forEach {
logj(it.name)
}
}.onFailure {
logj(it.toString())
}
Solved! Go to Solution.
Hi,
Editing of the fields on Shapefile is not supported in Maps SDKs. You can edit so using ArcGIS Pro to add new fields and read them in Maps SDK.
If you are looking for client side data storage options, you can also try creating mobile geodatabases and define the fields of your choice. Here is a sample to create mobile geodatabases.
Thanks
Rama
Hi,
Editing of the fields on Shapefile is not supported in Maps SDKs. You can edit so using ArcGIS Pro to add new fields and read them in Maps SDK.
If you are looking for client side data storage options, you can also try creating mobile geodatabases and define the fields of your choice. Here is a sample to create mobile geodatabases.
Thanks
Rama
thank you