|
POST
|
Hi there, Would you mind sharing a simple reproducible example? It would help us understand the issue more clearly and troubleshoot it faster.
... View more
05-08-2025
01:49 PM
|
0
|
1
|
747
|
|
POST
|
Hi there, In addition to calling highlightSelectRoom.remove (), you also need to clear collection of highlightIds from the feature table. You can this in action in this sample - https://developers.arcgis.com/javascript/latest/sample-code/sandbox/?sample=highlight-features-by-geometry Essentially you need to add this line: table.highlightIds.removeAll(); Hope this helps, -Undral
... View more
05-07-2025
09:17 AM
|
1
|
2
|
1000
|
|
POST
|
You’re seeing this behavior because all operational layers in your web map have timeAnimation set to false as seen here. As a result, setting the map component’s timeExtent has no effect on layers. Each time aware layer is effectively ignoring the time extent since their useViewTime property is also set to false. To enable time-based rendering, you need to explicitly set the useViewTime property to true for each layer after the map has finished loading. This ensures the layers respect the map component's timeExtent. Here is a simplified version of your app working: https://codepen.io/U_B_U/pen/oggyWyW?editors=0010
... View more
05-06-2025
03:11 PM
|
1
|
1
|
384
|
|
POST
|
There isn't a workaround for this. It seems like you might be creating a client-side StreamLayer. You can review the field names and remove any special characters when setting up the layer. We'll be updating the documentation to include the requirements for field names.
... View more
04-25-2025
07:31 AM
|
0
|
1
|
584
|
|
POST
|
Hi there, Field names containing special characters are not supported in any layer when using the JavaScript API. Could you let us know which type of layer you're working with? This documentation outlines the characters that are not permitted in field names. You need to normalize your field names to get your layer working propertly.
... View more
04-24-2025
04:25 PM
|
0
|
1
|
608
|
|
POST
|
Hi there, The BaseTileLayer overview doc will be updated with the following info in version 4.33.
... View more
04-22-2025
02:04 PM
|
0
|
0
|
680
|
|
POST
|
https://github.com/Esri/calcite-design-system/issues/11987 - you should have access to this issue as long as you have github account
... View more
04-22-2025
11:41 AM
|
2
|
0
|
172
|
|
POST
|
Hi there, You can contact esri support services through one of the means on their page - https://support.esri.com/en-us/contact
... View more
04-22-2025
08:26 AM
|
0
|
1
|
1013
|
|
POST
|
Can you please submit an issue via Support Servces? We then will attach our internal issue to the support issue. This way, you will have a link to connect to. Thanks
... View more
04-18-2025
03:53 PM
|
0
|
1
|
1089
|
|
POST
|
Hi there, It is not possible to set leading 0s with either calcite-input-number or calcite-input of type="number". We have an enhancement request for this. Will update you once it is supported. Would you mind giving your use case for needing 3 leading 0s? Thanks
... View more
04-18-2025
08:12 AM
|
0
|
3
|
1108
|
|
POST
|
Hi there, BaseTileLayer is designed to be a generic tile layer and is not limited to working with ArcGIS map services — that's what TileLayer is for. Because of this, it doesn’t make assumptions about the type of data it can retrieve from various sources. Could you share a bit more about why you're creating a custom BaseTileLayer? Understanding your use case will help us improve support and documentation. We'll update the BaseTileLayer documentation to reflect this workflow more clearly.
... View more
04-15-2025
08:48 PM
|
0
|
1
|
803
|
|
POST
|
Hi there, Thanks for the clarification! I should’ve read the post a bit more carefully. You're almost there! BaseTileLayer and WebTileLayer are preconfigured to use the Web Mercator spatial reference. To align your BaseTileLayer with your service, you'll need to explicitly set the tileInfo, spatialReference, and fullExtent properties in the custom layer's constructor. This CodePen demonstrates that approach: https://codepen.io/U_B_U/pen/yyyBzMO?editors=1000 Alternatively, if you want to avoid creating a custom layer, you can use WebTileLayer directly as shown below: const tiledLayer = new WebTileLayer({
urlTemplate: "https://services1.arcgisonline.co.nz/arcgis/rest/services/Imagery/newzealand/MapServer/tile/{z}/{y}/{x}",
tileInfo,
fullExtent,
spatialReference
});
... View more
04-15-2025
10:25 AM
|
0
|
1
|
839
|
|
POST
|
Hi there, I believe you're talking about projecting your TileLayer into different spatial references. Please let me know if I’ve misunderstood. It's important to note that TileLayer cannot be reprojected on the client side. This is outlined in MapView.spatialReference doc, specifically, it states that in order for TileLayer and VectorTileLayer to render correctly as part of a basemap, the MapView's spatialReference must match the tileInfo.spatialReference of those layers.
... View more
04-14-2025
09:05 AM
|
0
|
3
|
883
|
|
POST
|
Grrr! I am sorry! I thought I replied but this fell through the cracks. I am glad you were able to figure it out. I mean to post the following code snippet. import "@arcgis/map-components/components/arcgis-map";
import "@arcgis/map-components/components/arcgis-legend";
import "@arcgis/map-components/components/arcgis-search";
import "@arcgis/map-components/components/arcgis-expand";
import "@arcgis/map-components/components/arcgis-sketch";
import "@arcgis/map-components/components/arcgis-placement";
import { useEffect, useRef, useState } from "react";
export function App() {
const mapRef = useRef(null);
const [showSketch, setShowSketch] = useState(true);
useEffect(() => {
if (!mapRef.current) return;
if (!showSketch) {
mapRef.current.querySelector(".esri-sketch")?.classList.add("hidden");
} else {
mapRef.current.querySelector(".esri-sketch")?.classList.remove("hidden");
}
}, [showSketch, mapRef]);
return (
<arcgis-map
ref={mapRef}
itemId="d5dda743788a4b0688fe48f43ae7beb9"
onarcgisViewReadyChange={(event) => {
console.log("MapView ready", event);
}}
>
<arcgis-search position="top-right"></arcgis-search>
<arcgis-legend position="bottom-left"></arcgis-legend>
<arcgis-sketch position="top-left" auto-destroy-disabled></arcgis-sketch>
<arcgis-placement position="bottom-right">
<calcite-button onClick={() => setShowSketch(!showSketch)}>Toggle Sketch</calcite-button>
</arcgis-placement>
</arcgis-map>
);
}
... View more
04-10-2025
10:54 AM
|
0
|
0
|
597
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 3 weeks ago | |
| 1 | 07-09-2025 08:48 AM | |
| 2 | 07-08-2025 08:09 AM | |
| 2 | 07-07-2025 03:57 PM | |
| 1 | 06-11-2025 03:25 PM |
| Online Status |
Offline
|
| Date Last Visited |
a week ago
|