|
POST
|
Hi, Unfortunately angle is not currently supported with 3d labels. We have that in the backlog though.
... View more
01-26-2016
03:13 AM
|
0
|
0
|
859
|
|
POST
|
Hi Oliver, It seems that we don't have public API to control the zoom / pan factors at the moment. I have created enhancement issue to add those in the future.
... View more
01-25-2016
07:02 AM
|
1
|
0
|
805
|
|
POST
|
Thanks for the feedback. It seems that it's mentioned in https://developers.arcgis.com/net/desktop/api-reference//html/P_Esri_ArcGISRuntime_Location_LocationDisplay_AutoPanMode.htm but it's not mentioned in the guide documentation https://developers.arcgis.com/net/desktop/guide/show-device-location.htm. I'll make a note to document the options better.
... View more
01-25-2016
06:57 AM
|
0
|
1
|
2036
|
|
POST
|
Hi Oliver, I think that you need to copy the feature as a graphic to GraphicsOverlay and define your custom selection symbol as a symbol for that one. Also you might want to hide the selected feature from the FeatureLayer using featureLayer.SetVisibility method. There is a bit more code involved with this approach but it gives you full control what is shown with what symbols and when.
... View more
01-25-2016
05:42 AM
|
2
|
1
|
1615
|
|
POST
|
Hi Jim, Have you ran 'Location Display' sample where you can see how modes are working? Basically when you are running LocationDisplay with Mode = Navigation, the device is staying in the same location all the time and map and it's rotation is set by the values you get from the location provider. That is what you can often see in navigators / 'driving mode'. You can start panning again but that will change the mode to Off. If you want to disable panning you can use MapView.NavigationOptions to define correct interaction model for the situation. Mode Navigation is designed so that you can always see your location in the map but if you start panning around, it means that the you are changing the mode. After panning around, you can reset the mode to navigation and the map pans to the correct location again. I think that Navigation should work well for you. If you use mode Default, you can pan around while the mode stays as default. If you need to customize the experience, you could use default mode and hook into the location changed / navigation completed events and move the map how you like.
... View more
01-25-2016
05:13 AM
|
0
|
3
|
2036
|
|
POST
|
Hi Matt, I would a bit more information to be able to comment. Doing multiple queries from several layers shouldn't affect the query results.
... View more
01-25-2016
02:00 AM
|
0
|
1
|
2105
|
|
POST
|
Actually, create new wpf solution, add ArcGIS Runtime from nuget package, build. Move to bin folder and open arcgisruntime10.2.6 folder. Delete client64 folder. Copy arcgisruntime10.2.6 folder to your own application bin/output folder and test. That should work.
... View more
01-21-2016
06:06 AM
|
1
|
1
|
1636
|
|
POST
|
Have you thought of using Nuget package instead of SDK install? When you build solution with nuget install, it will copy the minimal deployment to the output folder. This should work well if you don't use any extensions. Have a look https://developers.arcgis.com/net/desktop/guide/deployment.htm and all way on the bottom is some information what you need to do if you want to copy the files manually. Sounds like you don't need the local server folders.
... View more
01-21-2016
06:02 AM
|
0
|
2
|
1636
|
|
POST
|
Hi Tony, Could you provide simple reproducer for this issue so I can have a look what's going on? cheers
... View more
01-21-2016
02:28 AM
|
0
|
0
|
2371
|
|
POST
|
You need to sign in to the system (online) to get the access to the services so if you have deployment license for runtime, you don't automatically get access to the services in Online. But if you have named user and you use that, you have access to them.
... View more
01-21-2016
02:26 AM
|
0
|
0
|
1777
|
|
POST
|
Hi, Can you provide more information on this case since this shouldn't not happen. If you can create a simple reproducer and attach to the thread, I'll give a look for it and see what's going on.
... View more
01-21-2016
01:18 AM
|
0
|
1
|
2105
|
|
POST
|
10.2.6 release doesn't support VS2015 since it was released before 2015 got live. We are now working to get 10.2.7 out which will support VS2015. If you need to prepare deployment before that, you can create it by hand but I suggest waiting 10.2.7 if possible.
... View more
01-21-2016
01:17 AM
|
0
|
5
|
1636
|
|
POST
|
We have some demos that we have done using external devices like this one but this question should be targeted to the companies that provides the devices and tools to use them. https://github.com/Esri/arcgis-runtime-demos-dotnet/tree/master/src/ExternalNmeaGPS
... View more
01-20-2016
07:04 AM
|
0
|
1
|
2652
|
|
POST
|
What comes to the services, you should be checking the services hosted in ArcGIS Online. If you are looking export functionality, you can for example check http://www.arcgis.com/home/item.html?id=226d23f076da478bba4589e7eae95952 or http://www.arcgis.com/home/item.html?id=e384f5aa4eb1433c92afff09500b073d. There are other services also available.
... View more
01-20-2016
05:40 AM
|
0
|
2
|
1777
|
|
POST
|
You can sideload used TPKs that can be created many ways in the ArcGIS system (ArcMap, Geoprosessing etc, runtime). Extracting tiles is way to do that from the runtime but from consuming point of view, there are much more options. Especially if you are building desktop application that has basically access to all files without issues. There are several ways to get the tpks into the device from downloading pre-generated files from server / ArcGIS Online or you can use for example USB disks to copy the data (assuming that the amount of the data is going to be fairly large ). The layers can just reference to the tpk file. You can ofc do that from code. There is also some information about this on the guide documentation. <UserControl x:Class="ArcGISRuntime.Samples.Desktop.ArcGISLocalTiledLayerSample"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:esri="http://schemas.esri.com/arcgis/runtime/2013">
<Grid>
<esri:MapView>
<esri:Map>
<esri:ArcGISLocalTiledLayer Path="..\..\..\samples-data\basemaps\campus.tpk" />
</esri:Map>
</esri:MapView>
</Grid>
</UserControl>
... View more
01-20-2016
05:31 AM
|
0
|
3
|
1777
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 11-12-2014 03:52 AM | |
| 1 | 08-27-2015 03:47 AM | |
| 1 | 12-08-2014 09:58 AM | |
| 1 | 05-05-2015 10:19 AM | |
| 1 | 07-30-2015 08:43 AM |
| Online Status |
Offline
|
| Date Last Visited |
11-11-2020
02:23 AM
|