|
POST
|
Hi Robert, You are right. It is giving null . My code was executed, so I didn't realize it. But when I try to get the properties as below Console.WriteLine(dss.TextFieldNames); I am getting exception. Sorry for that. Nagma
... View more
08-10-2017
02:10 PM
|
2
|
0
|
2854
|
|
POST
|
Hi Robert, I downloaded you file from the link and I used 100.1 .Net API and I don't see any issue. Even the size of the two files are different, both of those works without any issue at my side. Nagma
... View more
08-10-2017
01:43 PM
|
0
|
5
|
2854
|
|
POST
|
Hi Robert, I have Runtime Qt 100 installed, the file "mil2525d.stylx" comes with the installation. So I grabbed the file and used your code in .Net application. it works for me. Not sure whether .stylx file is corrupted. Attached is the file for your reference. Hope that helps. Nagma
... View more
08-10-2017
01:23 PM
|
0
|
7
|
2854
|
|
POST
|
Hi Andrea, VS 2015 includes Xamarin component, to run ArcGIS Runtime .Net, you don't need to install Xamarin separately. Hope that helps. Nagma
... View more
08-10-2017
11:11 AM
|
0
|
1
|
977
|
|
POST
|
Hi, You Bus Map service is a dynamic layer but you added as ArcGISTiledLayer instead ArcGISImageLayer and the SCTransitRouteStops isn't dynamic layer but you added as ArcGISImageLayer. I added the correct way and am able to see your layer. Hope that helps. Nagma
... View more
08-09-2017
03:25 PM
|
1
|
1
|
1090
|
|
POST
|
Hi, First you need to load all the fields of the ServiceFeatureTable using QueryFeatureFields.LoadAll and then call SetAttributeValue() method.. By default, it loads only the minimum fields and I believe that causes the error. FeatureQueryResult queryResult = await _featureTable.QueryFeaturesAsync(queryParams, QueryFeatureFields.LoadAll); I tried at my side and I don't get the error anymore, otherwise I do get the same error. Hope that helps. Nagma
... View more
08-09-2017
09:41 AM
|
0
|
0
|
924
|
|
POST
|
Hi Yan, PictureMarkerSymbol has the height and width and doesn't have any Style propery like SimpleMarkerSymbol. In that case I believe you may create a CompositeSymbol using both SimpleMarkerSymbol with Style "Circle" and PIctureMarkerSymbol as below: ///////// var symbol = new CompositeSymbol(); symbol.Symbols.Add(new SimpleMarkerSymbol() { Style = SimpleMarkerSymbolStyle.Circle, Color = Colors.Blue, Size = 100 }); var symbolUri = new Uri( "http://sampleserver6.arcgisonline.com/arcgis/rest/services/Recreation/FeatureServer/0/images/e82f744ebb069bb35b234b3fea46deae"); PictureMarkerSymbol campsiteSymbol = new PictureMarkerSymbol(symbolUri); campsiteSymbol.Height = 40; campsiteSymbol.Width = 40; symbol.Symbols.Add(campsiteSymbol); // Create location for the campsite MapPoint campsitePoint = new MapPoint(-223560, 6552021, SpatialReferences.WebMercator); // Create graphic with the location and symbol // Graphic campsiteGraphic = new Graphic(campsitePoint, campsiteSymbol); Graphic campsiteGraphic = new Graphic(campsitePoint, symbol); //////// I have used "RendererPictureMarkers" sample to test. Hope that helps. Nagma
... View more
08-07-2017
09:44 AM
|
0
|
1
|
1191
|
|
POST
|
You can use the PolylineBuilder.AddPoint(Double, Double, Double) method to add x,y and z value PolylineBuilder Class --> AddPoint(Double, Double, Double) MultipartBuilder(T).AddPoint Method (Double, Double, Double) Hope that helps. Nagma
... View more
08-04-2017
01:00 PM
|
0
|
2
|
1285
|
|
POST
|
Hi Manel, You may use Polyline.HasZ property to know whether that geometry has the z value. Polyline Properties Hope that helps. Nagma
... View more
08-04-2017
09:05 AM
|
0
|
1
|
1285
|
|
POST
|
Hi Nathan, I believe you could use ArcGISTiledLayer.NoDataTileBehavior to resample the tile layer where the LODs aren't available. ArcGISTiledLayer Class --> NoDataTileBehavior ImageTiledLayer.NoDataTileBehavior Property Hope that helps. Nagma
... View more
08-02-2017
04:15 PM
|
1
|
1
|
962
|
|
POST
|
Hi Yifan, Have you tried to set up GenerateGeodatabaseParameters.AttachmentSyncDirection to sets the direction for the attachments to be synchronized. GenerateGeodatabaseParameters.AttachmentSyncDirection Property Hope that helps. Nagma
... View more
08-02-2017
04:07 PM
|
0
|
1
|
1823
|
|
POST
|
Hi Yifan, I am seeing the same issue at my side while testing with the feature service, Layer: Damage to Residential Buildings (ID: 0) to retrieve the attribute values of the feature(s). I noticed that for the numeric data (field:numoccup), it always gives the same error as you receive. For the string field:"typdamage", doesn't give that error but for the string field: "descdamage" always gives the same error no matter whatever the value is. Best, Nagma
... View more
07-31-2017
05:20 PM
|
0
|
0
|
2064
|
|
POST
|
Hi Yan, I believe you are trying to display the labels in Chinese characters. If that is the case, labels displayed in Chinese language isn't supported yet, that's my understanding. Best, Nagma
... View more
07-28-2017
09:03 AM
|
0
|
1
|
2273
|
|
POST
|
Hi Chax, Have you tried to use ShapefileWorkspace Class. Also for the sub layer source, I think, MapSublayerSource could be used. ShapefileWorkspace Class A shapefile workspace can be used to create a SublayerSource that displays the data from a shapefile. Hope that helps. Nagma
... View more
07-27-2017
11:06 PM
|
0
|
2
|
1697
|
|
POST
|
Hi SK, First you need to create MapViewInteractionOptions() instance and set the navigation property as below: // code based var interactions = new MapViewInteractionOptions() ; interactions.IsZoomEnabled = false; MyMapView.InteractionOptions = interactions; OR If you would like to do through XAML, you could create the instance in XAML : <esri:MapView x:Name="MyMapView"> <esri:MapView.InteractionOptions> <esri:MapViewInteractionOptions IsZoomEnabled = false/> </esri:MapView.InteractionOptions> </esri:MapView> Hope that helps. Nagma
... View more
07-27-2017
06:55 AM
|
1
|
0
|
2089
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 08-02-2017 04:15 PM | |
| 1 | 08-09-2017 03:25 PM | |
| 1 | 11-10-2017 09:37 AM | |
| 1 | 11-13-2017 08:43 AM | |
| 1 | 06-06-2017 07:27 PM |
| Online Status |
Offline
|
| Date Last Visited |
05-31-2024
09:45 PM
|