How to covert Graphics(point, line,polygon ) into Shape file in arc gis runtime fora java 100.1
This can be easily done with geoprocessing tools. I used arcpy to build a custom GP tool that would take feature set and the output shapefile location and copy features to it.
features = arcpy.GetParameterAsText(0) #featureSet outFeatureClass = arcpy.GetParameterAsText(1) # Shapefile path # Set local variables arcpy.CopyFeatures_management(features, outFeatureClass)
This gpk can be accessed from local or be hosted on your ArcGIS online account.
You might have to handle creating the feature set properly in the runtime app.
Signed in members can post, follow updates, and more. New here? Register a free account.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.