|
POST
|
Why don't you just use the Search widget (Search | API Reference | ArcGIS API for JavaScript 3.19 ) and specify your GeocodeServer as the locator for the default search source?
... View more
02-02-2017
10:56 PM
|
0
|
0
|
1198
|
|
POST
|
The REST endpoint could be used in conjunction with the Search widget (Search | API Reference | ArcGIS API for JavaScript 3.19 ) to perform a similar map export request for place name searches as in the GitHub example provided by piterpaulppp in the original question post. After getting the results from the Search widget, the map export URL can be constructed and executed to generate a static map when using a place name in the static map request URL.
... View more
02-02-2017
01:07 AM
|
0
|
1
|
2937
|
|
POST
|
Event handler? view.popup.on("open", function(evt){
// code
});
... View more
02-01-2017
05:43 AM
|
0
|
5
|
3326
|
|
POST
|
You should be able to get the query feature with view.popup.features and then iterate through the features returned to get the attributes.
... View more
02-01-2017
04:28 AM
|
1
|
7
|
3326
|
|
POST
|
How about rendering a SVG server-side and using that for the PictureFillSymbol. Here is an example of PHP code that draws 2 adjacent rectangles with randomized colours: <?php
Header('Content-type: image/svg+xml; charset=utf-8');
$r1 = rand(0,255);
$g1 = rand(0,255);
$b1 = rand(0,255);
$r2 = rand(0,255);
$g2 = rand(0,255);
$b2 = rand(0,255);
echo '<!DOCTYPE html>';
echo '<svg id="vectors1" viewBox="0 0 100 100" preserveAspectRatio="xMinYMin meet" version="1.1" xmlns="http://www.w3.org/2000/svg">';
echo '<rect id="data1" x="0" y="0" width="20" height="20" style="fill:rgb('.$r1.','.$g1.','.$b1.');stroke-width:0;stroke:rgb(0,0,0)" />';
echo '<rect id="data2" x="20" y="0" width="20" height="20" style="fill:rgb('.$r2.','.$g2.','.$b2.');stroke-width:0;stroke:rgb(0,0,0)" />';
echo '</svg>';
?>
... View more
02-01-2017
02:35 AM
|
0
|
0
|
2167
|
|
POST
|
I've had issues with the moveToFront / moveToBack methods - when all the graphics in the graphics layer are visible in the view extent it works fine, but when one or more of the graphics in the graphics layer are out of the view extent, calling these methods on a specific graphic returned a TypeError (definitely buggy). With your array-build-redraw method it is solved.
... View more
01-31-2017
05:46 AM
|
1
|
0
|
2329
|
|
POST
|
According to this page: https://support.microsoft.com/en-us/help/193625/info-wininet-error-codes-12001-through-12156 12029 ERROR_INTERNET_CANNOT_CONNECT
The attempt to connect to the server failed. Make sure your server has access to the Internet - check your proxy and firewall settings.
... View more
01-30-2017
09:52 PM
|
0
|
0
|
3228
|
|
POST
|
Is your GP tool synchronous or asynchronous? The synchronous service uses the "execute" directive while the asynchronous service uses the "submitJob" directive to execute.
... View more
01-30-2017
04:23 AM
|
0
|
2
|
3228
|
|
POST
|
Printing an exported map could cause resizing depending on the printer settings. I prefer putting a scalebar on the map instead of scale text, then at least your scale indicator resizes with the map - it is just to be on the safe side if you distribute your map to someone else who decides to print your A4 map as an A5. You should be safe if you printed directly from ArcMap.
... View more
01-30-2017
01:04 AM
|
2
|
0
|
3587
|
|
POST
|
Did you print directly from ArcMap or did you export first and then printed the map?
... View more
01-30-2017
12:50 AM
|
1
|
4
|
3587
|
|
POST
|
So you want to have services Commune_1, Commune_2, etc with all three network layers in each service and still have layer level security? The user/role-based security can only be set at folder or service level: Restricting access to GIS web services—ArcGIS Server Administration (Windows) | ArcGIS Enterprise
... View more
01-30-2017
12:39 AM
|
1
|
2
|
1609
|
|
POST
|
This post describes similar issues that you are experiencing: Service may be stopped or ArcGIS Server may not be running. Code: 500 The solution was to install this patch on the server: http://support.esri.com/download/2190
... View more
01-26-2017
02:00 AM
|
1
|
1
|
1630
|
| 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 |
4 weeks ago
|