|
POST
|
Thomas, Mark the correctly answered questions as resolved.
... View more
09-07-2016
10:25 PM
|
0
|
0
|
1286
|
|
POST
|
Hi Thomas, Since ArcGIS Runtime for Android and Java shares almost the same syntax, please follow these instructions: Sync offline edits—ArcGIS Runtime SDK for Android (Quartz Beta) | ArcGIS for Developers Mind that GeodatabaseSyncTask constructor differs a bit.. Regards, Adam
... View more
09-07-2016
05:03 AM
|
0
|
1
|
1286
|
|
POST
|
Michael, You have to set maximum records returned property for feature layer. You are trying to insert almost 3 000 rows at a single save button click. Please be aware that FeatureService returns only 1000 features by default. I just added the following code featureLayer.setMaximumRecords(100_000); and it works just fine. However, I suggest you consider generalize input shapes you are adding - Generalize or Dissolve Geoporocessing tool - should be just fine. The app performance will boost. As for 1000 features limit, this constraint was removed in the newer ArcGIS for Server releases, However, ArcGIS Runtime 10.2.4 relies on ArcGIS for Server 10.2.2. You should look forward to see 'Quartz' release, the issue should not be present since then. Hope this helps, Adam
... View more
09-07-2016
04:40 AM
|
0
|
0
|
1884
|
|
POST
|
Hi Micheal, Could you describe the workflow of adding the Advanced Graphic? I do not see in the attached mpk any Feature Template for inserting new features. Can you provide as well your code, it would make debugging a lot easier. Regards, Adam
... View more
09-07-2016
12:49 AM
|
0
|
2
|
1884
|
|
POST
|
Indeed, it is already in 4.0. Sample guide: Simple Routing - RouteTask | ArcGIS API for JavaScript 4.0 . Open it in Sandbox and put console.log(routeResult.attributes.Total_Kilometers) in 118 line. Hope this helps, Adam
... View more
08-26-2016
05:14 AM
|
1
|
0
|
845
|
|
POST
|
Here it is: Add graphics and text to graphics overlays—ArcGIS Runtime SDK for Java (Quartz Beta) | ArcGIS for Developers Regards, Adam
... View more
08-25-2016
11:34 PM
|
0
|
0
|
406
|
|
POST
|
Hi Haider, You don't need to develop any SOE. I created the same functionality using Geoprocessing Service (python toolbox) for downloading GPKs. Just use Package Map—Help | ArcGIS for Desktop and expose result as GPDataFile from your service. Invoke the GP service from your client app, specifying for example the current map extent as an input parameter, and download resulting file using any HTTP library of your preference. Best Regards, Adam
... View more
08-23-2016
04:07 AM
|
1
|
0
|
1042
|
|
POST
|
Yes, you can. Just add a stop with specific attribute name and value i.e. CurbApproach 1 More info on: ArcGIS REST API Hope this helps, Adam
... View more
08-23-2016
03:49 AM
|
1
|
1
|
1266
|
|
POST
|
Hi Michael, can you attach your input package files? I will take a look. Regards, Adam
... View more
08-22-2016
02:37 AM
|
0
|
4
|
1884
|
|
POST
|
Hi Thomas, here you are: Portal portal = new Portal("http://www.arcgis.com");
UserCredential credentials = new UserCredential("LogiCaseSensitive", "PasswordCaseSensitive");
portal.setCredential(credentials);
portal.loadAsync();
portal.addDoneLoadingListener(new Runnable() {
@Override
public void run() {
if (portal.getLoadStatus() == LoadStatus.LOADED) {
ListenableFuture<PortalUserContent> content = portal.getPortalUser().fetchContentAsync();
content.addDoneListener(new Runnable() {
@Override
public void run() {
try {
PortalUserContent myContent = content.get();
for (PortalItem item : myContent.getItems()) {
System.out.println("item title " + item.getTitle());
}
} catch (InterruptedException | ExecutionException ex) {
Logger.getLogger(QuartzBeta2.class.getName()).log(Level.SEVERE, null, ex);
}
}
});
}
}
}); More details on: Access portal content—ArcGIS Runtime SDK for Java (Quartz Beta) | ArcGIS for Developers Regards, Adam
... View more
08-11-2016
11:22 PM
|
0
|
2
|
1401
|
|
POST
|
Hi Luke, Why don't you save your configuration to the file on a hard drive and read it on the application startup? Regards, Adam
... View more
08-10-2016
04:32 AM
|
0
|
1
|
713
|
|
POST
|
Sorry for not being enough clear about ArcGIS server beased apps. I meant exactly what Eric said,
... View more
07-31-2016
11:23 PM
|
0
|
0
|
1112
|
|
POST
|
Hi Rebecca, the issue exists when clients are extensively consuming ArcGIS for Server cache tiles, not when creating them. Did anybody encounter such error? Regards, Adam
... View more
07-28-2016
10:37 PM
|
0
|
0
|
1190
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 03-19-2024 12:19 PM | |
| 1 | 05-11-2016 06:36 AM | |
| 1 | 09-28-2023 08:17 AM | |
| 2 | 03-17-2021 12:09 PM | |
| 1 | 05-11-2016 10:40 PM |
| Online Status |
Offline
|
| Date Last Visited |
03-22-2024
10:35 PM
|