POST
|
We've been working on a custom feature editor that uses server based user logins to integrate AWS services with AGOL login. This has been working fine on localhost, the user is sent to the right URL and we can get a token back. Flow is: 1. Send user to URL (below) 2. Get code back 3. Exchange for a token via a lambda, that also registers a Cognito identity token for AWS credentials 4. Send back to client and register with IdentityManager. Launching it to AWS cloudfront, however, I get an "invalid redirect_uri" error - example: https://cityofmelbourne.maps.arcgis.com/sharing/rest/oauth2/authorize?client_id=0KBzlPo2662D42j5&expiration=20160&redirect_uri=https%3A%2F%2Fd2b025iknw7h16.cloudfront.net%23&response_type=code I've added the cloudfront URL to the whitelisted redirect URIs (both https and http). Neither work: Am I missing something? As a side note, passing an expiration to the above URL (/rest/oauth2/authorize) does nothing, and my token expires within 30 minutes. Am I doing something wrong there?
... View more
08-30-2020
07:34 PM
|
0
|
0
|
616
|
POST
|
Forgive my ignorance, as I a developer newly navigating the obscene complexities of ArcGIS JS, though can't that be simplified by just having an isDragging flag and updating the graphic's geometry directly? // ... do your setup const view = new WebMapView ( ... ) const graphic = new Graphic ( ... ) view . graphics . add ( graphic ) ; let isDragging = false ; view . when () . then ( () => view . on ( ' drag ' , e => { // if you've started dragging on the graphic in question view . hitTest ( e ) . then ( res => { // set isDragging to true at the start if ( res . results [ 0 ] . graphic === graphic && e . action === " start " ) isDragging = true ; // set isDragging to false at the end else if ( e . action === " end " ) isDragging = false } ) if ( isDragging ) { // prevent the map being panned mid-drag e . stopPropagation () ; // Update the graphic's geometry to the new drag pos graphic . geometry = view . toMap ( e ) } } ) )
... View more
08-26-2020
11:57 PM
|
0
|
2
|
248
|
POST
|
Late reply... but helpful if anyone else comes across this. My understanding is that if you don't use IdentityManager OAuth flow you're left to your own devices to store and re-register the token. Underneath your ` IdentityManager. registerToken` call, store the response in localStorage. Then on page load, grab the token out of localStorage, and register it again via `IdentityManager.registerToken`. How to request a refresh token when a call returns 403 forbidden? That's another story I'm currently investigating. I'll report back if I figure it out.
... View more
08-06-2020
09:39 PM
|
0
|
0
|
110
|
IDEA
|
Unless I'm missing something, it doesn't seem like you can label a line feature in a 3D scene in ArcGIS Online. The labeling of point features is a good start, are there any plans to roll this out to labeling of line features in 3D? This functionality would allow us to bring in things such as street labels in a 3D integrated mesh, which are fast becoming the norm for 3D web scenes.
... View more
07-07-2019
03:23 PM
|
6
|
1
|
227
|
IDEA
|
It'd be great if the 3D labelling capabilities could be improved, by providing a similar level of customisation available with 2D labelling. There aren't currently any suitable techniques to label streets when displaying a 3D photo textured mesh layers within both ArcGIS Pro and in 3D webscenes. Currently we are labelling line features but the line labels are visible through the buildings that are in front of them. Can we please have the ability to control drawing order (display order) of our labels in 3D space? Images attached show the current labelling available in ESRI and some of the techniques that have been implemented by Google in their mapping platform.
... View more
07-23-2018
09:15 PM
|
2
|
1
|
204
|
IDEA
|
It'd be great if the 3D labelling capabilities could be improved, by providing a similar level of customisation available with 2D labelling. There aren't currently any suitable techniques to label streets when displaying a 3D photo textured mesh layers within both ArcGIS Pro and in 3D webscenes. Currently we are labelling line features but the line labels are visible through the buildings that are in front of them. Can we please have the ability to control drawing order (display order) of our labels in 3D space? Images attached show the current labelling available in ESRI and some of the techniques that have been implemented by Google in their mapping platform.
... View more
07-23-2018
09:15 PM
|
2
|
1
|
201
|
POST
|
Hi Phillip, Thanks for the update, i have location disabled on Windows 10, and working fine. It is disabled on Windows 7, on which it crashes I agree deleting dll's is not a good thing - i had a look at early - only only late December version Rudy
... View more
04-08-2018
11:09 PM
|
1
|
0
|
20
|
POST
|
No i am not giving up hope - we are using it extensively, and now all our work has come to a halt Faulting application name: Survey123ConnectforArcGIS.exe, version: 2.7.72.0, time stamp: 0x5a9f08dc Faulting module name: AppStudio-WindowsLocation7.dll, version: 0.0.0.0, time stamp: 0x5a052613 Exception code: 0xc0000005 Fault offset: 0x000017d3 Faulting process id: 0x1040 Faulting application start time: 0x01d3cf8ab0193ada Faulting application path: C:\Program Files (x86)\ArcGIS\Survey123\Survey123ConnectforArcGIS.exe Faulting module path: C:\Program Files (x86)\ArcGIS\Survey123\position\AppStudio-WindowsLocation7.dll Report Id: 008034ba-3b7e-11e8-a152-6c0b84a977d8 I have deleted AppStudio-WindowsLocation7.dll, and now it is working fine
... View more
04-08-2018
09:51 PM
|
0
|
2
|
20
|
POST
|
Hi All, We have virtually given up on using Survey123 Connect for ArcGIS. We have tried the last couple of version, all with the same issue. opening a form, closing a form, on settings, trying to delete a form, etc. It crashes about 30+ in 10 minutes. Using in this case version 2.7.72
... View more
04-05-2018
03:57 PM
|
0
|
4
|
141
|
Online Status |
Offline
|
Date Last Visited |
Sunday
|