|
POST
|
I created another dataset with two fields. With this dataset I created a FeatureService and update the code a little bit. - changed instance type of ArcGISMapImageLayer to FeatureLayer. - updated following lines of code ``` //!!!!!!!this is not working!!!!!!!!!! DateTime onedate = new DateTime(2018, 1,1, 16, 0, 0); Only pass one date i.e Jan 1st 2018, 4 PM as the date TimeExtent extent = new TimeExtent(onedate); this._mapView.TimeExtent = extent; await this.Lyr.LoadAsync(); this._map.OperationalLayers.Add(this.Lyr); await _mapView.SetViewpointAsync(new Viewpoint(this.Lyr.FullExtent)); //****AND in geoView_Tapped added logic to render point graphics**** if (feature.Geometry.GeometryType == GeometryType.Point) { Graphic gr = new Graphic(feature.Geometry as MapPoint, this._pointSymbol); _gLyr.Graphics.Add(gr); } ``` Note that when data has two fields passing one date means StartTime and EndTime must be same . For e.g for the dataset attached, if I want to query for Jan 1st that both start field or end field should have same date value.
... View more
01-14-2019
05:31 PM
|
0
|
1
|
2083
|
|
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
|
2083
|
|
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
|
2176
|
|
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
|
2176
|
|
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
|
2004
|
|
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
|
3294
|
|
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
|
1504
|
|
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
|
4861
|
|
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
|
2954
|
|
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
|
2954
|
|
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
|
3602
|
|
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
|
3602
|
|
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
|
3602
|
| 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 |
Offline
|
| Date Last Visited |
3 weeks ago
|