|
POST
|
Thanks for the insight Josh. I was just wondering, because it is easy to create data in ArcGIS Desktop, publish it to your ArcGIS Online account and then consume it via a javascript application. Before ArcGIS Online you depended on a server license to publish your data, but now it is pretty easy.
... View more
07-10-2015
07:51 AM
|
2
|
2
|
2043
|
|
POST
|
Hey everybody, Once you buy an ArcGIS Desktop license, it comes with an ArcGIS Online Organizational account and 100 credits. If a company just buys one of those ArcGIS Desktop license, would they be able to use the ArcGIS Javascript API to built web applications or would you need to purchase a server license or a ArcGIS Online developer account? I appreciate any input! Tim
... View more
07-10-2015
07:28 AM
|
0
|
5
|
4988
|
|
POST
|
Frank, Check out the guide here: Welcome—Web AppBuilder for ArcGIS (Developer Edition) | ArcGIS for Developers This can explain it the best. Tim
... View more
07-10-2015
06:49 AM
|
1
|
2
|
1610
|
|
POST
|
Frank, You don't need a server to customize widgets. I do everything on my home computer. All you need is a text editor. Check this thread out: Tips and Observations for getting Web AppBuilder - Developer Edition Installed and here: Rebecca's GIS in Alaska Tim
... View more
07-10-2015
06:29 AM
|
1
|
4
|
1610
|
|
POST
|
Ken, You are right that is the issue, I always forget to look there first!!!! Tim
... View more
07-09-2015
05:40 AM
|
0
|
0
|
1389
|
|
POST
|
This is how it should look like, I have also added the missing scalebar in your require. require([
"esri/map", "esri/tasks/query", "dojo/parser", "dijit/layout/BorderContainer", "dijit/layout/ContentPane", "esri/dijit/Legend",
"esri/tasks/IdentifyTask", "esri/tasks/IdentifyParameters", "dojo/_base/array","dojo/DeferredList",
"dijit/form/ComboBox", "dojo/data/ItemFileReadStore","dojo/store/Memory",
"esri/virtualearth/VETiledLayer", "dijit/form/Button",
"esri/tasks/FindTask",
"esri/tasks/FindParameters",
"esri/symbols/SimpleMarkerSymbol",
"esri/symbols/SimpleLineSymbol",
"dijit/registry",
"dojo/_base/connect",
"dojox/grid/DataGrid",
"esri/dijit/Popup", "esri/dijit/PopupTemplate",
"esri/layers/FeatureLayer",
"esri/symbols/SimpleFillSymbol", "esri/Color",
"dojo/dom-class", "dojo/dom-construct",
"dojox/charting/Chart", "dojox/charting/themes/Dollar",
"dojo/on", "esri/dijit/Scalebar","dijit/layout/AccordionContainer", "dojo/domReady!"],
function(Map, query, parser, BorderContainer, ContentPane, Legend,
IdentifyTask, IdentifyParameters,arrayUtils,DeferredList,
ComboBox, ItemFileReadStore, Memory,
VETiledLayer, Button,
FindTask, FindParameters, SimpleMarkerSymbol, SimpleLineSymbol, registry, connect, DataGrid,
Popup, PopupTemplate,
FeatureLayer,
SimpleFillSymbol, Color,
domClass, domConstruct,
Chart, theme,
on, Scalebar) {
... View more
07-09-2015
05:38 AM
|
1
|
0
|
1389
|
|
POST
|
Hey everybody, In my javascript application I use the ESRI Geocoder and once a match has been selected it zooms to the match. What I try to do is after my map zooms to the match I want to zoom out to a specific extent, which should be possible by using map.setExtent(). This only works if I am in developer mode and I put a break point at map.setExtent() , which leaves me to believe that the zooming initiated by the geocoder takes some time and happens after I do map.setExtent() Since Jive hates me posting code, I have put the relevant code in this fiddle: Edit fiddle - JSFiddle Thanks for any help! Tim
... View more
07-08-2015
11:38 AM
|
0
|
2
|
3900
|
|
POST
|
As Josh has mentioned add "dojo/domReady!" as your last require. I would also add "dojo/parser" as seen here. And as your first line user parser.parse() which can be seen in the link under "running the parser".
... View more
07-08-2015
05:22 AM
|
0
|
2
|
1691
|
|
POST
|
Ahh ok I didn't know that. I'll see if I can figure this out. thanks!
... View more
07-06-2015
08:19 AM
|
0
|
0
|
4058
|
|
POST
|
I think we are talking about two different things. I want to do a spatial query, like the "Select by Location" query in ArcGIS Desktop. I want all points that fall within another feature layer.
... View more
07-06-2015
08:11 AM
|
0
|
2
|
4058
|
|
POST
|
Before the code that you posted the actual query happens, which I have a problem with. var query = new Query();
query.geometry = circle.getExtent();
//use a fast bounding box query. will only go to the server if bounding box is outside of the visible map
featureLayer.queryFeatures(query, selectInBuffer); Instead of the Circle extent I want to use a polygon feature layer.
... View more
07-06-2015
07:52 AM
|
0
|
4
|
4058
|
|
POST
|
Instead of the buffer I would like to use a polygon feature layer to select all the points from feature layer 1 that fall within the polygon feature layer.
... View more
07-06-2015
07:32 AM
|
0
|
6
|
4058
|
| 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
|