|
POST
|
Robert Scheitlin, GISP I am using the Enhanced Locate widget and trying to make a change to add some extra info to the result list and popup. It all seems to be working but the extra lines don't show up in the Results list (popup is as expected). My guess is that there is a style limiting the height or number of lines allowed but I cannot seem to find. Any thoughts on where I should be looking? Thanks -Joe Found it, this gets built out in the custom List object...
... View more
11-22-2019
08:02 AM
|
1
|
0
|
4094
|
|
POST
|
We definitely recommend using the Runtime APIs to take maps/layers offline. Whilst you could do this directly via the REST API you would need to handle authentication, edit validation, error handling etc. yourself. Using the Runtime API takes care of these things for you and also gives access to the other parts of the API for visualizing and analysing your data etc. There are workflows one could use that generate the replicas outside the client mapping application. In these cases using an application that may not use Runtime API may make sense. This is simply for the purpose of generating a replica, obviously for a client mapping application the Runtime API is needed
... View more
11-13-2019
11:18 AM
|
1
|
0
|
547
|
|
POST
|
Not sure what your actual question is.... But basically wherever you are supposed to pass a username and password to get a credential pass in empty strings. This tells the API to use IWA.
... View more
11-12-2019
09:39 AM
|
0
|
0
|
824
|
|
POST
|
Not exactly. When you take a map offline it does not produce a MMPK file. The files are contained in a folder on the device. I believe these are basically the same files contained in an MMPK package, just not packaged. There are two options to take a map offline. Generate and download the package on-demand. This means the user requests the package from the server and all the files are created then downloaded. These packages can take a while to generate (5-10 minutes, or so depending on size of area and amount of data) which can be inconvenient. Generate pre-packaged offline packages in portal or agol and then have client download these. This is far faster, but the number of pre-packaged maps is very limitted (I believe 16 per web map This is incorrect. A feature layer does not need to be hosted to be taken offline. It just needs to be configured correctly. Both versioned and archive enabled, non-versioned data can be taken offline. The service needs to be setup to allow Sync when it is published The simplest way to generate replicas is with Runtime. Each of the above is slightly different, but follow the same pattern and are quite straight forward. There are samples of how to do each in documentation For completeness: The Runtime API is not required to generate offline data. The Runtime API simplifies things greatly, but the Runtime API just wraps a bunch of ArcGIS Server Rest API calls. One could generate replicas using the ArcGIS Server Rest API directly, including doing this from the web interface provided by esri. In the same manner one could sync data using ArcGIS Server Rest API directly.
... View more
11-07-2019
06:26 AM
|
0
|
2
|
4253
|
|
POST
|
I have closed Collector in iOS using the task manager. Heck the device has even rebooted. But Collector is still somehow running in the background. If GPS is turned on/off a notification that the external GPS was disconnected displays. Why is this? How do you really kill Collector completely, I don't want these notifications when the app is closed Thanks -Joe
... View more
11-04-2019
02:43 PM
|
0
|
0
|
424
|
|
POST
|
After further investigation and looking at the output results I found the issue. It seems that when a service is published to AGOL that even though the field Creator already existed it created another field called Creator . How it would allow the creation of a field with the same name as an existing one I am not sure. But the service layer ends up with two fields called Creator . Sqlite is not so liberal in field naming. When the sqlite database is being created and the second Creator field comes along it fails and the table is not created: Job Table Error: Esri.ArcGISRuntime.Data.ServiceFeatureTable : Esri.ArcGISRuntime.ArcGISRuntimeException: The field already exists.: Creator After deleting the extra field from the AGOL service table it generated the table as expected Thanks -Joe
... View more
10-24-2019
01:46 PM
|
0
|
0
|
1715
|
|
POST
|
I would probably just say simplicity. You don't need to do anything to use the SystemLocationDataSource it's already implemented. If you wanted to tie any other location provider into the MapView's LocationDisplay you will have to write a custom LocationDataSource. Not an overly difficult task, but more difficult than doing nothing. -Joe
... View more
10-24-2019
08:27 AM
|
0
|
0
|
1374
|
|
POST
|
Hi, I am taking a map offline in a Xamarin forms app using OfflineMapTask. After the download my Map object does not contain a standalone table that is contained in the WebMap. I have a WPF application uses the same code and in that application the table was in the Map object. We are using 100.6 in the Xamarin application and the WPF was done in 100.4, other than that no differences. Has something changed in 100.6 that requires a new setting in parameters? Thanks -Joe
... View more
10-24-2019
05:49 AM
|
0
|
2
|
1775
|
|
POST
|
Maybe in a another release For now we will just use a list to show the features in the selected area and the user can then select an item to investigate more fully
... View more
10-17-2019
10:28 AM
|
0
|
0
|
1991
|
|
POST
|
I don't do much routing, but my understanding is the M corresponds to a weight of that route. So a two lane hwy would have a higher weight than an interstate, and that is used to compute the best route. Shortest not always being the best
... View more
10-16-2019
02:51 PM
|
0
|
0
|
3411
|
|
POST
|
M is a relative measure of length and can represent any unit of measure. It could be length in feet, or it could be the time it takes a turtle to walk from one point to the next. It is what the creator of the data meant it to mean.
... View more
10-16-2019
02:30 PM
|
0
|
0
|
3411
|
|
POST
|
I really didn't want to display a lot of information, just one or two lines with the button like the Callout, but with an ability to scroll through a set of features that were identified. Then use the button to display a more complete list of attributes in a panel The need stems from having features very close together so being able to tap the single feature is impossible. We already have implemented a select tool to return things as a list in a side panel we can use that same approach for doing an identify, just thought it would be nice to have it done within the map view
... View more
10-16-2019
12:14 PM
|
0
|
2
|
1991
|
|
POST
|
Was hoping to setup a popup in a Xamarin forms application and realize there is no way to add any kind of custom view to the callout. This raises significant issue because if points are really close together there is no way to scroll through the items that could get identified. In WPF and it would seem native iOS there is a way to use a visual element. Is there a reason that Xamarin does not allow for some kind of custom View to be added (or am I missing something). I understand wanting to keep thing simple in what is displayed, but would be nice to have a little more control over what can be displyed
... View more
10-16-2019
10:35 AM
|
0
|
4
|
2207
|
|
POST
|
To move something you just need to update the geometry of the existing feature var feature = //somehow get existing feature
feature.Geometry = myNewGeometry;
await feature.FeatureTable.UpdateFeatureAsync(feature); In terms of how one would actually allow a user to choose an existing polygon and allow the user to move that depends on many factors.
... View more
10-16-2019
07:13 AM
|
0
|
0
|
3846
|
|
BLOG
|
I have only tried to use the nuget package created compiling the github project. Not to actually use the NuGet package at 100.4, I could try that. Currently I cannot navigate to a view that has the Legend control on it. No exceptions, it just won't open the view
... View more
10-16-2019
07:07 AM
|
0
|
0
|
3516
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 05-11-2026 09:07 AM | |
| 1 | 10-23-2025 12:16 PM | |
| 1 | 10-19-2022 01:08 PM | |
| 1 | 09-03-2025 09:25 AM | |
| 1 | 04-16-2025 12:37 PM |
| Online Status |
Offline
|
| Date Last Visited |
3 weeks ago
|