|
POST
|
Hi @daltvr the error might be a configuration issue with the emulator. Have you tried running the app on an actual device? We have other customers running ArcGIS Maps SDK 4.x for JavaScript on Capacitor. Also check our System Requirements as related to WebGL: https://developers.arcgis.com/javascript/latest/system-requirements/
... View more
06-20-2023
06:54 AM
|
0
|
0
|
1779
|
|
POST
|
Hi @AddisonShaw we don't have any plans for framework-specific wrappers, such as React.
... View more
06-13-2023
09:28 AM
|
1
|
1
|
1302
|
|
POST
|
Hi @CE1, SDK version 4.26 (and 4.25) is only supported on Safari 15 or later: https://developers.arcgis.com/javascript/latest/system-requirements/#supported-browsers. There are also feature specific requirements for SceneViews: https://developers.arcgis.com/javascript/latest/system-requirements/#feature-specific-requirements.
... View more
05-30-2023
06:35 AM
|
0
|
0
|
666
|
|
POST
|
Thanks for reporting. They look the same to me on the repo's 'main' branch and the sample started up okay with no errors. <div #mapViewNode></div> @ViewChild('mapViewNode', { static: true }) private mapViewEl!: ElementRef;
... View more
05-23-2023
07:07 AM
|
0
|
0
|
3437
|
|
POST
|
@jauhari_manihere is the link to the repo for ArcGIS JS SDK's ESM samples: https://github.com/Esri/jsapi-resources/tree/main/esm-samples and there is an Angular v15 (soon to be upgraded to v16) sample in there. We provide these unsupported samples as proof-of-concepts for the latest shipping version the ArcGIS JS SDK (4.26) plus the latest version of framework or bundler. Note, Angular 9 is no longer supported by Google: https://angular.io/guide/releases#actively-supported-versions. If you run into issues with client-side build tools, we also have this handy troubleshooting guide: https://github.com/Esri/jsapi-resources/blob/main/TROUBLESHOOTING.md For framework or bundler questions, it's best to contact those communities directly.
... View more
05-18-2023
09:28 AM
|
0
|
0
|
1354
|
|
POST
|
> The arrow always draws multiple times when there is a new GPS position. Two graphics makes sense. There is the Track widget's graphic being drawn, and you are also adding a graphic to the View's graphic collection. Also, I'm fairly certain you can only set the Track widget's graphic property once, when the widget is first initialized.
... View more
05-12-2023
01:45 PM
|
0
|
1
|
2529
|
|
POST
|
> Does this use the GPS compass heading or the device orientation? The widget just uses the heading value.
... View more
05-12-2023
08:01 AM
|
0
|
3
|
2537
|
|
POST
|
The widget simply passes through all Geolocation API results provided by the browser. Be sure to set the high-accuracy property in the geolocation options. Browser Geolocation API implementations haven't been improved in years, so they can be very flaky. You can monitor what's being returned using something like this: // https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Track.html#event-track
track.on("track", (data) => {
const { longitude, latitude, altitude, heading, speed, accuracy } = data.position.coords;
geolocationResultsDiv.innerText = `
Latitude: ${latitude?.toFixed(4)}
Longitude: ${longitude?.toFixed(4)}
Altitude: ${altitude?.toFixed(1)}
Heading: ${heading?.toFixed(0)}
Speed: ${speed?.toFixed(2)}
Accuracy: ${accuracy?.toFixed(0)}m`;
})
... View more
05-12-2023
07:59 AM
|
0
|
4
|
2537
|
|
POST
|
@BobCowling2 you can try out the new 2D heading graphic for the Track widget using the 4.27 'next' build: https://github.com/Esri/feedback-js-api-next/. The heading symbol will automatically display when the speed is greater than 0 and heading values are provided by the browser's Geolocation API.
... View more
05-11-2023
12:00 PM
|
0
|
6
|
2540
|
|
POST
|
We are only aware of the SDKs legacy TS decorator issue mentioned in the link I pasted above. Angular 16 just released a few days ago: https://blog.angular.io/angular-v16-is-here-4d7a28ec680d. We did limited testing on the beta and didn't find any issues.
... View more
05-08-2023
03:55 PM
|
1
|
1
|
2477
|
|
POST
|
Hi @PeteVitt, are you using the AMD CDN or "@arcgis/core"? https://github.com/Esri/jsapi-resources/tree/main/esm-samples/jsapi-angular-cli#known-issues
... View more
05-08-2023
03:20 PM
|
0
|
3
|
2488
|
|
POST
|
Hi @ShaneBuscher the size increase is because AMD modules are only being loaded at runtime, and they are not included in the app bundles. The ES modules (@arcgis/core) are being included and bundled along with the app. Here's a bit more info on bundle size: https://github.com/Esri/jsapi-resources/tree/main/esm-samples#bundle-size-and-performance. The app will only use the modules that it needs at runtime.
... View more
05-03-2023
12:38 PM
|
0
|
1
|
2006
|
|
POST
|
@MichailMarinakis1 correct, you can extend the ViewModel. And, creating fully custom widgets means building your own functionality either by extending the Widget base class, or building from scratch using a UI library. And, correct, we no longer provide the out-of-the-box widgets View files. There was little-to-no abstraction with the core internals, and that made for a very brittle approach, lots of breaking changes and limited our ability to upgrade capabilities. Here's a ViewModel example: https://developers.arcgis.com/javascript/latest/sample-code/sketch-viewmodel-styler/.
... View more
04-28-2023
08:54 AM
|
1
|
1
|
2718
|
|
POST
|
@BobCowling2 if the enhancements make it in, 4.27 is scheduled for early summer (2023).
... View more
04-26-2023
04:54 PM
|
1
|
7
|
2582
|
|
POST
|
Hi @BobCowling2 we are working on similar functionality for the Track widget that is tentatively scheduled for the 4.27 release. I can post an update when that is available for testing on the 'next' build, or do you need something sooner than that?
... View more
04-26-2023
03:25 PM
|
0
|
9
|
2593
|
| Title | Kudos | Posted |
|---|---|---|
| 2 | 08-01-2025 06:20 AM | |
| 1 | 05-27-2025 12:39 PM | |
| 1 | 04-23-2025 06:56 AM | |
| 1 | 04-23-2025 07:09 AM | |
| 1 | 04-08-2025 09:05 AM |
| Online Status |
Offline
|
| Date Last Visited |
12-05-2025
07:24 AM
|