|
POST
|
There's heaps of documentation, but start here: What is ModelBuilder?—Help | ArcGIS for Desktop I'll see if I can draw up a wireframe for your process.
... View more
06-15-2016
04:56 AM
|
0
|
0
|
5706
|
|
POST
|
You can open a popup from any map click event and then populate the content with the identifyTask results. See the nice examples here: Get started with popups | ArcGIS API for JavaScript 4.0
... View more
06-15-2016
04:53 AM
|
0
|
0
|
575
|
|
POST
|
A quick option is to convert the polygon to points, calculate the X/Y coordinates for the points in new fields and with a Select by Attributes query get the max/min from the X/Y field values and use that as your maximum extent points. Here is the SQL expression to get the max/min in a field, which should be used in the Select by Attributes query box: X = (SELECT max( X ) FROM MyPolygonPoints) OR X = (SELECT min( X ) FROM MyPolygonPoints) You could then convert this process to a model if you have multiple polygons.
... View more
06-15-2016
04:28 AM
|
2
|
2
|
5706
|
|
POST
|
Ok so you actually need the maximum COORDINATE of the maximum bounding extent points
... View more
06-15-2016
04:10 AM
|
0
|
4
|
5706
|
|
POST
|
Same question and answer here: coordinates of the extents of a polygon The extent automatically refers to the feature's maximum N/E/S/W coordinates.
... View more
06-15-2016
03:49 AM
|
1
|
6
|
5706
|
|
POST
|
Here is an example: Edit fiddle - JSFiddle. Click on the panchromatic images and view the image properties below the map.
... View more
06-15-2016
03:18 AM
|
1
|
0
|
1056
|
|
POST
|
Is your GP service configured to allow uploads? If you are using API 3.x then you can upload files with a standard request: esri.request({
url: "http://<server>/arcgis/rest/services/GP_Services/<gservice>/GPServer/uploads/upload",
form: dojo.byId("uploadForm"), // dom element
content: { f: "pjson" },
handleAs: "json",
load: uploadSuccess, // callback
error: uploadFailed // on error
}); HTML upload form: <form enctype="multipart/form-data" method="post" id="uploadForm">
<div class="field">
<label class="file-upload">
<span><strong>Add File</strong></span>
<input type="file" name="file" id="inFile" />
</label>
</div>
</form>
... View more
06-15-2016
01:41 AM
|
1
|
1
|
1270
|
|
POST
|
Is this what you want? http://arcg.is/1OovGfc According to the AGO documentation you'll need an organisational account to be able to upload photos (Add items—ArcGIS Online Help | ArcGIS ) Your CSV file headers is clearly defined in the import error message you got and must look like this: name description icon_color long lat pic_url thumb_url is_video For my example, I just used a photo that is accessible on our Web Server. Then I configured the popup to use a custom attribute display. Then I used the HTML editor to define the popup content. What is great about this is that you can use the CSV field names as inline variables.
... View more
06-15-2016
01:26 AM
|
1
|
0
|
3238
|
|
POST
|
I'm not familiar with the ExtJS, but just check the scope of your locationLayer variable and make sure it is defined right at the top of your script as a global variable. Also please use the syntax highlighting of the advanced editor to make your code more readable.
... View more
06-14-2016
05:58 AM
|
0
|
0
|
2089
|
|
POST
|
AGO might have strict styling rules like any other CMS, so that might be why it is dropping your classes. See what happens if you do the styling inline.
... View more
06-14-2016
04:58 AM
|
1
|
1
|
2143
|
|
POST
|
That is the example. You just need to replace pdfUrl with the actual URL location of the PDF document, e.g. "http://myserver.com/data/feature1.pdf" (absolute pathname) or "/data/feature1.pdf" (relative pathname). Follow the API instructions to retrieve information from your features with the IdentifyTask (API 3.16: IdentifyTask | API Reference | ArcGIS API for JavaScript , API 4.0: IdentifyTask | API Reference | ArcGIS API for JavaScript 4.0 ).
... View more
06-14-2016
04:31 AM
|
1
|
1
|
1604
|
|
POST
|
Not sure what the problem is. I assume you are adding graphics to the GraphicsLayer based on the data you are retrieving. Maybe you can provide more code. You can refresh the graphicslayer like this: locationLayer.redraw();
// zoom to all graphics
map.setExtent(esri.graphicsExtent(locationLayer.graphics).expand(1.5));
... View more
06-14-2016
03:34 AM
|
0
|
0
|
2089
|
|
POST
|
If the location of the PDF document is known in any of the attributes of the features, you can simply open it in a new window/tab: window.open(pdfUrl, "_blank");
... View more
06-14-2016
03:05 AM
|
0
|
3
|
1604
|
|
POST
|
The description says thath the property is not supported for 3D SceneViews: SimpleFillSymbol | API Reference | ArcGIS API for JavaScript 4.0
... View more
06-14-2016
02:37 AM
|
0
|
0
|
1669
|
|
POST
|
Oh sorry. Test the following on the Esri sample (Get started with graphics - 4.0 ) and it works: polygonGraphic.symbol.style = "diagonal-cross"
... View more
06-14-2016
02:30 AM
|
0
|
0
|
1669
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 03-22-2024 12:37 AM | |
| 1 | 10-02-2025 10:28 AM | |
| 1 | 09-17-2024 12:29 AM | |
| 1 | 03-15-2024 11:33 AM | |
| 1 | 03-13-2024 11:20 PM |
| Online Status |
Offline
|
| Date Last Visited |
Tuesday
|