|
POST
|
Hello everyone, I want to ask how to do this idea. I have a layer with a undetermined quantity of points that i want to group with a ration of 20 points per :1 group. I dont mind the group qtty, i just mind the qtty of points that each group will have. Is there a way to make this, even with a geoprocessing tool of a geoprocessing scheme that i need to follow? Thanks in advice for all the help
... View more
10-27-2016
07:07 AM
|
0
|
1
|
1406
|
|
POST
|
I have another question about objectid field. I know this field is able to handle 2.147.483.647 of storage, so my question is, when u use all of them, what will happen? how arcgis handle this?
... View more
10-20-2016
11:50 AM
|
0
|
1
|
2287
|
|
POST
|
Ok, but that is something that i need to handle through code and its something that i would prefer that the db server do it for me, same like the objectid that it returns. It is like theres no way to set some config on the layer where im adding that return a AI value defined by me as a response instead the objectid?
... View more
10-20-2016
06:29 AM
|
0
|
1
|
2287
|
|
POST
|
Hello, Im wondering if theres a way to get a custom value as response when u add a new feature in a layer?, cuz the value i can get is the objectid that is not always autoinc and correlative. The thing is i want to get some custom value that i define to the service when add, like an unique and alphanumeric ID that i made for it cuz the objectid as a return to me now its a little bit useless on the logic that i want to have in my app.
... View more
10-20-2016
06:00 AM
|
0
|
6
|
2993
|
|
POST
|
Its like i dont want to avoid it, but in flex we just put it one time the user and pass and we load all the default layers we wanted the user see as default. Is there a way to do that? Thanks!
... View more
09-29-2016
12:53 PM
|
0
|
1
|
1234
|
|
POST
|
Hello, I have 2 questions. 1.- How to cofigure the LayerList with layers from your arcgis rest service? I have tried to workaround from this but i still dont know. For example, when i tried to add the widget in WAB, the selected layer list is empty. Also, how the layes that i want to load at the beginning of my WAB APP come from a secured service, i dont want to let the user put the user and password each time a layer is loaded, so here comes my other question. 2.- How to use the Identity Manager window to access (using windows auth) to the whole rest service before the app loads completely. I remember in flex there was something like this. This allows u to access the layers by default that u set them up in a config file. If there is any guide to do this kind of things that we used to have in flex will be really appreciated. Thanks in advice as always!
... View more
09-29-2016
12:01 PM
|
0
|
3
|
1646
|
|
POST
|
Maybe at this time they could reconsider adding a npm package with the 3.18 build or even best 4.0 and 3.8, cuz how @michael says, now a lot fo things are in npm and bower is not being used too much. Anyways i worked on a repository with the help of @lobsteropteryx and @tomwayson to set up the api for some users that have problems with react + webpack config. I hope can be useful.
... View more
09-27-2016
10:38 AM
|
0
|
0
|
1432
|
|
POST
|
I attach the demo im doing. I would like to know what im missing ! Thanks!
... View more
09-23-2016
08:11 AM
|
0
|
1
|
1277
|
|
POST
|
Hello. Im trying to developing a custom widget for my WAB APP and im following the steps in this website Naming conventions—Web AppBuilder for ArcGIS (Developer Edition) | ArcGIS for Developers 1.- I understood that each widget has some files that has to be in there , like: html file css file js.file and in the app.config when i want to add the custom widget or anyone that i want, i have to put this: { "label": "demo", "uri": "widgets/Demo/Widget" } in the widgetPool->widgets. Idk if im kinda lost or im doing something wrong, but when i zip my app to upload it to the WAB to see if i can see my demo widget, i have the error with it. So i dont understand whats is my problem. 2.- Also i wanna know if i can integrate React to handle some controls and state of them and if there is any example with it. Or changing the code to ES6. Thanks so much in advice!
... View more
09-22-2016
02:22 PM
|
0
|
3
|
1970
|
|
POST
|
Why u dont try adding the mapimagelayer as a normal layer with: map.addLayer(myImgLayer, position);
... View more
09-20-2016
02:24 PM
|
0
|
0
|
1769
|
|
POST
|
I think here u can get them:
function addToMap(evtObj) {
map.graphics.clear();
var geometry = evtObj.geometry;
// add the drawn graphic to the map
var symbol = new SimpleFillSymbol(
SimpleFillSymbol.STYLE_SOLID,
new SimpleLineSymbol(SimpleLineSymbol.STYLE_SOLID, new Color([0, 0, 0]), 2),
new Color([0, 0, 255, 0.5]));
var graphic = new Graphic(geometry, symbol);
// u will have the geometry itself so u can get the coords for the polygon drawn but u need to use a for loop to get them all.
console.log(geometry.rings); //<-- array of coords.
map.graphics.add(graphic);
// simplify polygon so it can be used in the get label points request
geometryService.simplify([geometry], getLabelPoints);
}
... View more
09-20-2016
02:07 PM
|
1
|
1
|
1688
|
|
POST
|
Thats wrong, see how i put it in the example above. And if u are adding more than one service, u need to do it for each one.
... View more
09-09-2016
11:53 AM
|
0
|
0
|
4052
|
|
POST
|
I do this: serviceURL + "layer/FeatureServer/1?f=json&token=" + token.read(); Where: service url is ur rest service url and token.read() is a fx where i save the layer for future request. The other way is doing it like odoe says but i havent tried. I Hope it works for u
... View more
09-09-2016
10:24 AM
|
0
|
2
|
4052
|
|
POST
|
I have tried to install the api through bower but im having the following error ECONFLICT Unable to find suitable version for dojo I read a topic about someone asking the same, but it doesnt allow me to select any option like her. My bower.json file is this one: { "name": "proyecto1", "description": "factigis", "main": "server.js", "license": "ISC", "homepage": "", "dependencies": { "esri": "arcgis-js-api#3.17.0" }, "resolutions": { "dojo": "v1.10.4/esri-3.14.0" }, "ignore": [ "**/.*", "node_modules", "bower_components", "test", "tests" ] }
... View more
09-05-2016
05:21 PM
|
0
|
2
|
2039
|
|
POST
|
I have tried to find any example with the setup that i have but i still dont know how to do it with webpack, react and the arcgis js api. I have that repo as an example, i hope somebody can help me 😞 . GitHub - darklilium/CHQAves: Proyecto de colisión de aves CHQ
... View more
09-05-2016
07:54 AM
|
0
|
1
|
6119
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 06-21-2017 02:09 PM | |
| 1 | 04-10-2015 07:52 AM | |
| 1 | 03-23-2016 02:08 PM | |
| 1 | 02-22-2016 05:01 AM | |
| 1 | 10-09-2018 07:10 AM |
| Online Status |
Offline
|
| Date Last Visited |
05-01-2024
03:05 AM
|