POST
|
I was looking for an way to get the list of all the features, from an ENC layer, while looking through coding samples I came across Select ENC features | ArcGIS for Developers In this sample code we have MapView.IdentifyLayersAsync and MapView.IdentifyLayerAsync methods, both these methods return Task<IReadOnlyList<IdentifyLayerResult>> and Task< IdentifyLayerResult> respectively and we can then get features from the GeoElements, but both these methods require Point as input parameters, How can we do this without providing the point i.e. get all the features of a ENC layer and is it possible to toggle their visibility in MapView (specially in java 100.7.0)? Thanks in Advance
... View more
02-01-2020
12:01 AM
|
1
|
1
|
77
|
POST
|
I have been asking few questions regarding the ArcGIS Runtime Licensing from my local ArcGIS distributor but they haven't replied for many days and also I found this question https://community.esri.com/thread/164451, now these questions are Is Developer required to purchase application Runtime License for every application distributed? For example, we develop an app and want to distribute it to 10 devices, do we need just one developer license and then we can distribute as many as we can? Or we need license for each device i.e. 10 licenses? Please elaborate this "per app/per device".?
... View more
11-02-2018
01:38 AM
|
0
|
6
|
1804
|
POST
|
I am developing an application with ArcGIS Runtime SDK for .Net and following the MVVM Pattern, in my ViewModel I have an ObservableCollection of GraphicsOverlay that I have binded to the MapView in my View, now when I add a new GraphicsOverlay to the ObservableCollection and add Graphics in it, graphics are not reflection in the View, I have implemented INotifyPropertyChanged and all other things are working fine with the ViewModel public class MapViewModel : BaseViewModel { private Map map; public Map Map { get { return this.map; } set { this.map = value; } } public ObservableCollection<GraphicsOverlay> GraphicsOverlays { get; set; } public MapViewModel() { GraphicsOverlays = new ObservableCollection<GraphicsOverlay>(); } And in my Method that is called by any event public void UpdateMarker(MapPoint point) { GraphicsOverlays[0].Graphics.Clear(); // Create a symbol to symbolize the point SimpleMarkerSymbol symbol = new SimpleMarkerSymbol(SimpleMarkerSymbolStyle.X, System.Drawing.Color.Yellow, 20); // Create the graphic Graphic symbolGraphic = new Graphic(point, symbol); // Add the graphic to the graphics overlay var newGraphicsOverlay=new GraphicsOverlay(); GraphicsOverlays[0].Graphics.Add(symbolGraphic); } And in my View I have <esri:MapView x:Name="MyMapView" Grid.Column="0" DataContext="{StaticResource MapVM}" GraphicsOverlays="{Binding GraphicsOverlays}" Map="{Binding Map}" Cursor="{Binding MapViewCursor}"> I am unable to find any sample that does exactly this, so how to do this, I am new to arcGIS, Thanks in advance.
... View more
10-31-2018
04:13 AM
|
0
|
3
|
497
|
Online Status |
Offline
|
Date Last Visited |
11-11-2020
02:25 AM
|