|
POST
|
A lot of people like to list them one at a time and divided into categories (dojo, esri...) require([
"esri/map",
"esri/layers/ArcGISDynamicMapServiceLayer", /// All the layers
"esri/layers/ImageParameters",
"esri/dijit/BasemapToggle", /// All the dijits
"esri/dijit/HomeButton",
"dojo/on", /// All the Dojo
"dojo/dom",
"dojo/domReady!"],
... View more
08-24-2015
12:38 PM
|
1
|
0
|
1848
|
|
POST
|
Maybe because the first time it actually draws the layer, it queries the server, which counts as a refresh. Once it has been drawn the layer information remains in the cache and doesn't need to query the server and therefor doesn't "refresh", which would fire the update-start event? It's just an idea
... View more
08-24-2015
11:12 AM
|
0
|
1
|
1123
|
|
POST
|
Sarah, in what mode (onDemand, Snapshot...) do you add your layer? Tim
... View more
08-24-2015
11:02 AM
|
0
|
3
|
1123
|
|
POST
|
Cathina, this is a very nice page that answers most of your questions: Overview of Esri Technical Certification Tim
... View more
08-21-2015
05:05 AM
|
1
|
0
|
1140
|
|
POST
|
Terry, The code that I posted needed "esri/geometry/Multipoint" var multipoint = new Multipoint(map.spatialReference); and once he posted his 2nd post I went through the list and looked if he has it already included in his current code.
... View more
08-19-2015
08:49 AM
|
1
|
1
|
1707
|
|
POST
|
Paul, do you know of any feature service that includes 10m or is 100m as close as it can get at this moment? Tim
... View more
08-18-2015
10:47 AM
|
0
|
1
|
3357
|
|
POST
|
Paul, I use the following from ESRI MGRS (GeocodeServer) Tim
... View more
08-18-2015
07:26 AM
|
0
|
0
|
3357
|
|
POST
|
You could do something like this: function zoomToData (featureLayer) {
// Zoom to the collective extent of the data
var multipoint = new Multipoint(map.spatialReference);
arrayUtils.forEach(featureLayer.graphics, function (graphic) {
var geometry = graphic.geometry;
if (geometry) {
multipoint.addPoint({
x: geometry.x,
y: geometry.y
});
}
});
if (multipoint.points.length > 0) {
map.setExtent(multipoint.getExtent().expand(1.25), true);
}
} Tim
... View more
08-18-2015
07:22 AM
|
0
|
6
|
1707
|
|
POST
|
Hey Paul, check out my Location Widget here: Location Widget Here is the live version: ArcGIS Web Application Tim
... View more
08-18-2015
07:09 AM
|
1
|
2
|
3357
|
|
POST
|
This is where you tell the WebApp builder what files your widget uses via the properties. Check out this document if you want to start developing: Web AppBuilder Developer Edition - Customization Resource List
... View more
08-18-2015
06:58 AM
|
1
|
1
|
603
|
|
POST
|
Yes inside the widget.js is where you have all your functions.
... View more
08-17-2015
12:23 PM
|
0
|
3
|
2810
|
|
POST
|
I don't know, but it is always a good sign when no answer follows
... View more
08-17-2015
12:11 PM
|
0
|
5
|
2810
|
|
DOC
|
The Address locator is used to find the nearest address to the point.
... View more
08-17-2015
11:33 AM
|
0
|
0
|
15957
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 07-06-2015 06:58 AM | |
| 1 | 05-04-2016 07:27 AM | |
| 1 | 07-06-2017 08:12 AM | |
| 1 | 10-26-2015 11:51 AM | |
| 1 | 12-12-2014 12:05 PM |
| Online Status |
Offline
|
| Date Last Visited |
11-11-2020
02:23 AM
|