POST
|
Is there a way that i could get in touch with you off-thread to covnerse about this issue?
... View more
05-19-2020
02:09 PM
|
0
|
1
|
1954
|
POST
|
Thank you for the resources. I have been given the green light to focus on this project again. Yes, I did mean i was trying to get to the median version of 10.2.7, before trying to go to 100.7.
... View more
05-19-2020
12:41 PM
|
0
|
0
|
1954
|
POST
|
Yes, I do. However, the quarantine here has rreset the priorities for my workload and this has been pushed down a bit. I was working to first migrate to 10.7.2, and got almost everything working, except the mouse interactions with the map that my app needs in order to be functional. I should be able to get back to it in a few weeks, and would appreciate any help you're willing to offer.
... View more
05-18-2020
10:05 AM
|
0
|
2
|
1954
|
POST
|
Recently, my team has inherited an older application and have been tasked with updating the packages that it has. i have three ESRI.ArcGIS.Client dll's that were downloaded into the Visual Studio 2008 solution when the app was created: ESRI.ArcGIS.Client (version 3.0.0.318) ESRI.ArcGIS.Client.Toolkit (version 3.0.0.318) ESRI.ArcGIS.Client.Local (version 1.0.0.3057) I cannot find documentation anywhere for these versions, and when I use the Nuget Package Manager to download the 100.7, and remove the previous version, i get somewhere around 775 errors, mostly for classes that don't exist in the new versions. Is there anyone that may have the above mentioned versions' documentation stashed anywhere so I can definitively tell what the classes and methods I have in my application are and/or how i could define them enough to map them to objects, classes, or methods in 100.7?
... View more
02-24-2020
12:44 PM
|
0
|
8
|
2217
|
POST
|
I also posted on this last year,in this thread. Upon revisiting, I am still in a place of inconsistency. The map refresh process only works about half the time with over 10 icons on the map. I am hoping to link the threads and helpful individuals to get a resolution to this issue. @JenniferNery
... View more
04-12-2019
10:23 AM
|
0
|
0
|
1571
|
POST
|
i briefly upgraded to Runtime 100.5 and ran my application. Had the same results, that it inconsistently renders the PictureMarkerSymbol, especially when there are more that 5 or 6 symbols on the base map
... View more
04-10-2019
02:27 PM
|
0
|
0
|
1571
|
POST
|
I cannot switch to 100.5, out of my hands in that area. i will try to remove the awaiter on the last line to see if that resolves the issue.
... View more
04-10-2019
02:12 PM
|
0
|
2
|
1571
|
POST
|
I am working in a WPF client application with the ArcGISRuntime version of 100.1. currently i am experiencing an issue getting my PictureMarkerSymbol to render consistently when there are more than 5 or 6 items on my map vector tile base map. I am combining it with a text marker symbol, to create a composite symbol on the map, and the test symbol portion will always render. I have passed a list of items to this code snippet one at a time to create the symbols. Please let me know if i need to post more code or you have any questions. public static async Task<Symbol> CreateSymbols(string text, SymbolTypes type, SymbolShapes shape) { var iconPath = string.Empty; iconPath = string.Format(@"pack://application:,,,/Images/{0}_{1}.png", type.ToString(), shape.ToString()); var icon = new Uri(iconPath, UriKind.RelativeOrAbsolute); var pc = new PictureMarkerSymbol(icon); pc.Width = 30; pc.Height = 30; var cm = new CompositeSymbol(); var ts = new TextSymbol() { Color = Colors.Black, FontStyle = FontStyle.Normal, FontDecoration = FontDecoration.None, FontFamily = "Arial", FontWeight = FontWeight.Bold, Size = 14, VerticalAlignment = VerticalAlignment.Middle, HorizontalAlignment = HorizontalAlignment.Center, OffsetY = shape == SymbolShapes.Arrow ? 5 : 0 }; ts.Text = text; cm.Symbols.Add(pc); cm.Symbols.Add(ts); return await Task.Factory.StartNew<Symbol>(() => { return cm; }); }
... View more
04-10-2019
01:55 PM
|
0
|
5
|
1668
|
POST
|
Completing this is not an option for me, due to time constraints and the regression testing needed to ensure it was done properly. Quick Question though: What type of files could be used as a PictureMarkerSymbol? I am thinking that the .PNG files might not scale well to a vector tile base map, and the visible extent, so I was going to try converting to a .SVG file. But thats a lot of work, so I want to be sure the object can render it properly.
... View more
12-28-2018
09:59 AM
|
0
|
0
|
499
|
POST
|
I will try that first thing tomorrow, since I reverted back to 4.6.0 today already.
... View more
12-27-2018
02:27 PM
|
0
|
1
|
499
|
POST
|
I am sorry for the misleading names. GraphicsLayer is a GraphicsOverlayCollection. I am having an issue installing 100.4 to my solution, even after upgrading to .NET Framework v4.6.1. It says that my app supports 'Unsupported Version 0.0' and I should contact the author if the SDK to get it..
... View more
12-27-2018
01:31 PM
|
0
|
3
|
2959
|
POST
|
I was noticing the mixture of 100.1 and 10.2, while trying to get everything to 100.4, but thought it was by design. I can totally see that being an issue if the two versions aren't compatible. I have taken the asynchronous calls out previously without changing how it is behaving. In the screen shot that I provided above, there weren't any collisions with other icons on there and it doesn't seem to follow any pattern for which ones show the picture and which ones don't. I am going to take some time to implement 100.1 completely, just to ensure that i am all on 1 version before i try anything else. Thank you for your help. I will update this thread once I have finished that.
... View more
12-27-2018
12:20 PM
|
0
|
0
|
2959
|
POST
|
I have not yet completed moving to 100.4, but will let you know as soon as i do.
... View more
12-27-2018
10:40 AM
|
0
|
6
|
2959
|
POST
|
I am going to edit the original question with the Geometry, extent, and the png file for the symbol
... View more
12-27-2018
10:34 AM
|
0
|
0
|
2959
|
POST
|
I have tried to create the PictureMarkerSymbol without the text or composite symbols, and it behaved similarly, where sometimes all of the picture markers are there, and then sometimes when the map is refreshed, some of them don't show up. I also tried creating them like you did in your example, but the same issue occurred. I could not find in my solution where i am setting the Rendering Mode, but by reading the description, it is set to Dynamic, since the icons stay the same regardless of zooming in and out. I have been working to move to ArcGIS Runtime version 100.4, but since i have both 100.1 and 10.2.7.1234 in my solution, its a pretty intense change.
... View more
12-27-2018
10:24 AM
|
0
|
0
|
2959
|
Online Status |
Offline
|
Date Last Visited |
06-16-2022
10:49 AM
|