|
POST
|
You can use ArcGIS.com to access the Collector or you can use the on premise solution - Portal for ArcGIS. Here is a great video Ismael created using his 10.2.2 server and Portal for ArcGIS and how you can use it with the Collector app. http://video.arcgis.com/watch/3474/using-collector-for-arcgis-with-arcgis-server-1022 Russ
... View more
06-03-2014
10:36 AM
|
0
|
0
|
1572
|
|
POST
|
The server must be 10.2.2 and all content must be downloadable. If you are using map services you must have export tiles enabled and feature services need to have sync enabled. The app will not skip over layers that cannot be downloaded. Russ
... View more
06-03-2014
08:43 AM
|
0
|
0
|
760
|
|
POST
|
The script currently is only supporting created features. Features that have been edited will appear in a list for each edit and the script will not handle the duplicate features. How large of sync are you trying to do? Thanks Russ
... View more
06-03-2014
08:41 AM
|
0
|
0
|
1949
|
|
POST
|
Currently this is not possible. We are building in support for feature search that will mirror what Explorer for ArcGIS has today. You will be able to search features that have been configured correctly in the web map and using the search tool you could find those features. Russ
... View more
06-03-2014
08:39 AM
|
0
|
2
|
1479
|
|
POST
|
-The geodatabase cannot concatenate together multiple domains for one field. A field will only be able to point to one domain at a time. - You could do some level of branching with setting up the state as a subtype value on the feature class in the database and then have the city field point to that states cities domain. -The auto-generating a number incrementally is not supported today but it is something we are thinking about for creating in a smarter popup experience. What exactly would you be using this for. Hope this helps Russ
... View more
06-02-2014
12:16 PM
|
0
|
0
|
787
|
|
POST
|
You could use subtypes and domains to define this model, or in the app you can enable continuous collect under the apps settings and when you collect data you can choose to copy the attributes from the previous feature but give it a new location. Russ
... View more
06-02-2014
07:53 AM
|
0
|
2
|
1229
|
|
POST
|
when you tap on a feature and you get the popup in the side panel you can tap on the Up arrow icon on the popup and you will get the option to edit a feature on the iPad. Russ
... View more
05-30-2014
02:46 PM
|
0
|
0
|
455
|
|
POST
|
are you using arceditor or arcinfo? If you are using arcinfo you can just enter in that instead of arceditor and try rerunning it. Russ
... View more
05-28-2014
01:06 PM
|
0
|
0
|
1780
|
|
POST
|
Here is the python script..watch out for any white spaces that may be generated when copying and pasting..onnce the KB article is released I will point to that support page. First copy the .geodatabase file to your computer. You can get to the .geodatabase file under the ArcGIS_Collector folder > offline data > folder with user account name associated with downloaded data > folder with the webmap id > copy the .geodatabase and you paste it onto your computer.
def main(argv):
input_gdb = 'Enter .geodatabase location'
output_gdb = 'Enter in an existing fgdb location you want data to be exported into'
try:
opts, args = getopt.getopt(argv,"hi:o:",["ifile=","ofile="])
except getopt.GetoptError:
print 'test.py -i <input_gdb> -o <input_gdb>'
sys.exit(2)
for opt, arg in opts:
if opt == '-h':
print 'test.py -i <input_gdb> -o <output_gdb>'
sys.exit()
elif opt in ("-i", "--ifile"):
input_gdb = arg
elif opt in ("-o", "--ofile"):
output_gdb = arg
print 'Input gdb is: "', input_gdb
print 'Output gdb is: "', output_gdb
Temp_xml = "temp.xml"
# Delete the xml workspace document if it exists.
arcpy.Delete_management(Temp_xml)
# Export XML Workspace Document
arcpy.ExportXMLWorkspaceDocument_management(input_gdb, Temp_xml, "DATA", "BINARY", "METADATA")
# Import XML Workspace Document. This assumes that the outputfile geodatabase is EMPTY.
arcpy.ImportXMLWorkspaceDocument_management(output_gdb, Temp_xml, "DATA", "")
# Delete the xml workspace document if it exists.
arcpy.Delete_management(Temp_xml)
if __name__ == "__main__":
main(sys.argv[1:])
... View more
05-28-2014
10:19 AM
|
0
|
8
|
4087
|
|
POST
|
Change the file directories from '\' to '\\' and see if you can get it working.
... View more
05-28-2014
10:18 AM
|
0
|
0
|
1780
|
|
POST
|
I do not know why you are seeing that message. I would recommend you posting this in the AGOL forums here: http://forums.arcgis.com/forums/30-ArcGIS-Online Russ
... View more
05-28-2014
08:03 AM
|
0
|
0
|
639
|
|
POST
|
What errors are you seeing? I have had other people able to use it without any issue. Are the file directories formatted correctly? Russ
... View more
05-27-2014
10:11 AM
|
0
|
0
|
1780
|
|
POST
|
Can you share your map and service with me and I can take a look into the issue? Thanks Russ
... View more
05-27-2014
06:50 AM
|
0
|
0
|
566
|
|
POST
|
Are you able to login with the admin account once the account setting as been disabled? Russ
... View more
05-26-2014
12:14 PM
|
0
|
0
|
920
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 01-23-2023 01:23 PM | |
| 2 | 07-06-2026 10:00 AM | |
| 2 | 07-06-2026 07:58 PM | |
| 1 | 07-01-2026 08:07 AM | |
| 4 | 06-30-2026 01:17 PM |
| Online Status |
Offline
|
| Date Last Visited |
yesterday
|