|
POST
|
Hi @KrishnakanthYachareni correct I don't think that will work, here is the documentation: https://developers.arcgis.com/javascript/latest/api-reference/esri-PopupTemplate.html#content. Since the Popup content is created on-the-fly, I wouldn't expect the Angular component code to run correctly since it's occurring outside of the Angular component life-cycle. I'm not sure how this works in Ivy, you used to use the EventManager approach to run outside of NgZone. https://angular.io/api/platform-browser/EventManager.
... View more
04-26-2022
12:43 PM
|
0
|
0
|
1333
|
|
POST
|
Hi @FabianHanggi sorry for the delay, this seems to be an issue with the browserslist. No clue why React uses those default params. I used the following settings and it built and ran on my machine: "browserslist": {
"production": [
"last 1 chrome version",
"last 1 firefox version",
"last 2 safari major versions",
"last 2 edge major versions",
"last 2 iOS major versions",
"Firefox ESR"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 2 safari major versions",
"last 2 edge major versions",
"last 2 iOS major versions",
"Firefox ESR" ]
}
... View more
04-21-2022
02:46 PM
|
1
|
3
|
4483
|
|
POST
|
Hi@mursalahmed if you are starting a new project with React and using local builds, then we recommend using our ES modules (@arcgis/core) instead of the AMD modules that are injected using the esri-loader library. Here is an example repository: https://github.com/Esri/jsapi-resources/tree/master/esm-samples/jsapi-create-react-app. You can learn more about the differences between the modules here: https://developers.arcgis.com/javascript/latest/tooling-intro/.
... View more
04-20-2022
01:30 PM
|
0
|
0
|
1582
|
|
POST
|
Hi @orahlagi one suggestion is to use the ArcGIS JS API code from this sample: https://developers.arcgis.com/javascript/latest/sample-code/widgets-feature-sidepanel/. If you need a test repo for experimenting, here is an Angular 13 app where you can add the widget code to try it out: https://github.com/Esri/jsapi-resources/tree/master/esm-samples/jsapi-angular-cli.
... View more
04-18-2022
09:55 AM
|
1
|
0
|
950
|
|
POST
|
Hi @arahman_mdmajid since you can't share the layers, the best approach is to open a support ticket. Tech Support can do a deep dive investigation to document the issue and try to recreate it.
... View more
04-12-2022
09:31 AM
|
0
|
0
|
4545
|
|
POST
|
This post is a duplicate. Please direct comments/questions to the other thread => https://community.esri.com/t5/arcgis-api-for-javascript-questions/map-lagging-on-drag-and-drop-movement/m-p/1162995#M76973.
... View more
04-11-2022
02:56 PM
|
1
|
0
|
1629
|
|
POST
|
@arahman_mdmajidplease provide a simple codepen, github or stackblitz that we can use to test/reproduce your issue. I suspect the original reported issue was not related to Angular. [Updated} Duplicate posting: https://community.esri.com/t5/arcgis-api-for-javascript-questions/basemap-pan-and-zoom-lagging-jittery/m-p/1162985#M76972.
... View more
04-11-2022
02:45 PM
|
0
|
2
|
4568
|
|
POST
|
@FabianHanggican you provide a github repository that reproduces the issue? If you don't want to share it publicly you can direct message me with a link. Also, if you haven't had a chance yet, be sure to take a look at the 4.23 release notes in the breaking changes section: https://developers.arcgis.com/javascript/latest/release-notes/#breaking-changes.
... View more
04-08-2022
10:02 AM
|
1
|
5
|
4590
|
|
POST
|
@RichardReinickecheck out the Managing Assets Locally doc here: https://developers.arcgis.com/javascript/latest/es-modules/#managing-assets-locally. You can copy the assets from anywhere and you can manually configure the path used by the API for consuming assets. Take a look at that and see if it meets your requirements.
... View more
04-01-2022
08:01 AM
|
0
|
0
|
1843
|
|
POST
|
@FranAcuñaParraI took a quick look at the repo, thanks. Since, there's nothing obvious within the map component, this is most likely an issue with CSS inheritance and not an issue with the ArcGIS JS API. My guess is you'll need to do some Angular component CSS debugging in the developer tools and see what's being inherited and what's being overridden. Have you tried setting the @arcgis/core CSS in the "Parent" component? There aren't any rules about style sheet extensions. And, there shouldn't be any conflicts with @arcgis/core/assets and Angular, however if you do get an error we'd like to know about it.
... View more
03-28-2022
04:00 PM
|
0
|
1
|
5303
|
|
POST
|
The behavior you are describing about the map panning itself is expected if the CSS isn't loaded or didn't load correctly due to a component life-cycle issue. If you comment out the main.css then then map won't work correctly. With regards to the version mismatch warnings, those will be resolved in a few days. They are showing up temporarily because we are in the process of releasing patches for 4.23, which just came out last week: https://www.esri.com/arcgis-blog/products/js-api-arcgis/announcements/whats-new-in-arcgis-api-for-javascript-4-23/
... View more
03-28-2022
12:31 PM
|
0
|
3
|
5314
|
|
POST
|
@RichardReinickeit depends on where you copy the assets to within the project. Here's some doc on it that might help get you pointed in the right direction: https://developers.arcgis.com/javascript/latest/es-modules/#managing-assets-locally If you are still stuck, create a simple github repo and send us a link and we'll take a look.
... View more
03-28-2022
09:15 AM
|
0
|
0
|
1324
|
|
POST
|
HI @FranAcuñaParra can you provide a simple example that reproduces your issue in github, codesandbox or stackblitz?
... View more
03-28-2022
09:06 AM
|
0
|
1
|
5332
|
|
POST
|
Hi @RichardReinicke are you putting together a package for public usage, or for internal-use only? The Angular docs provide guidelines for shipping asset files with a library, in case you hadn't had a chance to review them: https://angular.io/guide/creating-libraries#managing-assets-in-a-library.
... View more
03-28-2022
08:57 AM
|
0
|
2
|
1869
|
|
POST
|
As @JohnGrayson suggested below, try using the JS APIs geodesicUtils.pointDistance(): https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-support-geodesicUtils.html#pointFromDistance
... View more
03-24-2022
07:47 AM
|
0
|
1
|
4900
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 04-10-2026 08:29 AM | |
| 1 | 03-26-2026 03:12 PM | |
| 2 | 02-21-2026 10:23 AM | |
| 2 | 08-01-2025 06:20 AM | |
| 1 | 05-27-2025 12:39 PM |
| Online Status |
Offline
|
| Date Last Visited |
yesterday
|