|
POST
|
@KafilBaig Not showing the standard popup is by design. Why would you have the same info displayed in the maps popup and the popup widget at the same time? Anyway the widget.js is pretty clearly marked where the maps popup is hidden. It even has the comment . //hide the standard esri popup instead
html.addClass(query('.esriPopup')[0], 'myPopupHidden');
... View more
06-30-2021
05:13 AM
|
1
|
0
|
2889
|
|
POST
|
@LoriEmerson_McCormack , We talking 4.x or 3.x? in 3.x map.infoWindow.isShowing In 4.x view.popup.visible
... View more
06-29-2021
07:39 AM
|
0
|
1
|
1916
|
|
POST
|
@DiegoMonge_Chinchilla Just like the error is telling you, You are passing a FeatureLayer to the popups feature property when it is expecting a Graphic or array of Graphics. So something like const query = new Query();
query.where = "1=1";
query.outSpatialReference = { wkid: 102100 };
query.returnGeometry = true;
query.outFields = [ "nom_prov" ];
districts.queryFeatures(query).then(function(results){
popup.open({
title: "Esta es la ubicación de su punto",
location: centerPoint,
feature: results.features[0],
content: "{nom_prov}"
});
}); Would work.
... View more
06-28-2021
12:24 PM
|
1
|
1
|
6217
|
|
POST
|
@JohnWyant sure you just use the geometryEngines offset method. Assuming 3.x Get the graphics extent center Use the map toScreen method to get the screen point and then add your 50 pixels to the screen point X and/or Y values Then use the maps toMap to reconvert the screen point that is now shifted by 50 px to get the map point. Next us the geometryEngine distance on the original point (the graphics extent center) and the new shifted point to get the distance value to use in the next step Use the geometryEngine offset method to get the offset geometry. Same can be done in 4.x it is just the MapView that has the toMap and toScreen methods.
... View more
06-28-2021
08:21 AM
|
0
|
0
|
1611
|
|
POST
|
@Vakhtang_Zubiashvili You can find a sample here that showcases some of the geometryEngines features: http://ekenes.github.io/esri-js-samples/ge-demo/ and the code can be found here. https://github.com/ekenes/esri-js-samples/blob/master/ge-demo/index.html
... View more
06-28-2021
06:12 AM
|
1
|
1
|
6441
|
|
DOC
|
@LixinHuang That would be possible with code changes. This is done in the eSearch so the code is already available.
... View more
06-28-2021
06:00 AM
|
0
|
0
|
19901
|
|
POST
|
@JacobRothenberger There is no way currently (besides the hacky way) to change the selection color. Here is what I put in the SketchViewModels on update method to change the selection graphics color for a polygon (changing the outline color and the vertex symbol outline color): sketchViewModel._internalGraphicsLayer.graphics.map(function(gra){
if(gra.geometry.type === 'polygon'){
gra.symbol.outline.color = [0,0,0,0];
}
if(gra.geometry.type === 'point'){
gra.symbol.outline.color = [168,168,168,1];
}
})
... View more
06-25-2021
02:08 PM
|
1
|
0
|
3798
|
|
POST
|
@JamesFaron , No I have not which is a pretty big issue for me.
... View more
06-25-2021
09:48 AM
|
1
|
0
|
3290
|
|
POST
|
@Valgenmap , There is no event native (just as the error is telling you) on the 'draw-complete' event. You would have to figure out how to use the view click event if you want to capture the mouse click event.
... View more
06-25-2021
05:28 AM
|
0
|
1
|
5764
|
|
DOC
|
@PropertiesCurtin , You should be good using the 2.4 url like you did. It would appear that you have some issue with you placement/install of the widget. I am NOT a Portal (ArcGIS enterprise) user so I can not talk from experience. But something to check is that your folder structure is like this and there is Not an additional folder in there before the Widget.js file: [portal install]\widgets\eSearch\ > then you have the Widget.js and other files directly in this folder and not another eSearch or some other folder first.
... View more
06-25-2021
05:24 AM
|
0
|
0
|
27184
|
|
POST
|
@JamesFaron Are you talking about the issue where on an iPad in Landscape the keyboard forces the app to change layout (based on available screen size) and you can not longer type into the input you were entering data into?
... View more
06-25-2021
05:18 AM
|
1
|
2
|
3297
|
|
BLOG
|
@TaupoDistrict_Council There is a custom widget available already for measuring. https://community.esri.com/t5/experience-builder-custom/measurement-widget-eb-1-4/ta-p/1062509
... View more
06-23-2021
06:24 AM
|
1
|
0
|
25070
|
|
POST
|
@RYANCARL That is a term in experience builder that is similar to "build" or "compile" in many development environments. It is just finalizing your changes to your experience. You many not see your changes you made to an experience until it is published.
... View more
06-22-2021
12:41 PM
|
3
|
1
|
4838
|
|
POST
|
@RYANCARL Here is the help link for deployment of your experience. https://developers.arcgis.com/experience-builder/guide/deployment-topics/
... View more
06-22-2021
11:38 AM
|
0
|
0
|
4842
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 04-14-2020 11:36 AM | |
| 16 | 05-17-2021 01:51 PM | |
| 1 | 07-06-2020 05:32 AM | |
| 1 | 07-10-2018 05:49 AM | |
| 9 | 01-28-2022 10:58 AM |
| Online Status |
Offline
|
| Date Last Visited |
06-08-2026
06:27 AM
|