|
POST
|
Try setting the disabled on the pane as one of those other suggestions states registry.byId('step2').set('disabled', true);
... View more
10-15-2020
04:46 PM
|
0
|
13
|
2360
|
|
POST
|
how to disable single tab in dojo tabcontainer - Stack Overflow
... View more
10-15-2020
11:17 AM
|
0
|
16
|
2472
|
|
POST
|
Mark, OK looking though the source code my suggestion is wrong. There is not anything built in that I am aware of to help you in your situation.
... View more
10-15-2020
09:09 AM
|
0
|
0
|
2972
|
|
POST
|
This is sometimes seem when your web browsers zoom is not 100.
... View more
10-15-2020
08:27 AM
|
1
|
0
|
3569
|
|
POST
|
Mark, In your apps main config.json find the mobileLayout object and see if the infographics widget is listed and if it is look for the openAtStart and change it to false.
... View more
10-15-2020
08:26 AM
|
0
|
2
|
2973
|
|
POST
|
Michel, You have: define([ 'dojo/_base/declare', 'jimu/BaseWidget', 'dojo/on', 'esri/layers/FeatureLayer', 'esri/renderers/SimpleRenderer', 'esri/symbols/PictureFillSymbol', 'esri/Color', 'esri/map', 'esri/dijit/Legend' ], function(declare, BaseWidget, on, FeatureLayer, SimpleRenderer, SimpleFillSymbol, Color, Map) {
... View more
10-15-2020
06:22 AM
|
0
|
0
|
1871
|
|
POST
|
Just loop through the array. var graphicsLayer = new GraphicsLayer();
webmap.layers.add(graphicsLayer);
var simpleMarkerSymbol = {
type: "simple-marker", //
color: [226, 119, 40], // orange
size: 30,
style: "circle",
outline: {
color: [255, 255, 255], // white
width: 2
}
};
for (i=0; i< zLongitude.length; i++ ){
// Create a point
var point = {
type: "point",
longitude: zLongitude[i],
latitude: zLatitude[i],
};
var pointGraphic = new Graphic({
geometry: webMercatorUtils.geographicToWebMercator(point),
symbol: simpleMarkerSymbol
});
graphicsLayer.add(pointGraphic);
}
... View more
10-15-2020
06:18 AM
|
2
|
1
|
4345
|
|
POST
|
Stacy, I can confirm the same issue and do not see why a projection is even being attempted. So yes time to open a ticket.
... View more
10-15-2020
06:09 AM
|
1
|
0
|
3997
|
|
POST
|
Use the sketchGeometry to run a query against the featurelayer of the parcels then when that query is done run the buffer.
... View more
10-14-2020
10:32 AM
|
0
|
2
|
2811
|
|
POST
|
Kafil, Sorry I can not provide any guidance on this. This widget uses a QueryTask and a QueryTask is for one layer.
... View more
10-14-2020
05:40 AM
|
0
|
0
|
750
|
|
POST
|
Have you called esri tech support and opened a ticket on this issue?
... View more
10-13-2020
01:50 PM
|
0
|
2
|
3997
|
|
POST
|
Damon, Do a console.log on this.map.spatialReference and I bet you will find that it is null. the reason would be that you are not using lang.hitch to maintain the current code scope of the "this" object.
... View more
10-13-2020
12:12 PM
|
1
|
1
|
4486
|
|
POST
|
This is a basic AGOL management question. You would just share those 5 internal web maps with your organization and not grant public access in AGOL. Data access and editing—ArcGIS Online Help | Documentation
... View more
10-13-2020
09:20 AM
|
1
|
1
|
1209
|
|
POST
|
That code seems to be fine (assuming that val is not null and the graphics property is not null). Here is a line from the otb Edit widget that uses SelectionManager: SelectionManager.getInstance().setSelection(featureLayer, features).then(lang.hitch(this, function() { ...
... View more
10-13-2020
09:15 AM
|
0
|
3
|
4486
|
|
POST
|
Damon, As for code examples you can look in the OTB Query Widget or custom widgets like my eSearch widget, or just look at the JS 3.x API samples.
... View more
10-13-2020
06:51 AM
|
0
|
5
|
4486
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 04-14-2020 11:36 AM | |
| 17 | 05-17-2021 01:51 PM | |
| 1 | 07-06-2020 05:32 AM | |
| 1 | 07-10-2018 05:49 AM | |
| 9 | 01-28-2022 10:58 AM |
| Online Status |
Offline
|
| Date Last Visited |
06-08-2026
06:27 AM
|