|
POST
|
HI Michael, Do you have any specific workflow in mind. Can you provide your Enterprise geodatabase environment and workflow you wanted to accomplish. This may help us to provide you different options. Thanks, Biraja
... View more
03-07-2019
05:30 PM
|
0
|
0
|
588
|
|
POST
|
Hi Anne, Can you share sample data along with visual representation of your workflow and requirement explained in the above post. This will help us to answer or provide suggestion. Thanks, Biraja
... View more
03-07-2019
04:56 PM
|
0
|
0
|
850
|
|
POST
|
Hi Jamie, As far as my knowledge goes, we can not create and associate subtypes within subtypes in geodatabase. My suggestion is to modify or work on your database design to accomplish required subtypes and domains. Here is the web help on subtypes and domains for your reference: Introduction to subtypes—Geodatabases | ArcGIS Desktop Thanks, Biraja
... View more
03-01-2019
05:56 PM
|
0
|
0
|
2158
|
|
POST
|
Hi Ulrich, orderByFields is available in Query not in Search. Here is the webhelp: Query | API Reference | ArcGIS API for JavaScript 4.10 I have a sample code for your reference: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no"> <title>orderByFields Sample - 4.10</title> <link rel="stylesheet" href="https://js.arcgis.com/4.10/esri/css/main.css"> <script src="https://js.arcgis.com/4.10/"></script> <style> html, body, #viewDiv { padding: 0; margin: 0; height: 100%; width: 100%; } </style> <script> require([ "esri/Map", "esri/views/MapView", "esri/layers/FeatureLayer" ], function( Map, MapView, FeatureLayer ) { var map = new Map({ basemap: "hybrid" }); var view = new MapView({ container: "viewDiv", map: map, extent: { // autocasts as new Extent() xmin: -9177811, ymin: 4247000, xmax: -9176791, ymax: 4247784, spatialReference: 102100 } }); /******************** * Add feature layer ********************/ // Carbon storage of trees in Warren Wilson College. var featureLayer = new FeatureLayer({ url: "https://services.arcgis.com/V6ZHFr6zdgNZuVG0/arcgis/rest/services/Landscape_Trees/FeatureServer/0", outFields:["*"] }); map.add(featureLayer); view.when(function(){ let query = featureLayer.createQuery(); query.outFields = ["Cmn_Name"]; query.returnGeometry = true; query.orderByFields = ["Cmn_Name DESC"]; featureLayer.queryFeatures(query).then(function(response){ for(let i = 0; i < response.features.length; i++){ let fid = response.features[i].attributes.Cmn_Name; console.log(fid); } }); }); }); </script> </head> <body> <div id="viewDiv"></div> </body> </html>
... View more
03-01-2019
04:15 PM
|
0
|
0
|
1943
|
|
POST
|
Hi Carl, Please remove base map " basemap: "topo"," and try. Also here is the print layer samples from java script api 3.27 for your reference: ArcGIS API for JavaScript Sandbox Thanks, Biraja
... View more
03-01-2019
03:57 PM
|
0
|
1
|
1735
|
|
POST
|
Hi Selda, From your description, I assume that your requirement is disconnected or offline editing of versioned data with geometric network. In this case, we suggest to go for geodatabase replica workflow. Create replica with geometric network and synchronize back to parent SDE after editing is done. If you need any further help, then please provide us detail requirement and what type of geometric network you have. We may have some more suggestion depending on your requirement. Hope this helps. Thanks, Biraja
... View more
02-28-2019
05:55 PM
|
0
|
0
|
1153
|
|
POST
|
Here is the sample code in 4.10 in case anyone wanted it in future: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no"> <title>PopupTemplate with video - 4.10</title> <style> html, body, #viewDiv { padding: 0; margin: 0; height: 100%; width: 100%; } </style> <link rel="stylesheet" href="https://js.arcgis.com/4.10/esri/css/main.css"> <script src="https://js.arcgis.com/4.10/"></script> <script> require([ "esri/Map", "esri/layers/FeatureLayer", "esri/views/MapView" ], function( Map, FeatureLayer, MapView ) { // Create the map var map = new Map({ basemap: "gray" }); // Create the MapView var view = new MapView({ container: "viewDiv", map: map, center: [-73.950, 40.702], zoom: 11 }); var template = { // autocasts as new PopupTemplate() title: "Marriage in NY, Zip Code: {ZIP}", content: getContent() }; function getContent(){ var Content = "<b>City Name: </b>" + "{areaname}" + "<br> <b>Population: </b>" + "{pop2000}" + "<br>"; var Hyperlink = '<video width="250" height="250" controls><source src=http://techslides.com/demos/sample-videos/small.mp4 type=video/mp4></video> '; return Content + Hyperlink; } // Reference the popupTemplate instance in the // popupTemplate property of FeatureLayer var featureLayer = new FeatureLayer({ url: "http://sampleserver6.arcgisonline.com/arcgis/rest/services/USA/MapServer/0", outFields: ["*"], popupTemplate: template }); map.add(featureLayer); }); </script> </head> <body> <div id="viewDiv"></div> </body> </html>
... View more
02-28-2019
01:46 PM
|
0
|
0
|
1782
|
|
POST
|
Hi Alex, Regarding your query on refresh version tool, When you reconcile post 6 child versions to Default, the last version reconcile and posted to Default has the same lineage and point to same state_id and hence have same data. Refresh version for the last versioned reconcile will show or match data with Default version. Other versions are to be reconcile again with Default to get same data as Default version. This is an expected behavior. Regarding SQL Server version support with ArcGIS 10.6.1, yes, please stick to SQL Server to supported version as per the below link: Microsoft SQL Server database requirements for ArcGIS 10.6.x—System Requirements | ArcGIS Desktop Thanks, Biraja
... View more
02-27-2019
07:10 PM
|
1
|
0
|
984
|
|
POST
|
Hi Huey, Do you have any public service to share or create a public map service with test data and send to us to test at our end. Thanks, Biraja
... View more
02-27-2019
05:53 PM
|
0
|
0
|
737
|
|
POST
|
Hi Jay, That is what I observed during my testing. That is why I asked to contact Esri Support Services to work on it further or may be an enhancement for this behavior. Thanks, Biraja
... View more
02-26-2019
09:13 AM
|
1
|
1
|
2393
|
|
POST
|
Hi Jay, I tried to pass content using function ( Tested with my colleague Jose Banuelos) but can not read the values for related tables. You can log a case with Esri Support to look into more. The below 4x sample using fieldinfos for related tables and attachment: ArcGIS API for JavaScript Sandbox Again, if you find issues after using above sample, then you can contact Esri Support Services to diagnose the issue more. Thanks, Biraja
... View more
02-25-2019
04:43 PM
|
0
|
3
|
2393
|
|
POST
|
Hi Jay, I have not used function for populating content. I can work on it and get back to you. As you have seen in the example both 3.x and 4.x , fieldinfos works for related table fields. Thanks, Biraja
... View more
02-22-2019
08:10 AM
|
0
|
0
|
2393
|
|
POST
|
Hi Jay, Yes, please include fieldinfos in popupTemplate. You can go through the below sample "Create and use a popup template that references fields from a relationship" which may provide some help: Popup with related fields | ArcGIS API for JavaScript 3.27 Thanks, Biraja
... View more
02-21-2019
02:41 PM
|
0
|
3
|
2393
|
|
POST
|
Hi Tyler, If you write the sample application using ArcGIS Java Script API for same scene and let us know whether it still crashed during preview. Can you use the scene view from this below sample and let us know your observation: ArcGIS API for JavaScript Sandbox Thanks, Biraja
... View more
02-21-2019
02:30 PM
|
0
|
1
|
1374
|
|
POST
|
Hi Mario, Have you checked the method "setPoint" in multipoint class. You can update a point from multipoint created using this method. Here is the web help link: Multipoint | API Reference | ArcGIS API for JavaScript 3.27 setPoint(index, point) Updates the point at the specified index. (Added at v2.0) Return type: Multipoint Thanks, Biraja
... View more
02-21-2019
02:23 PM
|
0
|
0
|
2208
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 05-21-2019 10:26 AM | |
| 1 | 08-02-2016 12:07 PM | |
| 1 | 08-31-2015 05:14 PM | |
| 1 | 04-10-2019 11:24 AM | |
| 1 | 02-27-2019 07:10 PM |
| Online Status |
Offline
|
| Date Last Visited |
08-13-2025
02:02 PM
|