POST
|
My project was created today in the current version, it has nothing but a point layer and basemap.
... View more
12-14-2018
11:32 AM
|
0
|
0
|
83
|
POST
|
Same issue here, only my legend items are stuck on the right and I can't align them to the left
... View more
12-14-2018
10:32 AM
|
0
|
12
|
214
|
POST
|
This is a point feature class in a FGDB. I'm adding them through the chained edit operation below: long newFeatureID = - 1 ; //temporarily holds ObjID of a new point var createOperation = new EditOperation { Name = "REGEN POINTS" } ; var atts = new Dictionary < string , object > ( ) ; //create the points now for ( int x = ( int ) minX ; x < maxX ; x + = sampleDist ) { for ( int y = ( int ) minY ; y < maxY ; y + = sampleDist ) { //first check if point is even within polygon MapPoint pt = MapPointBuilder . CreateMapPoint ( x , y ) ; if ( EdgeBuffer != 0 ? ! GeometryEngine . Instance . Contains ( blockpolygon , GeometryEngine . Instance . Buffer ( pt , EdgeBuffer ) ) : ! GeometryEngine . Instance . Contains ( blockpolygon , pt ) ) continue ; // point IS in polygon, keep going atts . Clear ( ) ; createOperation = createOperation . CreateChainedOperation ( ) ; atts . Add ( "Shape" , pt ) ; atts . Add ( "P_ID" , counter_pid ) ; newFeatureID = - 1 ; createOperation . Create ( SelectedPointFeatureLayer , atts , ( object_id ) = > newFeatureID = object_id ) ; createOperation . Execute ( ) ; } }
... View more
09-14-2018
09:30 AM
|
0
|
1
|
16
|
POST
|
I'm working with a basic polygon and point feature class in the same FGDB in the most recent ArcPro 2.2. Each polygon contains points in a grid, but for some reason when I delete points and recreate them I can't see the changes. The changes ARE being applied to the featureclass, but it will not visually update. I can even select the points where they've been created (but invisible). Refreshing the map with F5 doesn't help, nor does clearing the cache in the point layer. I'm also using MapView.Active.Redraw(true); but again no luck. surely there's a way of force updating the layer?
... View more
09-14-2018
08:40 AM
|
0
|
3
|
253
|
POST
|
What would be the easiest way to play around with scales (say if you wanted smaller scale for higher detail)?
... View more
01-23-2018
09:58 AM
|
0
|
0
|
63
|
POST
|
Is there a way to determine when the map is finished rendering? there was a post in 2015 saying it was coming out soon, but I can't find any mention of it in the API reference or any kind of search
... View more
01-23-2018
09:23 AM
|
0
|
2
|
153
|
POST
|
Hello, I was wondering how I could upload and share a map (as a webmap) with a group through ArcPro SDK. The same functionality as the Sharing>Web Map panel that comes with ArcPro. There are some snippets of getting things from online, but none about sharing them There is also some Community samples however they only show how to upload non-map items, and do not share. Any help would be appreciated Thanks!
... View more
11-29-2017
11:26 AM
|
0
|
0
|
64
|
POST
|
To paste code snippets go to the 3 dots Expand > More > Syntax Highlighter, set language and paste
... View more
11-22-2017
11:24 AM
|
0
|
1
|
16
|
POST
|
This is what I use in my code: var createOperation = new ArcGIS.Desktop.Editing.EditOperation { Name = "Chained operation" }; .. start loop.. createOperation = createOperation.CreateChainedOperation(); createOperation.Create( ... ); // or modify, same thing createOperation.Execute(); .. end loop
... View more
11-22-2017
08:54 AM
|
2
|
2
|
16
|
Online Status |
Offline
|
Date Last Visited |
11-11-2020
02:24 AM
|