POST
|
It just return the layer. not features in it. I finally find a solution. with using query, we can select all features within a layer var allQuery = new Query(); allQuery.where = "OBJECTID = OBJECTID"; allQuery.returnGeometry = true; allQuery.outFields = ["*"]; selecteds.queryFeatures(allQuery, function (featureSet){ ... })
... View more
04-18-2016
03:40 AM
|
1
|
0
|
770
|
POST
|
Hi, I have a drawing tool and a buffer tool. both add graphics to map. using: var drawing = new Graphic() map.graphics.add(drawing ); var buffer = new Graphic() map.graphics.add(buffer ); is there any way to clean them separately one for only drawings, another for buffers.
... View more
04-17-2016
05:55 AM
|
0
|
2
|
2485
|
POST
|
Hi, is there any way too get geometries of all features within a feaureLayer. i already do it for selected features by using myLayer.getSelectedFeatures() how can I get all of them?
... View more
04-17-2016
05:52 AM
|
0
|
2
|
2796
|
POST
|
Hi i'm using applyEdits for updating attributes of a featureLayer i need to know the exact acceptable inputs can it be null? or what date format it accepts? YYYY/MM/DD? or something else?
... View more
04-13-2016
12:29 AM
|
0
|
0
|
2207
|
POST
|
Hi, how can i set client id in arcgis server manager? I'm gonna use it in .net api.
... View more
04-06-2016
04:57 AM
|
0
|
0
|
1022
|
POST
|
Hi everyone help me find a way to edit attributes of a featurelayer. but not using attributeInspector widget. sofar I've set an edit button in Popup footer. users click on it and I want them to be able to edit attributes in another Div. so I have the object of that specific element. which looks like this: attributes:Object OBJECTID:"17" Shape:"Point" date:"Null" id:"Null" name:"some Thing" type:"some Type" __proto__:Object geometry:Object spatialReference:Object type:"point" x:5733576.450887503 y:3865276.718386505 __proto__:Object infoTemplate:Object symbol:null __proto__:Object what can i do?
... View more
04-05-2016
01:46 AM
|
0
|
1
|
3001
|
POST
|
for those who still haven't find any solution for this, and problems like that, here's what I've done. you can simply simulate the CLICK trigger which deactivates the activated task, or whatever. use dojo query to target the activated element, then .click() on it. measurementActiveButton = dojo.query(".esriMeasurement .esriButton.esriButtonChecked .dijitButtonNode")[0]
if(measurementActiveButton){
measurementActiveButton.click();
} hope you find it helpful. cheers developers
... View more
04-02-2016
11:39 PM
|
0
|
2
|
1668
|
POST
|
Hi, I'm using arcgis server version on a local computer for my custom application which uses javascript api to load maps, feature layers, editing, etc. I've set some users and roles in manager > security section of arcgis server. Now i want to show a login page on my web application and retrieve roles for the logged in user . I looked through the reference but didn't find a clue. It looks simple for Online version. but I don't know how to do it in my local Server version. where should i start?
... View more
04-02-2016
01:14 AM
|
0
|
0
|
2854
|
Title | Kudos | Posted |
---|---|---|
1 | 04-18-2016 03:40 AM |
Online Status |
Offline
|
Date Last Visited |
11-11-2020
02:24 AM
|