|
DOC
|
Hi Robert, Is it possible to find areas in Layer 1 which are falling outside of Polygon in Layer 2 using this eSearch Widget? Thanks, Krish
... View more
12-05-2017
08:11 AM
|
0
|
0
|
7626
|
|
POST
|
Hi Robert, Yes. applyEdits is not working and I don't see any errors in console. "areas-and-lengths-complete" is asynchronous and this fires after edits are completed. Regards, Krish
... View more
12-05-2017
08:07 AM
|
0
|
2
|
1672
|
|
POST
|
Hello All, I'm trying to update one attribute value using Polygon Area in Edit Widget. I'm using before-apply-edits event to do so. For calculating area of polygon I'm using geometry service. Please find the code below: onBeforeApplyEdits: function (evt) {
if (evt.adds != null) {
var feat = evt.adds[0];
var geometry = feat.geometry
var geometryService = new GeometryService("https://sampleserver6.arcgisonline.com/arcgis/rest/services/Utilities/Geometry/GeometryServer");
//geometryService.on("areas-and-lengths-complete", outputAreaAndLength);
var areasAndLengthParams = new AreasAndLengthsParameters();
areasAndLengthParams.areaUnit = GeometryService.UNIT_SQUARE_METERS;
areasAndLengthParams.calculationType = "planar";
geometryService.simplify([geometry], lang.hitch(this, function (simplifiedGeometries) {
areasAndLengthParams.polygons = simplifiedGeometries;
geometryService.areasAndLengths(areasAndLengthParams);
}));
geometryService.on("areas-and-lengths-complete", lang.hitch(this, function (evtObj) {
var result = evtObj.result;
console.log(result.areas[0]);
var feat = evt.adds[0];
area = result.areas[0];
feat.attributes.no_of_areas = Math.round(area / 25);
setTimeout(lang.hitch(this, function () {
evt.target.applyEdits(null, [feat], null);
}), 100);
debugger;
}));
}
}, Attributes are getting updated but unable to save. Please suggest how to proceed. Regards, Krish
... View more
12-04-2017
09:03 PM
|
0
|
11
|
2302
|
|
POST
|
I have installed QT 5.9.1 and followed steps in AppStudio Documentation and now, I'm getting attached screenshot. If i run the code, I'm getting below errors: Please help to resolve this issue. Regards, Krish
... View more
11-30-2017
08:43 PM
|
0
|
0
|
862
|
|
POST
|
is this supported in current version. If yes, please help me with code snippet how to achieve rotation in Scene View for Stream Service. I'm trying to rotate picture marker symbol for Stream Service. Thanks, Krish
... View more
11-22-2017
03:43 AM
|
0
|
1
|
1865
|
|
POST
|
Hi Nakul, I have checked Qt Webpage and looked for Qt 5.9.1 MSVC 2015 but I didn't find anything for Windows 64 bit. Can you provide me link to download this Software. As I mentioned in my earlier reply, this software is not available. Regards, Krish
... View more
11-17-2017
10:23 AM
|
0
|
0
|
862
|
|
POST
|
Hello Nakul, Thanks for your quick response. I'm using AppStudio 2.1. Can you provide link to download Qt 5.9.1 msvc 2015? Link provided in documentation doesn't have Qt 5.9.1 msvc 2015. PFB link: Index of /archive/qt/5.5/5.5.1 I have installed qt-opensource-windows-x86-msvc2015_64-5.8.0.exe. Regards, Krish
... View more
11-17-2017
09:22 AM
|
0
|
2
|
862
|
|
POST
|
Hello Everyone, For JavaScript debugging, I have followed documentation given at below link: http://doc.arcgis.com/en/appstudio/extend-apps/debuggingjavascript.htm Please find my system details: OS: Windows 10 Installed WDK for Windows 10, Version 1703 Installed qt-opensource-windows-x86-msvc2015_64-5.8.0.exe After following all the steps in documentation, I'm getting below error: Starting C:\Qt\Qt5.8.0\5.8\msvc2015_64\bin\qmlscene.exe...
file:///C:/Users/esri/ArcGIS/AppStudio/Apps/Feature Layer/MyApp.qml:24 module "ArcGIS.AppFramework.Controls" is not installed
file:///C:/Users/esri/ArcGIS/AppStudio/Apps/Feature Layer/MyApp.qml:23 module "ArcGIS.AppFramework" is not installed
file:///C:/Users/esri/ArcGIS/AppStudio/Apps/Feature Layer/MyApp.qml:24 module "ArcGIS.AppFramework.Controls" is not installed
file:///C:/Users/esri/ArcGIS/AppStudio/Apps/Feature Layer/MyApp.qml:23 module "ArcGIS.AppFramework" is not installed
C:\Qt\Qt5.8.0\5.8\msvc2015_64\bin\qmlscene.exe exited with code -1 Please suggest how to proceed.. Regards, Krish
... View more
11-17-2017
08:40 AM
|
0
|
5
|
1095
|
|
POST
|
Hello Loayeh, Thanks for your response! I want to know how to push attributes in combo box from Map service. Please suggest. Thanks, Krish
... View more
11-16-2017
06:21 PM
|
0
|
1
|
886
|
|
BLOG
|
I would like to know when Arcgis Publish to web functionality will be available.
... View more
11-16-2017
12:39 AM
|
0
|
0
|
1932
|
|
POST
|
Hello Everyone, I have seen a sample Feature Layer Query, where I can type state name and find that State name. I want to do the same thing using ComboBox. When I select anything from drop down, it should select the feature. Can anyone have this sample. Appreciate your support. Regards, Krish
... View more
11-15-2017
06:24 AM
|
0
|
3
|
1038
|
|
POST
|
Hello Tina, Thanks for your response! When I generated apk, it started working fine in the previous version only. Thanks, Krish
... View more
08-03-2017
11:47 PM
|
0
|
0
|
881
|
|
POST
|
Dear All, I'm using quick report template for my project. I have used date in my feature class so that user can select date from it. After configuring Quick Report Template, I observed that date in android mobile is not showing properly (But shows correctly in desktop). Please find the screenshot. Any suggestions are much appreciated. Regards, Krish
... View more
06-25-2017
09:58 PM
|
0
|
2
|
1222
|
|
POST
|
Hello All, I have used Quick report template to create a Native App. After creating, I have observed that I'm getting multi-line for Text boxes as show in below screenshot. Also, date box is not showing correctly. Please look at the attached images for quick reference. Please help me how I can get these text boxes in single line and show date properly. Appreciate your support! Regards, Krish
... View more
06-24-2017
02:03 AM
|
0
|
0
|
1053
|
|
POST
|
Thanks for your quick response! I made Tpk file and successfully able to use in "Local basemap (TPK) and features from GDB" but unable to understand how to integrate this code in Quick report template. Thanks, Krish
... View more
06-05-2017
09:04 AM
|
0
|
1
|
2518
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 11-16-2021 03:44 AM | |
| 1 | 08-21-2019 10:49 PM | |
| 2 | 12-08-2020 08:29 PM | |
| 1 | 12-08-2020 01:22 AM | |
| 1 | 06-04-2017 08:38 AM |
| Online Status |
Offline
|
| Date Last Visited |
01-30-2025
09:13 AM
|