|
POST
|
You can use a relationshipclass 1 to many and share that as a webmap. Then in the popup configuration you could use an Arcade Expression to show multiple owners in the popup. Something like this. // hydrantowner is the relationship name
var relatedRecords = featuresetbyrelationshipname($feature, "hydrantowner");
// you can order the attributes returned in the related table field. ASC or DESC ascending descending
var orderRecord = orderBy(relatedRecords, "Owner DESC");
var ownerNames = ""
for (var f in orderRecord){
// Owner is the fieldname in the related tabel that I want to display
ownerNames += text(f.Owner) + textformatting.newline
}
return ownerNames
... View more
09-15-2023
11:10 AM
|
0
|
0
|
1487
|
|
POST
|
If you zoom the map to where the symbol aligns the way you want, and set the Map Reference Scale, would that work for you?
... View more
08-18-2023
06:10 AM
|
0
|
0
|
4250
|
|
POST
|
The short answer is yes. As part of Form Elements it can be done with contingent values, or potentially with Arcade expressions and conditional visibility. https://doc.arcgis.com/en/arcgis-online/create-maps/create-form-mv.htm
... View more
08-17-2023
07:16 AM
|
1
|
3
|
2876
|
|
POST
|
I gave it a try... the Mapviewer is returning a different wkid than Field Maps. Field Maps returns {"x":-17406622.0088,"y":2383466.8805,"spatialReference":{"wkid":3857}} This inconsistency can be worked around by adding another IF accounting for 3857 line 8 if (ArcadeSr == 4326) {
Console("4326 Spatial Reference - No Conversion Necessary");
Latitude = ArcadeY;
Longitude = ArcadeX;
} else if (ArcadeSr == 102100) {
Console("102100 Spatial Reference - Conversion Necessary");
AuxSphereToLatLon(ArcadeX, ArcadeY);
} else if (ArcadeSr == 3857) {
Console("102100 Spatial Reference - Conversion Necessary");
AuxSphereToLatLon(ArcadeX, ArcadeY);
} else {
Console(ArcadeSr + " Spatial Reference is not supported - currently works with Web Maps where the basemap is in WGS84 (4326) or Web Mercator Auxiliary Sphere 102100");
}
... View more
08-14-2023
09:40 AM
|
2
|
0
|
5094
|
|
POST
|
If you want to work with the content offline you may find this blog about using Esri basemap in Mobile Map Packages useful.
... View more
08-14-2023
07:57 AM
|
0
|
0
|
1708
|
|
POST
|
A StreetMapPremium license is needed to use that content.
... View more
08-14-2023
07:48 AM
|
0
|
0
|
500
|
|
POST
|
As @Nicholas-Furness writes this data is available via StreetMapPremium. The offline useable vector tile package of India that you are wanting is 1.2 GigaBytes in size. This Mobile Map Package available through StreetMapPremium also has a routing network and locators that account for 14.8 GigaBytes of its size.
... View more
08-11-2023
12:21 PM
|
0
|
2
|
5100
|
|
POST
|
WMS does not support offline use. Vector Tile Packages (.vtpk) and Tile Packages (.tpkx) do work well for offline basemap workflows.
... View more
07-21-2023
08:52 AM
|
0
|
0
|
1165
|
|
POST
|
Do you want the WMS data to actually display and work when the user is offline? Or is it something that you want in the map, so that it can work if the user is online?
... View more
07-18-2023
06:18 AM
|
0
|
2
|
1191
|
|
POST
|
For using Pro to get offline basemap content into a Mobile Map Package, this blog may help.
... View more
06-22-2023
06:42 AM
|
0
|
0
|
1278
|
|
POST
|
How is it not working as intended? The "World_Basemap_Export_v2" service is optimized for using offline. What is not working as desired?
... View more
06-14-2023
06:53 AM
|
0
|
0
|
1112
|
|
POST
|
here is another view of how it looks for me, photo of ArcGIS Pro and Field maps
... View more
06-02-2023
11:00 AM
|
0
|
0
|
4516
|
|
POST
|
It is a bit of figuring out what size will work best for your mobile worker. It could be that a sizing property that you are using for you symbol is resulting in the difference that you are seeing. In past releases, years ago, we did have a very noticeable difference in symbol size but it is much improved today in current releases. I created this https://www.arcgis.com/home/item.html?id=61e4e3c2dd94485f99fc0c9e6297aee3 using default symbol sizing. I set a reference scale for the map and for the layer with red symbol I turned off "Scale symbols" in the layer properties. In the screenshots I am viewing the map in ArcGIS Pro and Field maps at nearly the same scale.
... View more
06-02-2023
10:36 AM
|
0
|
2
|
4523
|
| Title | Kudos | Posted |
|---|---|---|
| 2 | Wednesday | |
| 2 | 2 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 |
Offline
|
| Date Last Visited |
Friday
|