|
POST
|
This works to remove it completely with v. 4.27. const view = new MapView({
container: "viewDiv",
map: map,
// Exclude the zoom widget from the default UI
ui: {
components: ["attribution"]
}
}); The sample code doesn't mention how to disable the zoom widget on mobile device only. Is that possible? It's not so practical and takes up too much room.
... View more
09-26-2023
07:09 AM
|
0
|
3
|
1783
|
|
POST
|
The app I'm working on is basically a conglomeration of some of the samples. It works fine as is. In it, if you click on a point in the map you will see the text from the feature's Description field update in the sidebar. I want the same thing to happen when you click an option in the "Search by Category" drop-down. Working app is here I've been working in the section of code that puts the pop-up result in the sidebar. I can't find a reproducible sample for what I want to do. //Popup in sidebar
view.when().then(function () {
// Create a default graphic for when the application starts
const graphic = {
popupTemplate: {
content: "To search by item make sure Search by Category is set to 'Select one'.<br> <br>Businesses should note that they will find more appropriate listings if they check Business under the search box. Hit Search after changing from Residential to Business or vice versa."
},
};
// Provide a graphic to a new instance of a Feature widget
const feature = new Feature({
container: "sidebar",
graphic: graphic,
map: view.map,
spatialReference: view.spatialReference
});
// description variable
var sidebardescription = {
//autocasts the new template
content: [
{
//set a descriptive text element
type: "text", // TextContentElement
text: "{Description}"
},
]
};
view.whenLayerView(recycleLayer).then(function (layerView) {
let highlight;
// listen for the pointer-move event on the View
view.on("click", function (event) {
// Perform a hitTest on the View
view.hitTest(event).then(function (event) {
// Make sure graphic has a popupTemplate
let results = event.results.filter(function (result) {
return result.graphic.layer.popupTemplate;
});
let result = results[0];
highlight && highlight.remove();
// On pointer-click, update the graphic of the Feature widget
// with the result
if (result) {
feature.graphic = result.graphic.clone(); //clone it to avoid mutation
feature.graphic.popupTemplate = sidebardescription;
highlight = layerView.highlight(result.graphic);
} else {
feature.graphic = graphic;
}
});
console.info("popup chosen")
});
});
});
... View more
09-19-2023
01:46 PM
|
0
|
0
|
692
|
|
POST
|
Philip, Try going to the Survey123 webpage under Collaborate and check the box for Who can submit to this survey? Sometimes that box gets reset when you make changes to survey.
... View more
07-06-2023
07:08 AM
|
1
|
0
|
7411
|
|
POST
|
I still don't know what's directly causing the error. But, I was also able to use the tool directly from the Conversion Tools toolbox. And as far as copy/paste goes it didn't seem to be an option?
... View more
04-13-2023
09:14 AM
|
0
|
0
|
2840
|
|
POST
|
Thanks for the links. On the Github page it directs you to the Pricing tab of ArcGIS Developer. There it sounds as if both geocoding services are treated as one and the same?
... View more
04-06-2023
08:38 AM
|
1
|
1
|
1630
|
|
POST
|
Does it act like ESRI world geocoding service and use credits when it is used in a Leaflet map?. I've just begun experimenting with ESRI Leaflet: https://developers.arcgis.com/esri-leaflet/geocode-and-search/search-for-an-address/
... View more
04-05-2023
02:32 PM
|
0
|
3
|
1670
|
|
POST
|
Hello @IsmaelChivite and @ZacharySutherby , I can edit existing points through the survey in the field app just fine thanks to that video. I don't see any issues regarding the bug either. However, this seems to only be available for the field app. Is there also a way to do the same thing in the web version of Survey123? EDIT: After actually looking into it, I found you can do this through the URL thanks to this blog: https://community.esri.com/t5/arcgis-survey123-blog/survey123-tricks-of-the-trade-editing-records-in-a/ba-p/895827
... View more
03-03-2023
10:51 AM
|
0
|
0
|
2401
|
|
POST
|
Two weeks later and I still can't export street annotation to fgdb. A couple things I didn't mention are that I tried exporting both in layout and a map. And the layer shows up in the fgdb, but there is no annotation when I add it to the map. In the Properties menu the Anntation Version is ArcGIS Pro 2.x. I wonder if this has anything to do with the error.
... View more
01-24-2023
11:06 AM
|
0
|
0
|
2983
|
|
POST
|
I'm attempting to export street annotation to the project default.gdb. I have done this in the past with no hang-ups. I'm not sure what has changed, besides maybe updating to Pro 3.0. The error page doesn't reveal much. All it said is check the log files, but I'm only aware of looking at the messages in the History pane under the Analysis tab. I'm wondering if anyone else has seen this? I'm able to use the export features menu on another layer stored in the same *.sde with no problems. Workflow: right click layer in Contents pane --> Data --> Export Features EDIT: I've also created a new *.gdb in the same project folder and attempted to export the anno to it, but received the same error.
... View more
01-11-2023
07:44 AM
|
0
|
4
|
3080
|
|
POST
|
And here's the answer I was looking for. https://www.esri.com/arcgis-blog/products/developers/announcements/introducing-the-arcgis-maps-sdks/
... View more
12-27-2022
09:13 AM
|
0
|
0
|
680
|
|
POST
|
I'm wondering what happened to the ArcGIS API for JavaScript 4.25 help pages or did the name just get changed? I would usually navigate there from the bottom of the ArcGIS Developers page, but it is no longer there: Is it ArcGIS Maps SDK for JavaScript now?
... View more
12-27-2022
08:57 AM
|
0
|
1
|
690
|
|
POST
|
Have you added a map to your Pro project or checked in the Catalog under 'Maps', if available? Last I knew when you bring in an *.mxd with arcpy it doesn't open a map automatically.
... View more
11-30-2022
12:01 PM
|
0
|
0
|
3510
|
|
POST
|
Thanks, disabling the DRA did correct the DTM. However, disabling the DRA on the DSM did not correct the coloring scheme. It will still only show black - white.
... View more
11-03-2022
09:02 AM
|
0
|
3
|
3555
|
|
POST
|
Hi @RussRoberts , Absolutely. I'll just give you the webmap. Open it in the new map viewer to see the DTM and DSM not displaying correctly. The symbology is not even showing up currently for the DSM. I have it set for a multi-part color scheme (blue -red) but it's displaying as black - white. https://willcountygis.maps.arcgis.com/apps/mapviewer/index.html?webmap=c2b23dda0ba941a4a17397acdbabad50 EDIT: I have a case going with ESRI Support, btw. Case #03189149.
... View more
11-03-2022
06:52 AM
|
0
|
5
|
3574
|
|
POST
|
Hello, I published a digital terrain model and a digital surface model from pro to my AGOL account. They do not display correctly in the new map viewer. However, they look fine in the classic map viewer. The problem is, I want them in the new map viewer because there you can group the layers. Any ideas why the imagery is not displaying correctly? New Map Viewer: Classic Map Viewer:
... View more
11-02-2022
07:07 AM
|
0
|
7
|
3639
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 11-13-2025 08:22 AM | |
| 1 | 11-12-2025 08:37 AM | |
| 1 | 10-22-2025 02:14 PM | |
| 1 | 01-17-2019 08:21 AM | |
| 1 | 07-06-2023 07:08 AM |
| Online Status |
Offline
|
| Date Last Visited |
Friday
|