|
POST
|
You can do this using Alternate Symbols. Choose Unique Values Click the Scale Tab Select your symbol and then add alternate symbols to display at the specified scale.
... View more
07-19-2024
06:03 AM
|
0
|
0
|
1213
|
|
POST
|
This has been implemented for the Maps SDKs https://community.esri.com/t5/arcgis-maps-sdks-native-ideas/support-for-alternate-scale-based-symbols-in/idi-p/972250
... View more
07-19-2024
05:59 AM
|
0
|
0
|
1316
|
|
POST
|
Hi Katie, Can you confirm that the maparea for the webmap still exists online, and that it is the same maparea that the surveyors are using to work offline? Mark
... View more
07-10-2024
09:15 AM
|
0
|
1
|
1222
|
|
POST
|
Are you adding the .csv using XY Table to Point? (I would expect packaging to work .csv data added this way) One thing you could try is using Export Features to create a new feature class from your added .csv data, and try creating a mobile map package that includes it. Slightly different code path than repair geometry, perhaps it will yield a different result?
... View more
06-20-2024
06:39 AM
|
1
|
1
|
1656
|
|
POST
|
In the latest release of the Native Maps SDK there is new Feature Forms attribute editing API that may be of interest to you. Not the same as Survey123, but a similar Forms workflow. https://www.esri.com/arcgis-blog/products/developers/announcements/whats-new-in-arcgis-maps-sdks-for-native-apps-200-4/#:~:text=Version%20200.4%20of%20the%20ArcGIS,clustering%20to%20include%20graphics%20overlays.
... View more
05-09-2024
08:57 AM
|
0
|
0
|
2430
|
|
POST
|
For anyone searching how to do this, and finding this thread, you can also do the following: return getuser(portal('https://www.arcgis.com')).username
... View more
03-15-2024
02:03 PM
|
4
|
1
|
7311
|
|
POST
|
You can use Arcade and DomainName to get the Label or Description for the domain. mark
... View more
03-04-2024
09:53 AM
|
1
|
0
|
1860
|
|
POST
|
You could try using the Diagnostic Monitor to see if it indicates something of interest. Diagnostic Monitor—ArcGIS Pro | Documentation Mark
... View more
02-26-2024
08:43 AM
|
0
|
1
|
6481
|
|
POST
|
This sounds like a good idea to submit, not just for field map but perhaps something for the Map Specification... a type of "map message" or "map popup" perhaps that has capabilities for forcing users to accept conditions prior to using the map... and perhaps other workflows of that nature. This would be applicable to any application that is capable of loading a map.
... View more
01-11-2024
09:01 AM
|
1
|
0
|
1326
|
|
POST
|
@WernerStangl_ehess ArcGIS Pro may provide functionality that can help for your use case. If you open a webmap (insert tab --> Import Map --> My Content (Insert a webmap that you own) You can use "Save Web Map" button on the Share tab to modify an existing webmap. https://pro.arcgis.com/en/pro-app/latest/help/sharing/overview/save-a-web-map.htm
... View more
12-28-2023
12:09 PM
|
1
|
3
|
13389
|
|
POST
|
The scale is being locked to the visible range of your basemap. If you change it to display at all scales, you will be able to zoom at all scales. I set the visible range to world, and apps built with the Maps SDK were able to zoom all of the scales. This is not specific to your code, it is how the Maps SDKs work.
... View more
12-07-2023
05:11 PM
|
0
|
0
|
1174
|
|
POST
|
Exclusive Visibility will be available in Enterprise 11.2
... View more
10-27-2023
01:10 PM
|
0
|
0
|
1906
|
|
POST
|
You might be interested in exclusive visibility in a group layer ?
... View more
10-13-2023
05:42 AM
|
1
|
2
|
2159
|
|
POST
|
Yes, its possible with Arcade. here is a minimal expression: // Find the features within the buffere distance and display in popup
var nearbyfeatures = featuresetbyname($map,"Points_w_Names", ['Name'])
var bufferedLocation = Buffer($feature, 15, 'kilometers')
var candidateFacilities = Intersects(nearbyfeatures, bufferedLocation)
var out_str = ''
for (var x in candidateFacilities){
var fname = DomainName(x, 'Name')
out_str +=`${fname}`+ TextFormatting.NewLine
}
return out_str and here is the map to check it out. https://www.arcgis.com/apps/mapviewer/index.html?webmap=1c0e1599eaa046e5a688c2b192a70fad
... View more
10-05-2023
08:48 AM
|
0
|
1
|
1186
|
| Title | Kudos | Posted |
|---|---|---|
| 2 | Wednesday | |
| 2 | a week ago | |
| 1 | 09-30-2024 01:06 PM | |
| 1 | 03-09-2026 01:14 PM | |
| 1 | 07-31-2025 05:51 AM |
| Online Status |
Offline
|
| Date Last Visited |
Friday
|