|
POST
|
Have you tried just changing the map's spatial reference like: map.spatialReference = new esri.SpatialReference({ wkid: 4326, latestWkid: 4326 })
... View more
08-31-2016
03:14 AM
|
1
|
0
|
1187
|
|
POST
|
No need to change the request type then. Have you evaluated the JSON string? You could Json Parser Online for the job.
... View more
08-31-2016
03:06 AM
|
0
|
2
|
2598
|
|
POST
|
Hi Liu, can you please explain what you don't understand about the contains function? (Polygon | API Reference | ArcGIS API for JavaScript 3.17 ) The point parameter you pass to the function must be a valid point object with a spatial reference defined (https://developers.arcgis.com/javascript/3/jsapi/point-amd.html#point1).
... View more
08-30-2016
02:58 AM
|
1
|
0
|
1097
|
|
POST
|
If the Web Map JSON is too large (> 2000 characters) the request must be a POST request. See the comments by Jian Huang in this post: https://community.esri.com/thread/67868#post355575
... View more
08-30-2016
02:15 AM
|
2
|
4
|
2598
|
|
POST
|
You can use the "on" event for the graphics layer to access the graphics properties e.g. mygraphicslayer.on("click", function(event) {
// do stuff
}); Also have a look at the other graphics layer events: GraphicsLayer | API Reference | ArcGIS API for JavaScript 3.17
... View more
08-30-2016
01:58 AM
|
1
|
1
|
2677
|
|
POST
|
Do you want to select by geometry or attribute? The Query and Identify tasks can both return the geometries of the results.
... View more
08-29-2016
06:25 AM
|
0
|
3
|
2677
|
|
POST
|
Change the Feature Layer name after loading and before initializing the legend: featureLayer.title = "My Title";
... View more
08-29-2016
06:12 AM
|
2
|
1
|
2760
|
|
POST
|
Here's a blog post from 2010 that describes how you can do it with Python: Handling XML with Python in ArcGIS | ArcGIS Blog
... View more
08-29-2016
03:04 AM
|
1
|
1
|
2318
|
|
POST
|
And the results of the Query/Identify Task can be added to the map as part of a Graphics Layer (GraphicsLayer | API Reference | ArcGIS API for JavaScript 3.17 )
... View more
08-29-2016
02:55 AM
|
1
|
5
|
2677
|
|
POST
|
Can you provide more information on your ArcGIS Server version and the feature service? You are limited to 4,000 polygons as stated in the API documentation (FeatureLayer | API Reference | ArcGIS API for JavaScript 4.0 😞 For layers created from hosted feature services published to ArcGIS Online or ArcGIS for Server 10.3 or later, the number of features displayed in the view is limited to 16,000 for points, and 4,000 for lines and polygons. To display more than the maximum number of features in the view for large datasets, it is recommended you use either aTileLayer if adding the data to a MapView or a SceneLayer if adding data to a SceneView.
... View more
08-29-2016
01:53 AM
|
0
|
0
|
1608
|
|
POST
|
You can do a normal Query Task (QueryTask | API Reference | ArcGIS API for JavaScript 3.17 ) or IdentifyTask (IdentifyTask | API Reference | ArcGIS API for JavaScript 3.17 ) on the REST endpoint of the cached service..
... View more
08-28-2016
11:56 PM
|
1
|
7
|
2677
|
|
POST
|
Then just do a join on your original layer with the merged values from the output table.
... View more
08-22-2016
06:13 AM
|
0
|
0
|
1658
|
|
POST
|
See reply to your other post: https://community.esri.com/thread/181767-arcpython-work-with-table For the sorting part use multiple fields.
... View more
08-22-2016
06:07 AM
|
0
|
0
|
1069
|
|
POST
|
You could split the value into 2 new fields and then do a Summarize on the "a1" column and select First record (if the records are permanently sorted on the second part). So first create 2 new fields - a text field and an integer field. Then run the split in the field calculator: Field 1 - !Value!.split(" ")[0] Field 2 - int( !Value!.split(" ")[1] ) Then do a permanent sort on the second split field. Then do the summarize on the first split field With the output table looking like this
... View more
08-22-2016
06:03 AM
|
1
|
2
|
1658
|
|
POST
|
Have you tried the query using the fields aliases i.e. "Field Name", "Table Name" etc?
... View more
08-22-2016
05:17 AM
|
1
|
1
|
2773
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 03-22-2024 12:37 AM | |
| 1 | 10-02-2025 10:28 AM | |
| 1 | 09-17-2024 12:29 AM | |
| 1 | 03-15-2024 11:33 AM | |
| 1 | 03-13-2024 11:20 PM |
| Online Status |
Offline
|
| Date Last Visited |
06-02-2026
12:31 AM
|