Tagged Questions
2
votes
1answer
34 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 ...
0
votes
1answer
44 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) {
...
1
vote
1answer
68 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
65 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
1answer
535 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
61 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 ...
1
vote
0answers
194 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
31 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
92 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
236 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
130 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 ...
1
vote
1answer
176 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 ...
4
votes
1answer
294 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
132 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 ...
2
votes
3answers
338 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
404 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
238 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
695 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
519 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
370 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
325 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 ...
1
vote
1answer
1k 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 ...
0
votes
1answer
563 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
0answers
626 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 ...
3
votes
1answer
2k views
Adding a FeatureLayer ARCGIS JavaScript API
Hi I am currently exploring ARCGIS Javascript API. I have my own map services and feature services up on my local server. I would want to use the FeatuerLayer to select and highlight feature on the ...
3
votes
1answer
403 views
How do I use a toggle button with the ESRI javascript api
I am trying to use two toggle buttons which have been added to a map to toggle layers on and off in my simple web application. I am having problems getting the toggle button to respond when clicked or ...
4
votes
0answers
2k views
Populate an existing popup with an AttributeInspector after RelationshipQuery returns results
Here's the workflow: A user selects a feature layer polygon, views a popup. A link added to the popup will run a RelationshipQuery to view related records. How can I get the RelationshipQuery results ...
2
votes
1answer
3k views
How to Zoom to a FeatureLayer Using ArcGIS Javascript API
I am making a web application using the Javascript API and am trying to zoom to a feature layer from a row click in a dojo data grid. I have this working for a dynamic layer, but am having issues with ...
2
votes
1answer
772 views
How to vary the infoWindow size for different feature layers
I have multiple feature layers on the map, and I wish to display a different sized infoWindow for each layer.
As far as I can tell, the map has one infoWindow, which can be resized using:
...
1
vote
1answer
154 views
Does a graphic or graphicsLayer support time-awareness?
In the ArcGIS Server JavaScript API 2.6 I'm looking to implement map graphics. I can't see whether they support time-awareness.
The help entry for graphicsLayer doesn't mention timeInfo, which is ...