|
IDEA
|
This blog might be of use? Changing Labels in Esri Vector Basemaps
... View more
02-12-2025
07:44 AM
|
0
|
0
|
2181
|
|
POST
|
You can use the Apple Devices App. To install the Apple Devices app on Windows, visit this link: Install the Apple Devices App https://support.apple.com/guide/devices-windows/install-the-apple-devices-app-mchl5ded2763/windows Once installed, connect your iOS device to the Windows computer using a USB cable. The iOS device will appear in the application. Click on Files in the left panel. You will see a list of apps that allow you to copy files from your computer to the app. Select the Navigator App and copy your .mmpk file into the MapPackages folder. In my experience, I couldn't confirm that the .mmpk file was successfully copied into the MapPackages folder through the Apple Devices app. However, I was able to verify the copied .mmpk file using the Files app on my iOS device. When I opened the Navigator app, I could see the map on my device and use it without any issues. The Files App on the IOS device can also be used to manage the content. note: The Apple Devices app was a bit challenging. I did have to connect and disconnect my device via USB a few times before the app recognized that my device was connected. I was also not able to use the App to view the contents of the MapPackages folder.
... View more
02-03-2025
10:04 AM
|
0
|
0
|
1050
|
|
POST
|
Another thing to look at is the mouse settings. I have noticed when 'smooth scrolling' (depending on mouse type) is on, the zooming in Map viewer is difficult to control.
... View more
01-14-2025
08:29 AM
|
0
|
0
|
1745
|
|
POST
|
Does the point that you want to relate to the polygon intersect the polygon? If yes, a feature form with arcade and intersect could be used to calculate the point features relate field to be equal to the polygons globalid. This could happen in Field Maps any time a new point is added or existing point edited.
... View more
12-18-2024
06:13 AM
|
1
|
0
|
2565
|
|
POST
|
@LayerItOn I am not sure why your service changed, but this post has information about how to 'fix it' https://community.esri.com/t5/arcgis-data-interoperability-blog/writing-html-and-other-amp-lt-and-amp-gt-tagged/ba-p/1116925 This is a handy reference for getting a token to use for administrating your service. https://esriaustraliatechblog.wordpress.com/2022/09/01/faq-how-do-i-generate-an-authentication-token-in-arcgis-online-for-accessing-secured-resources/#:~:text=Sign%20in%20to%20ArcGIS.com,t%20try%20it%20out!). I did a repro of what you are experiencing, and found that setting xssPreventionEnabled to false, allow HTML to be entered. Here is more information about the security setting https://enterprise.arcgis.com/en/server/10.9.1/administer/windows/best-practices-for-configuring-a-secure-environment.htm How are you actually using the HTML in your attribute? If it is just for the popup, it might be better to do the HTML in the popup definition, and just put the URL in for the attribute. You could use Arcade in your popup definition to create the HTML for use in the Popup.
... View more
12-16-2024
09:32 AM
|
1
|
1
|
2511
|
|
IDEA
|
The Create Mobile Map Package tool can be used to clip a vector tile package that you have on disk. So, you do have a vector tile package on your local file system that you are running through the tool? correct?
... View more
10-31-2024
01:03 PM
|
0
|
0
|
2920
|
|
POST
|
Oops.. I missed a step.
Add your new layer to a new webmap and save it.
Open the new webmap in field maps designer.
add one form Element to it. (info or group would work)
Then Save the form to the layer.
Refresh ArcGIS Assistant (if you already have it open)
Open the layer...
and the Edit JSON button will be available on the data tab.
Replace the formInfo with your desired formInfo.
... View more
10-01-2024
07:19 AM
|
0
|
1
|
3541
|
|
POST
|
There is a way making use of ArcGIS Assistant to copy formInfo from the layer to a new layer.
In ArcGIS Online add a new item.
Choose Feature Layer and then choose your existing feature layer that your form is using.
updating with missed step
once the new layer is created.
Add the layer to a new map and save that map.
Open the new map in field maps designer.
Add one formElement to it, and save the form to the layer.
Note: In order to edit the JSON in ArcGIS Assistant their needs to be something to edit. If the data is empty the ArcGIS Assistant won't show the Edit JSON button.
For your source map that has the Form that you want to use with a new layer, you need to make sure that you have saved that form to the layer as well using field maps designer.
source form
Use ArcGIS Assistant to copy the formInfo from your source layer.
Select formInfo and copy.
Then open your new layer in ArcGIS Assistant, Edit Json on Data tab, Remove the formInfo and Copy in the source formInfo, and save.
another edit
If the source layer has multiple layers take care to only copy the formInfo from the desired layer and only replace the formInfo section in the new layer.
A few manual steps, but it should work. A new layer with no features and the same schema, including formInfo. Also if you saved the popupinfo and symbol rendering to the layer, you can clone that as well with the same process. You can save that stuff to the layer on the layer items visualization tab.
... View more
09-30-2024
01:06 PM
|
1
|
5
|
3597
|
|
IDEA
|
A bit of a tangent, but on AGOL you can save the form with the layer using Field Maps designer. This would allow you to author the forms once for use in multiple maps.
... View more
08-27-2024
07:44 AM
|
0
|
0
|
1278
|
|
POST
|
Yes, you can. You can calculate a field in your feature class based on the value in a related table. One technique is to the set a value based on the most current related record. This is an example of an Arcade pattern that can be used to do that. var relatedRecords = First(orderBy(FeatureSetByRelationshipName($feature, 'relateTest_inspectionTable'),"CreationDate DESC")); return relatedRecords.Status
... View more
08-23-2024
07:51 AM
|
1
|
1
|
1242
|
|
IDEA
|
maybe this? Is there a way to export a feature service WITHOUT... - Esri Community
... View more
08-23-2024
07:06 AM
|
0
|
0
|
776
|
|
IDEA
|
With imagery (raster data) you will get a rectangular extent. Vector data in the map will clip to the polygon.
... View more
07-25-2024
09:08 AM
|
0
|
0
|
906
|
|
POST
|
This blog is a bit 'vintage' but it does show a workflow for using the Create Map Tile geoprocessing tool that may be helpful to you. You should only use TPK preferably TPKX (newer version of format) if you need raster imagery data. The Vector Tile Package is a much better way to go if you don't have a need for raster data. Rasterizing creating imagery from vector data (create map tile package) creates larger files sizes and does not display as nicely on screen. Vector Tiles (vector tile package) are much better for vector data display.
... View more
07-25-2024
09:03 AM
|
0
|
0
|
1988
|
|
POST
|
Thank you for your valuable feedback regarding the lack of offline support for multi-source vector tile styles. This functionality has not yet reached an actionable level within our R&D group. Your inquiry, along with others, plays a crucial role in shaping our priorities. Again thanks for highlighting this deficiency, and if anyone else would like this implemented please comment. ~ sometimes it takes a village.
... View more
07-25-2024
08:32 AM
|
0
|
0
|
2650
|
|
POST
|
I think what you are after, is Alternate Symbol support in ArcGIS Online, it would be good to enter an Idea similar to this one Support for alternate scale-based symbols in ArcGI... - Esri Community specific to webmaps and the MapViewer.
... View more
07-19-2024
06:20 AM
|
0
|
0
|
2430
|
| 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 |
yesterday
|