|
POST
|
Hi, regarding the Popup Design updates in version 4.28, if the content of the popup is higher than the map, there is no vertical scrolling in the popup. Here is the comparison in 4.27 vs 4.28: Regards, Matej
... View more
10-24-2023
04:03 AM
|
2
|
6
|
2216
|
|
POST
|
Hi, it seems that caching in the custom data provider is not working at all in version 11.1. Should be fixed in version 11.2: https://support.esri.com/en-us/bug/the-ttl-property-set-in-the-custom-data-provider-source-bug-000159991 Hopefully the documentation will be expanded with debugging, logging, caching and other useful details for implementing your own data providers. Matej
... View more
09-05-2023
11:34 PM
|
2
|
2
|
1772
|
|
EVENT
|
Obávám se, že taková možnost aktuálně v Dashboards není. Do "těla" indikátoru (top/middle/bottom) je možné dosadit pouze ikonu/text a pomocí Arcade řídit obsah a barvu. Vlastní HTML/CSS lze u indikátoru definovat pouze pro Nadpis a Popis tohoto elementu. Přiznám se, že sám bych ocenil širší podporu HTML v Dashboards elementech a proto mi nezbývá, než doporučit toto vylepšení sdílet na ArcGIS Ideas.
... View more
05-15-2023
09:58 AM
|
0
|
0
|
1290
|
|
EVENT
|
Dobrý den, V elementu Indicator lze vlastní HTML využít pro nadpis (Title) a popis (Description) tohoto elementu, které lze konfigurovat na kartě Obecné: Obsah HTML je přebírán z vlastních atributů slovníku, který je vytvořen Arcade skriptem (klidně i využitím Template Literal):
... View more
05-15-2023
12:05 AM
|
0
|
2
|
1372
|
|
BLOG
|
Hi, thank you for sharing this. I'd like to add that the Feature coming from a FeatureSet is indeed immutable, you can create a mutable one using a Feature function itself. dict.features = [];
for (var f in fs) {
var f_new = Feature(f);
f_new.PARK_ALL = f.PARK_NA + f.PARK_OA + f.PARK_A + f.PARK_K;
f_new.KM_NEXT = calculateDistanceToNext(f);
Push(dict.features, f_new);
} I also found out, that the Dictionary returned by a Schema function is immutable as well (don't know why). But it is possible to create a mutable copy of it and use it as a skeleton for an output FeatureSet. var dict = Dictionary(Text(Schema(fs))); Regards, Matej
... View more
04-21-2023
02:28 AM
|
1
|
0
|
2875
|
|
BLOG
|
Hi, great to see COG support in the JS API! Are there any plans to expand it further? Say add a COG from a URL directly in the Map Viewer, save a layer referencing the COG (or add a COG layer directly to the portal content), ...maybe a STAC widget for the JS API? Thanks, Matej
... View more
12-02-2022
12:18 AM
|
1
|
0
|
841
|
|
IDEA
|
Hi, with the recent release of JS API 4.25, there is a beta support for COGs. https://developers.arcgis.com/javascript/latest/sample-code/layers-imagerytilelayer-cog/ PS: it would be great if Pro supports searching raster data using STAC and Image Server supports STAC spec on its image services build on top of mosaic datasets. Matej
... View more
11-16-2022
02:13 AM
|
0
|
0
|
8870
|
|
POST
|
Hi @AnneFitz, perfect, works like a charm. Thank you for fixing this! Matej
... View more
10-19-2022
09:21 AM
|
0
|
0
|
5074
|
|
POST
|
Hi, The CIMPolygonSymbol is not rendering it's CIMSolidStroke symbol layers if also using a CIMSolidFill symbol layer with a color set by primitive override. If disabling the primitive override for a CIMSolidFill color and using a fixed color value, the CIMSolidStroke layers are rendered just fine. Also, the symbol is rendered correctly in ArcGIS Pro. Only the JS API is troubled by the problem. Here is a sample map: https://www.arcgis.com/apps/mapviewer/index.html?webmap=92ed57d2bf34475a8f5e2bb730eeaeaf. The webmap rendered in ArcGIS Pro: The webmap rendered in JS API: Any idea how to solve this? Thanks, Matej
... View more
10-12-2022
07:50 AM
|
0
|
3
|
5142
|
|
POST
|
Hi, The Standard Metadata published as a multi-layer services are not available in a Hub's data catalog as I would expect. Instead the Item's Metadata are available in a data catalog as a metadata for individual layers which Hub dynamically populates from the multi-layer service. Actually, there is a lot of places where the metadata is available after publishing a service: .../rest/services/{servicename}/Feature(Map)Server/info/metadata .../rest/services/{servicename}/Feature(Map)Server/{layer_id}/metadata (this should be used) .../sharing/rest/content/items/{item_id}/info/metadata/metadata.xml (this is used) Having the service's layer metadata available in a Hub would be very useful, especially if consuming data from enterprise geodatabase, where the metadata is stored and managed. In this case, changes in a metadata inside an enterprise geodatabase are automatically available thru the REST API, without the need to re-publish the service, but are not available in a Hub. Are there any plans for changing the metadata flow in ArcGIS Hub? Thanks, Matej
... View more
09-20-2022
05:01 AM
|
0
|
1
|
755
|
|
POST
|
Hi, There is now a possibility to insert a Code Snippets into a Notebook running on ArcGIS Enterprise (11+) and ArcGIS Online. These Code Snippets are stored as an item of a type: "Notebook Code Snippets" and are curated by Esri. In ArcGIS Enterprise, the Notebook Code Snippets item id is 23f01974be8f41a8969d70ee1bab12bd. Individual code snippets are stored as a .txt files at the item's /resources level: https://<hostname>/portal/sharing/rest/content/items/23f01974be8f41a8969d70ee1bab12bd/resources. Is it possible to create a custom code snippet to be used in my notebooks? Thanks, Matej
... View more
08-18-2022
05:58 AM
|
0
|
1
|
1209
|
|
POST
|
Hi, A GeoPackage file exported from a hosted feature layer in ArcGIS Enterprise 11 is missing a required system tables: gpkg_spatial_ref_sys, gpkg_contents, gpkg_geometry_columns, which leads to the exported geopackage cannot be opened in a 3rd party applications. A GeoPackage exported from a hosted feature layer in ArcGIS Online does contain the required system tables (see the attached screenshot) and can be used in other systems. I'm also attaching the exported geopackage files. Thanks, Matej
... View more
08-18-2022
01:39 AM
|
0
|
0
|
621
|
|
POST
|
For anyone looking for an answer, the webhook's payload is injected into a notebook automatically as a global variable named "webhookPayload". Do not declare the variable "webhookPayload" in a notebook, just use it, oterwise it will overwrite the injected one. Matej
... View more
08-11-2022
07:51 AM
|
2
|
0
|
1190
|
|
POST
|
Hi, How to access a webhook payload in a notebook executed via a webhook event? There is a documentation: Automate a notebook using webhooks, describing how to setup a webhook with a notebook listenere, however, there is no example on how to use a webhook payload inside a notebook. Thanks, Matej
... View more
08-11-2022
12:27 AM
|
3
|
1
|
1226
|
|
POST
|
Hi, the operationalHealth.py script is failing if running on top of the ArcGIS Enterprise with a federated ArcGIS Notebook Server. The script is looking for data stores accross all of the federated servers, however a notebook server does not have any /data endpoint in its Admin REST API. Also the sslCertificates (camel case) vs sslcertificates is another difference between a Notebook Server and other Server Roles in their REST APIs. Matej
... View more
08-08-2022
06:22 AM
|
1
|
1
|
812
|
| Title | Kudos | Posted |
|---|---|---|
| 2 | 11-02-2025 10:58 AM | |
| 1 | 12-02-2022 12:18 AM | |
| 5 | 02-27-2025 12:39 AM | |
| 1 | 04-22-2024 01:00 PM | |
| 2 | 09-20-2024 01:19 AM |
| Online Status |
Offline
|
| Date Last Visited |
yesterday
|