|
POST
|
sorry to get back at this issue again 😁 I am curious here.... if I edit my layer (WGS 1984 Web Mercator (auxiliary sphere) ) in a web map and create a line feature with the tooltips enable....if I follow the back of the property line I get the 95ft (which is geodesic) If I do the same process in ArcGIS Pro (same layer) and use the Distance Tool to create the line my 95ft is planar All I would like here is a little bit of consistency.
... View more
06-19-2023
08:17 AM
|
0
|
3
|
9691
|
|
IDEA
|
When editing a line feature in a web map, you can enable the Tooltips and get the total length of the segment. If you edit a polygon feature, you only get the area....It would be nice if the Total Length of a segment would also be display when creating a polygon.
... View more
06-19-2023
07:22 AM
|
0
|
2
|
1121
|
|
POST
|
Yes, but my problem is that I also need to add lines based on survey data (see image below. Back of property line is 95', if I use the Edit/Distance tool and type 95... it doesn't match). I which we could have the option to CHOOSE between Planar and Geodesic when editing Web Mercator Auxillary Sphere data
... View more
06-15-2023
01:32 PM
|
0
|
2
|
1581
|
|
POST
|
yes most likely, but would you know of a way to create a feature (101'x193') using feature template regardless of where you are?
... View more
06-14-2023
11:19 AM
|
0
|
4
|
1593
|
|
POST
|
The image is not of a great quality but I believe you have a typo: seems like you have [company_something} and it should be {company_something}
... View more
06-14-2023
06:04 AM
|
0
|
0
|
1130
|
|
POST
|
ok... few questions 1) why WGS 1984 Web Mercator (auxiliary sphere) is the default coord system when you create a new item (Feature Layer) in AGOL then? 2) 99.9% of my work is done in SP coord (from our own arcgis server) which I don't have any issues creating data. This is a weird project I have, which coord system would you recommend for data creating across 6-7 states? I need the info to be stored on AGOL. Thanks!
... View more
06-13-2023
02:46 PM
|
0
|
5
|
9722
|
|
POST
|
Hi I created a feature template (building layout 101'x193') that I would like to use across many states. But I noticed that the dimensions are different if using the template in South Dakota Vs Nebraska let's say I create the template in SD, if I use it in NE, then the dimensions are (104x200), IA I get (106x204). My question is: is it possible to create a feature template that will return CONSISTENT dimensions regardless of the state you are in? Thanks
... View more
06-13-2023
11:49 AM
|
0
|
6
|
1613
|
|
POST
|
Thanks! @LanceCole for helping with this I decided to use the USA Contiguous Equidistant Conic (PCS) which allow me to use the Distance tool to create a line matching the survey value and the basemap (as a visual reference of course). I did tried your option of NAD83 which seems to yield the same result which now give me a transformation; Seems to be working, not 100% sure if it's the way to go... Thanks!
... View more
06-13-2023
11:23 AM
|
0
|
1
|
9729
|
|
POST
|
You can use {value} for dynamic parameter (see image below) as for the SDK, there are a bunch of samples in the following folder: C:\Program Files\ArcGIS\Server\GeoEvent\sdk\samples Hope that can help. D
... View more
06-13-2023
06:13 AM
|
0
|
2
|
1151
|
|
POST
|
Thanks Lance all the layers in my map have the same Coord System Under the Transformation, I get this ... No Transformation required... but obviously I need to add one but I am not sure what to choose But I still can't create a feature using the Distance option (which looks like it's using Planar) that would give me my 95' for the property line. Any suggestions of what else I could try? Thanks!
... View more
06-12-2023
07:25 AM
|
0
|
3
|
9736
|
|
POST
|
Hello I have a Hosted Feature Layer that I created in AGOL, I am trying to edit the data in ArcGIS Pro. If I setup the map Coordinate system to a localize system (like State Plane) I can create a line with the expected distance(see image below). The problem is my area of interest if fairly large: All the Midwest states) . My question is: Which Coord System should I use that would give me the most accurate distance throughout my area of interest (Midwest from Illinois to South Dakota...) I am guessing one of these? Also, I am trying to use template to create building layout (40'x50') and I would like to be consistent as well.. Any help would be much appreciated Thanks! Dominic The highlighted line is 95' (from a survey)... depending on the Coord System.. the value chance Hosted Feature Layer spatial reference
... View more
06-09-2023
12:22 PM
|
0
|
12
|
11464
|
|
POST
|
nope, just shared with the Org and with the following settings:
... View more
05-08-2023
06:50 AM
|
0
|
0
|
1727
|
|
POST
|
Hello I created a simple flow 3 months ago using the arcgis Connector. When a record is created, get some of the information and send an email. Everything was working fine until May 1st (as of Friday April 28th, flow was working as expected, Then starting May 1st, flow stopped working returning following error:) This is the basic flow: I have tried with different feature layers and ALSO with different office 365 sites and I am getting the same results. Any ideas? Thanks!
... View more
05-08-2023
06:26 AM
|
0
|
5
|
1745
|
|
POST
|
I believe this issue has been resolved with the latest update (https://www.esri.com/arcgis-blog/products/arcgis-online/mapping/go-beyond-the-smart-editor-using-smart-forms/) below is my revised code and not it's working as expected // Define the edit context so the value is only calculated when the feature is created
if ($editContext.editType == "INSERT") {
// Lookup the value for the last created feature
var last_feature = First(OrderBy($layer, 'FUID DESC'));
// If the last value was empty write 1, otherwise add 1 to the value
// calculate and return the next fuid
var max_fuid = last_feature.FUID
var next_fuid_number = Number(Replace(max_fuid, "EOC", "")) + 1
return "EOC" + Text(next_fuid_number, "00000")
} else {
// When the feature is updated, return the existing value in this field
// and do not calculate a new value
$feature.FUID
}
... View more
05-04-2023
01:40 PM
|
0
|
1
|
1546
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 03-26-2026 01:47 PM | |
| 1 | 08-05-2024 06:19 AM | |
| 1 | 06-11-2025 08:07 AM | |
| 1 | 07-13-2025 04:58 PM | |
| 1 | 02-27-2025 08:13 AM |
| Online Status |
Offline
|
| Date Last Visited |
2 weeks ago
|