|
POST
|
first you have to allow to draw a polygon graphic in to the map. see this sample how to use draw toolbar Add graphics to a map | ArcGIS API for JavaScript then you have to use this polygon graphic in order to select features from an another layer see this sample how to execute spatial queries Select features within a two minute drive time | ArcGIS API for JavaScript finally the results form the query must be the data store for a dgrid object. Also you can use the Feature Table for this DataGrid with zoom button | ArcGIS API for JavaScript Using FeatureTable | ArcGIS API for JavaScript
... View more
06-09-2016
01:08 AM
|
2
|
0
|
988
|
|
POST
|
try to add new values on the domain you created through a geoprocessing service which using the tool ADD CODED VALUE TO DOMAIN.
... View more
06-07-2016
11:46 PM
|
0
|
1
|
1063
|
|
POST
|
Add a listener in order to detect the mouse events (move , click e.t.c) dojo.connect(map, "onMouseMove", onMapMouseMove); //for XY coordinates then onMapMouseMove function take the x, y from the event , convert it to the coordinate you want to show and add this on a div on your interface. below is a sample: function onMapMouseMove(event){ if (map.spatialReference.isWebMercator()){ var GeoPOint = esri.geometry.webMercatorToGeographic(event.mapPoint); }else{ var GeoPOint = event.mapPoint; } var x = GeoPOint.x.toFixed(5); var y = GeoPOint.y.toFixed(5); dojo.byId('mapPosition').innerHTML = dojo.string.substitute('<b>λ:</b> '+'${0}, <b>φ:</b> ${1}', [x, y]); }
... View more
06-07-2016
11:37 PM
|
1
|
0
|
2617
|
|
POST
|
Offline data Some layers in your maps can be taken offline to allow users to collect data when they have no connectivity. Layers that support being taken offline are as follows: ArcGIS Server feature services (10.2.2 or later) If using related tables or restricted feature service capabilities, it requires ArcGIS 10.3 for Server or later Enterprise geodatabase 10.2 or later ArcGIS Server tiled map services (10.2.2 or later) Feature layers hosted on ArcGIS Online Feature layers hosted on Portal for ArcGIS Requires ArcGIS 10.2.2 for Server or later Enterprise geodatabase 10.2 or later Tiled map layer hosted on ArcGIS Online
... View more
06-03-2016
03:07 AM
|
0
|
0
|
985
|
|
POST
|
I not sure about that. See from the Rest end point if any other properties are available.
... View more
06-01-2016
10:50 PM
|
0
|
0
|
2506
|
|
POST
|
you can use a graphic layer only for the Text Symbols. Use this graphic layer on top of all other graphic layers in order to avoid any visibility problems. Text Symbol allow you to edit all properties (color, text size, position, shadow) from user interface. graphic layer can be exported as Json file in order to save it on file or database for future use. Also you can take advantage from Browser's Local storage.
... View more
05-27-2016
03:29 AM
|
1
|
2
|
2830
|
|
POST
|
Save the Layer you have uploaded see item details and Publish this item after that a hosted feature layer created and you can access the rest end point
... View more
05-27-2016
03:04 AM
|
1
|
2
|
2506
|
|
POST
|
If you try to configure the ArcGIS Server the same message arise?
... View more
05-25-2016
02:47 AM
|
0
|
1
|
2543
|
|
POST
|
Also thing about creating a measure tool with circle and bearing like Google Earth does.
... View more
05-25-2016
02:39 AM
|
0
|
0
|
1152
|
|
POST
|
Yes on the related table the field must be GUID. This enable the add related record functionality. See below.
... View more
05-25-2016
02:36 AM
|
1
|
0
|
1657
|
|
POST
|
during the upload what did you select for the generalization?
... View more
05-25-2016
02:02 AM
|
2
|
6
|
2506
|
|
POST
|
on this function layerName.on("click", function (event) { take the selected geometry event.graphic and zoom on the map map.centerAndZoom(event.graphic.geometry, 4); });
... View more
05-23-2016
06:57 AM
|
1
|
2
|
4122
|
|
POST
|
row level security can be implemented at the RDBMS level. for example Oracle use this https://www.oracle.com/database/label-security/index.html for viewing purposes only you can create spatial views to restrict the viewing.
... View more
05-18-2016
12:29 AM
|
1
|
2
|
1535
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 04-05-2017 12:35 AM | |
| 1 | 02-15-2021 07:16 AM | |
| 1 | 02-15-2021 12:05 AM | |
| 1 | 02-15-2021 12:02 AM | |
| 2 | 12-21-2020 12:38 AM |
| Online Status |
Offline
|
| Date Last Visited |
03-11-2026
03:24 AM
|