|
POST
|
I can repro the issue you reported with Hurricane mapservice on sampleserver6. But I am failing to repro the with another time-aware dataset using same repro app. Can you by chance try to test using a different dataset. In the meantime I will try to figure out what's wrong with Hurricanes MapService. Seems like a data related issue.
... View more
01-11-2019
03:10 PM
|
0
|
3
|
2046
|
|
POST
|
Armand, also, it be very useful if you explain your use case for using multiple selection color for different graphic overlays?
... View more
01-07-2019
02:34 PM
|
0
|
2
|
2149
|
|
POST
|
Hello, You are right, AGSGraphicsOverlay.selectionColor has been marked deprecated in the latest released SDK version 100.4 but will still continue to work with 100.4. The new property added is AGSGeoView:selectionProperties. With next release of the SDK, AGSGraphicsOverlay.selectionColorproperty will not work. This has been done to achieve higher rendering performance benefits that come with applying selection color at geoview level. It uses a selection highlight mechanism that can be rendered on the GPU without being dependent on symbol properties or rendering mode and hence is much faster,efficient and performant, especially for dynamic rendering modes. > Is it not possible anymore to have multiple selectionColors? At least for released SDK version 100.4, if you use the new property it is not possible to add multiple selection colors. Let us know if you have any questions or concerns, Preeti
... View more
01-07-2019
09:57 AM
|
1
|
0
|
2149
|
|
POST
|
What version of 100 x series of ArcGIS Runtime SDK .Net are you using . Where is the data hosted ArcGIS Online ( on an org) or on a premise Portal? If on premise, what is version the version of ArcGIS Portal? Is it a hosted feature service? Can you share link to the service ?
... View more
11-14-2018
11:10 AM
|
0
|
0
|
1954
|
|
POST
|
By the description of issue it seems like more of some server configuration that geodatabase file gets deleted. I would recommend checking this link to configure the maximum age of file on server. Please refer to link below Edit a server directory in Manager—ArcGIS Server Administration (Windows) | ArcGIS Enterprise
... View more
11-14-2018
10:43 AM
|
0
|
1
|
3255
|
|
POST
|
If you know the table name or display name of the table, you can check if table exists in a geodatabase. ``` var gdb = await Geodatabase.OpenAsync(localFilePath); var tb=gdb.GeodatabaseFeatureTables.Select(a => a.DisplayName == "Lines_Sync2"); if (tb != null) MessageBox.Show("Table exists"); ```
... View more
11-09-2018
04:06 PM
|
2
|
1
|
1483
|
|
POST
|
Hello Damien, MapView has a method called SetViewpointGeometryAsync that takes a geometry for setting the viewpoint and as well as a margin/padding value. I think that's what you are looking for. example code ``` var curExtent = mv.GetCurrentViewpoint(ViewpointType.BoundingGeometry).TargetGeometry; await mv.SetViewpointGeometryAsync(curExtent, 100); ```
... View more
01-09-2018
09:35 AM
|
0
|
1
|
4787
|
|
POST
|
>"The issue though is that even for the queries that work, the return features still have the geometries, although the flag was set the false. This makes me think the flag is not being honored." This should not happen, I will look into it. >I did notice the results returned almost immediately using this approach vs. just calling QueryFeaturesAsync(). Is that expected? Is the the most efficient way to query an online service? Well, that also should not happen, the response time should be same. Although with ManualCache, subsequent layer operations will be little faster as there is no http traffic to fetch the more data. Is it possible to share the service end point? Also share the code snippet that didn't work. I will give a closer look and let you know.
... View more
10-19-2017
09:44 AM
|
0
|
2
|
2874
|
|
POST
|
Hello Chad, Two questions: What version on Quartz are you using? Are you using Manual Cache and using PopulateFromServiceAsync() to populate the data? --Preeti
... View more
10-19-2017
08:55 AM
|
0
|
6
|
2874
|
|
POST
|
ArcGIS 100.1 supports viewing SceneLayerPackages. But is not same as accessing a .mpk that requires use of local server. You can add/view the Slpk from a sceneview but won't be able to access a layer in that package.
... View more
07-26-2017
09:59 AM
|
0
|
0
|
3533
|
|
POST
|
Actually I gave a quick try with you sample mpk. It appears to have a featurelayer with geometry type multipatch which isn't supported in current release. Support for multipatch is slated in the plan for future releases but has no specified timeline though.
... View more
07-25-2017
05:33 PM
|
0
|
2
|
3533
|
|
POST
|
Sure, I will try with the mpk and let you know what I find.
... View more
07-25-2017
05:15 PM
|
0
|
0
|
3533
|
|
POST
|
In general, to Open an MMPK and access a layer, you could use the following code: mmpk = await MobileMapPackage.OpenAsync(mmpkPath); Esri.ArcGISRuntime.Mapping.Map map = mmpk.Maps[0]; var opLayers = map.OperationalLayers; Layer layer = opLayers[0]; ... ... To render 3D symbols you would need a SceneView. I am not sure what is the type of data in your Geom3D layer so can't really tell for sure what will happen. If it is possible to share the data , then share the MMPK and I can give a quick try with your data.
... View more
07-17-2017
02:00 PM
|
0
|
8
|
3533
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 06-11-2025 03:29 PM | |
| 2 | 09-04-2025 04:44 PM | |
| 1 | 04-14-2025 10:39 AM | |
| 1 | 12-17-2024 01:28 PM | |
| 1 | 01-16-2025 02:56 PM |
| Online Status |
Online
|
| Date Last Visited |
yesterday
|