The ArcGIS JavaScript, Flex and Silverlight Web APIs offer a feature layer class for working with client-side graphic features. Feature layers are also used in various forms in ArcGIS Desktop, ArcGIS Explorer and other APIs.
1
vote
0answers
19 views
How to create FeatureLayer without Legend in Table Of Contents (TOC) using ArcGIS Engine?
So what I am trying to accomplish is having a IGroupLayer that contains an IFeatureLayer and in the table of contents (TOC) there would be no + next to the feature layer (i.e. there is no legend). So ...
1
vote
1answer
22 views
Feature Access ArcGIS 10.1 Registered Database Publishing Error
I created a feature class from an XY table in ArcCatalog, and I am trying to publish a feature access enabled map to my server.
When I try, I keep getting a 00090 error which is "feature service ...
0
votes
0answers
16 views
GeoServer with FeatureGrid alpha sorts numeric fields
I'm new to GeoServer so if I miss any information please let me know.
We're running GeoServer v2.2 with FeatureGrid. When a query is run it returns all the rows correctly, but when we try to sort ...
0
votes
2answers
39 views
How to get the a FeatureLayer full extent?
Is there a way to get the extent of a FeatureLayer (with all its features, not only the ones on the map)?
0
votes
0answers
49 views
Arcgis Javascript API FeatureLayer click event and list attributes
I have a javascript application that including FeatureLayers, TiledLayer, DynamicLayer.
I wanna when click a feature layer, clicked object attributes should list in a dom element.
createMap: ...
2
votes
1answer
46 views
Using more than one graphics layer with a FeatureDataGrid
I am wanting to use the FeatureDataGrid to display data. The problem is I have more than one layer that contains data that needs to be displayed.
This is how you use the DataGrid for one layer:
...
0
votes
2answers
39 views
Only Capability appearing is Feature Access
I was wanting to know if anyone could explain why the only capability showing when I try to publish an ArcGIS Service is Feature Access (Picture Below). I am needing to create a service that will ...
0
votes
1answer
75 views
FeatureClass to IFeatureLayer
I am trying to covert my feature class to feature layer so that i can pass "IQueryByLayer" over my feature class.
Till now i have my feature class ---
FeatureClass className = new FeatureClass(cc);
...
1
vote
1answer
27 views
unable to find “attribute” field in “ClassBreaksRenderer ” class
I am trying to run Map ServerLayer sample given on arcgis resource center.When I pasted the code in my FlashBuilder 4.6 then it is showing error on this line <esri:ClassBreaksRenderer ...
2
votes
0answers
66 views
Jsonp Callback error
Recently we have started migrating application from Javascript API 3.1 to 3.5 and we are finding this jsonp error coming sometimes during adding the layer.When we add the layer we also zoom to the ...
1
vote
2answers
79 views
Polyline will not turn into a feature layer via MakeFeatureLayer_management (arcpy)
I've got a python script that is connecting a sequence of points to make lines (script is based on answers to my previous question). To attempt to make subsequent processing more efficient, I would ...
0
votes
1answer
45 views
How to select behind feature which is overlapped with the same layer on QGIS 1.8.0
My issue: I received data which was created without "Avoid intersection of new polygon". There a few overlapped feature with the same layer. I could fine overlapped feature by the spatial query. But ...
0
votes
0answers
42 views
Does the ArcGIS Flex API simplify polygons by default?
I have a feature access map service that I use on an ArcGIS Flex web application.
Some polygons published by the feature service, seem to be "simplified" by the Flex API before they are drawn on the ...
0
votes
1answer
60 views
Legend is stuck on startup()
All my layer URLs and Feature Layers are stored in an array.
with an foreach loop, I am creating the FeatureLayers from the URLs,
dojo.forEach(window.layerUrls, function (info, idx) {
...
6
votes
3answers
307 views
Why is it important to use feature layers in ModelBuilder?
I am trying to understand creation of a geoprocess with ModelBuilder, but I don't know why it's important to use feature layers instead of feature classes when creating a geoprocess with ModelBuilder. ...
2
votes
1answer
73 views
ArcObjects 10/10.1 Get rid of Invalid layer symbol in TOC
I've written an add-in (VS2010, C#) that finds specific invalid feature layers in ArcMap and fixes them. After the layer is fixed, the red invalid symbol still appears in the TOC. An ...
2
votes
1answer
47 views
Do FeatureLayers reproject their features to adapt them to the map projection?
I'm working with the ArcGIS Flex API.
For example, ArcGISDynamicMapLayers do reproject their data in order to make it in the same projection as the map.
Do FeatureLayers have the same behaviour?
1
vote
1answer
113 views
arcpy.mapping Graduated Colors Symbology
I'm trying to figure out how to apply graduated color symbology to a feature class by using arcpy.mapping in ArcMap 10.1.
To start, a script runs and a feature class is added to a map document, no ...
1
vote
1answer
124 views
Querytask/query - executed select
Is there a way to get to the query condition, which is executed under the querytask ?
I have an example, which is actually a copy of this ArcGIS example ...
0
votes
0answers
93 views
Showing info window after clicking part of the map
This question is similar to my previous question, because it's the same example as
Legend showing info for world map.
I have dynamic map service layer containing 8 layers, where only 1 layer is ...
0
votes
0answers
34 views
how to access a feature class in SDE using arcpy [duplicate]
I am new to Python and Arcpy. I am trying to access the SDE server to extract some information from feature classes that reside in the server database. I know the name of the feature class and I also ...
1
vote
1answer
173 views
Cannot input new data into FeatureDataForm
I am wanting to update the fields on my server using a FeatureDataForm. I have followed the documentation, but it still does not work. It also does not have the buttons in the form that say 'OK' and ...
1
vote
0answers
51 views
Interpreting Firebug results on ESRI Javascript feature layers in the NET tab
This was cross-posted to the ESRI Javascript API forum yesterday.
I need help in interpreting what I am seeing and wondering why I'm seeing duplicate features.
I'm using this example: ...
0
votes
1answer
961 views
ESRI Javascript API: setting feature layer selection symbol
This seems like it should be a relatively simple thing to do, but for whatever reason I can't figure it out.
I'm trying to add functionality to select a group of parcels as laid out in this example, ...
1
vote
1answer
73 views
What ArcGIS Online feature layer can I use to display European states with unique country codes?
I'm writing a web page to display ECB statistics on an ArcGIS JavaScript API-based web map.
I'm a bit lost when selecting a feature layer so that I can use the UniqueValueRenderer to make the states ...
2
votes
2answers
44 views
Can MakeFeatureLayer Object be Passed into ExportReport Function Layer Parameter?
I'm trying to pass an in memory layer object created from a feature class using
Code:
arcpy.MakeFeatureLayer_management()
into the
Code:
arcpy.mapping.ExportReport()
function. It's erroring out, ...
1
vote
0answers
236 views
ArcGIS API Javascript - FeatureLayer from json: problem with queries and popup
Hello everybody
I've tried this code proposed by Derek Swingley in JSFIDDLE:
JSFIDDLE-FeatureLayer from JSON
Everything "seems" to work fine, but not always. If you go down to the closer scale (level ...
0
votes
0answers
41 views
Error which are logged in console window
I have Polygon feature layer consisting of 2 lacks of feature but i am displaying few features depending on filter which we apply dynamically.if server returning 1 thousand records also then also it ...
2
votes
1answer
127 views
How to control the rendering priority/order of feature layers?
I am displaying polygon, line and point feature layers on a button click event and adding layers in order based on their geometry type, e.g.: polygon -> line -> point.
In certain cases layers are ...
2
votes
1answer
304 views
HTML5 local storage for tile maps and feature layers using ArcGIS Java Script API
I am developing a mobile arcgis application I want to store data locally so that when a user is offline he/she can use the maps. I want to store tile layers,feature layers and a table data.
Any ...
2
votes
1answer
109 views
How can I select features by map clicks
I'm developing a flex web application using the ArcGIS flex API 3.1.
I have a map with a polyline feature layer. I'd like to be able to select polylines from the map by clicking on the features on ...
2
votes
1answer
148 views
Feature Layer (Polygon) Rendering issue in ArcGIS Server 10.1
I have a feature layer consisting of 96,000 features, but we are displaying a maximum of 13,000 features in our map application. There is an issue that for some zoom levels the features are visible ...
0
votes
0answers
58 views
IF Statement for checking if the user clicked on a graphic in a Feature Layer
I am trying to display information in an InfoWindow when the user clicks on a point on a map. I have the content in the InfoWindow and it is popping up. The only problem is the InfoWindow pops up no ...
1
vote
1answer
207 views
Unable to see the featureLayer but it is present on the map
I have created a featureLayer from featureCollection and I am able to add it to the map and when I execute, map.graphicsLayerIds, it also returns the id of the featureLayer, ["resultLayer"]. But I am ...
1
vote
1answer
377 views
Is there any way to set polygon features fill color and outline programmatically?
By some process I am creating a polygon feature layer. Before adding the layer in the map, I want to set polygon's fill color to no color and set polygon's outline color and width. I am working with ...
4
votes
1answer
362 views
Feature Service layer issues
What is the maximum number of records returned by WFS protocol? What is maximum number of records returned by a Feature Layer in ArcGIS Server 10.1? What is maximum number of records the ArcGIS ...
3
votes
1answer
189 views
How to select several disseminate features with ArcGIS JS API?
I have a cadastral map similar to this one from an ArcGIS Javascript API example:
Cadastral map
What I would like to do is selecting several parcels clicking on them and show the information related ...
3
votes
1answer
300 views
Feature Layer is not showing the points on the map
I have a simple feature layer. The points will show up if I put the URL in a DynamicMapServiceLayer, but I need to use maptips, so that will not work. Below is my relevant XAML. If you need anymore ...
2
votes
3answers
453 views
How to count features in polygon using ArcGIS JS API?
I have published in my ArcGIS Server two layers: A polygon one and a point feature one. Points are contained in polygons.
I would like to know how to count the number of points belonging/contained to ...
1
vote
1answer
516 views
Adding layers using ArcGISDynamicMapServiceLayer
I am right now adding individual layers using FeatureLayer but it takes quite some time to load as the map is for US Counties (3076 count). I tried to load it using ArcGISDynamicMapServiceLayer but I ...
1
vote
1answer
108 views
Custom Layer Properties
I am coding a custom layer for ArcMap using C#. I want the eleven standard property pages to display for the layer (General, Source, Selection, ... , HTML Popup), when the user selects Properties from ...
1
vote
1answer
310 views
Unable to removeLayers from Map
I was trying to create a FeatureLayer from the features returned from the ViewShed GP and I was successful at doing it. So when I click on the map, that featureSet is sent to the GP Tool and the ...
0
votes
1answer
828 views
Feature Layer from JSON file
I would like to project my shapefile information on the maps. I converted my shapefile into a JSON file. How can use the Json file to create a featurecollection object in the ARCGIS Javascript API. ...
2
votes
2answers
627 views
“TypeError: Unable to draw graphic (geometry:null, symbol:null)” after adding tiled and feature layers
I'm seeing the following error when attempting to add a tiled and feature layer to the same map when using the ArcGIS Server JS API 3.1:
TypeError: Unable to draw graphic (geometry:null, ...
0
votes
2answers
437 views
Toggle Visibility of Features in FeatureLayer
How to toggle the visibility of features in a feature-layer using check-boxes .I have grid containing check-boxes in a columns representing each feature in Feature-layer and so if I check off the ...
1
vote
1answer
372 views
Overlaping graphics not visible in featureLayer
I have constructed featureCollection from Json and feature collection has 44 features. I have given this feature collection as input to the Featurelayer which is showing only 32 graphics objects of ...
2
votes
1answer
2k views
automatic zoom to layer in arcgis js api
I'm trying to zoom to layer automatically as soon as the map finishes loading using the guide here. To be clear, I'm only loading one layer and just want to zoom in on one of the layers provided by ...
16
votes
5answers
5k views
What's the difference between feature class and feature layer?
This may be very trivial question. To me they seems very similar in concept. What's the difference between feature class and feature layer?
0
votes
1answer
638 views
Creating an AttributeInspector via JavaScript API v2.7
I'm trying to display an AttributeInspector when I click on an object from a layer. I'm following this sample, but I cannot get it to work.
Here is my sample code:
dojo.require("esri.map");
...
2
votes
1answer
703 views
ARCGIS Javascript API Feature Layer retrieval
I would want to develop an application where we could query the layer based on a result set of certain attributes of the features and highlight features.
Approach
Currently I tried using the feature ...