|
POST
|
I don't have the solution you are asking for, but you could symbolize the map by time? Set up a separate layer for each individual. and use an Arcade expression to show the more recent dates more prominently. Take your feature layer and define symbols based on a Arcade expression similar to this. Then edit an expression Then try an expression like this: var vstat = ''
var time1 = Date($feature.CreationDate)
if (DateDiff(Now(), time1, 'minutes')<=5){
vstat = 'within last 5 minutes'
}
else{
vstat = 'older than 5 minutes'
}
return vstat; I used 5 minutes for time, but you can use days, hours, etc... This will give you some default symbols, modify them to get a display you want. I made the older times more transparent. You could make them completely transparent, only showing the individual if it was in your specified time. Set a Refresh Interval on the layer, so it will automatically update over time. After that I set a filter to a specific 'animal' Then just copied the layer and set Filter and Symbols for each individual. In the first picture above I also labeled using the same expression, to give some context. Mark
... View more
04-22-2020
02:34 PM
|
1
|
1
|
2633
|
|
POST
|
You could search by Item ID to get one result back. id:31922281fed54135bf7c2b34a6e9a5e9
... View more
04-21-2020
10:35 AM
|
0
|
0
|
1760
|
|
POST
|
... also another option would be to manually edit the .VTPK unzip the archive In the Level of Detail section, for the highest level of detail, set the scale as desired ex. "0.01" Then zip the Archive back up. I use 7 zip with the following settings, rename to .vtpk This will allow you to zoom to the scale specified. Mark
... View more
04-20-2020
04:38 PM
|
1
|
0
|
1605
|
|
POST
|
As you have noted the application is limiting is zoom range to the Visible extent of the layer (vtpk) in your map. For the MMPK you can get around this by using a basemap and adding a layer to the basemap that is visible at all scales.
... View more
04-20-2020
03:45 PM
|
1
|
2
|
1605
|
|
POST
|
Using Arcade you could use. Proper($feature.Primary, 'everyword') Text Functions | ArcGIS for Developers
... View more
04-20-2020
02:24 PM
|
3
|
0
|
5486
|
|
POST
|
Yes, this is true. Raster layer symbology, drawing properties, are not supported in the Mobile Package. You could create a Map Tile Package of your TIF, or export a new version of it with the desired colors ' burned into' the raster file. This is something that we have on our list to support in the future. Really appreciate your feedback on this, it is the requests of the User Community that helps us prioritize the the work that we do. Thank you, Mark
... View more
04-20-2020
08:11 AM
|
2
|
3
|
1987
|
|
POST
|
Kory, You could also set it up in ArcGIS Pro like the following: Choose unique values for symbology and set an Arcade expression of your choice to get the job done. Given the description you gave, I used. If (IsEmpty($feature.upstream)) { return 'No Upstream' } Else if (IsEmpty($feature.downstream)){ return 'No Downstream' } Else { return 'Complete' } Then in the Symbol Pane I added the possible values that the Arcade expression could return. (you need at least one feature to do this, but you don't need all possible types) Type the values in exactly as they would be returned from your Arcade Expression. Then Share as a webmap from ArcGIS Pro. As you work in Collector the map will symbolize (and label if you use the expression there) as defined by the Arcade. Mark
... View more
04-15-2020
02:45 PM
|
5
|
1
|
4700
|
|
POST
|
Rudy, Are you using the Create Mobile Map Package tool to create your MMPK? The output mobile map package should be limited to the extent that you specify in the tool. or area of interest if you use that option. Mark
... View more
04-08-2020
11:52 AM
|
0
|
0
|
962
|
|
POST
|
Walter, You could look label all values that end in '0' var a = right($feature.Contour,1) if (number(a) < 1) { a = $feature.Contour } else { a = '' } return a; mark
... View more
03-27-2020
02:08 PM
|
0
|
0
|
2273
|
|
POST
|
Check out Nonprofit Program For out of the box solution. Survey123 (or Collector) would be a good fit for capturing the information in the field. Explorer can provide a read only version of the map for use in the field (low or no cost). Mark
... View more
03-20-2020
01:02 PM
|
0
|
0
|
1681
|
|
POST
|
this site has a downloadable .csv https://usafacts.org/visualizations/coronavirus-covid-19-spread-map/
... View more
03-20-2020
10:05 AM
|
0
|
1
|
2779
|
|
POST
|
You could use Polygon Labels instead? you can control how much goes over the line, using over run
... View more
03-09-2020
04:05 PM
|
0
|
1
|
1229
|
|
POST
|
Not sure on the streaming details - but this was just announced Watch the Esri Developer Summit Live
... View more
03-06-2020
09:12 AM
|
2
|
2
|
6226
|
| Title | Kudos | Posted |
|---|---|---|
| 2 | 2 weeks ago | |
| 2 | 3 weeks ago | |
| 1 | 09-30-2024 01:06 PM | |
| 1 | 03-09-2026 01:14 PM | |
| 1 | 07-31-2025 05:51 AM |
| Online Status |
Online
|
| Date Last Visited |
yesterday
|