|
POST
|
To display raster images that are georeferenced, you will need the raster layer to do this, which as you've found requires at least the standard level license. Graphics overlays are not meant for this sort of thing and won't do what it sounds like you need. SVG isn't supported.
... View more
04-08-2025
09:23 AM
|
0
|
0
|
745
|
|
POST
|
Yes, sorry for the lack of updates on this. The issue turns out to be an interop issue in .NET that affects ARMv7 on Android only. We've implemented a workaround in v200.7 which will be released shortly.
... View more
04-04-2025
09:19 AM
|
2
|
0
|
2898
|
|
POST
|
What's the purpose of this code? I don't really see why you need to set the viewpoint over and over again? With a little more understanding of the scenario you're trying to solve, I might be able to advice a cleaner way to do it.
... View more
04-03-2025
09:24 AM
|
0
|
0
|
555
|
|
POST
|
@RonakPatel That code is equivalent to what I wrote above, but it's a more round-about way requiring a lot more calls.
... View more
04-02-2025
08:55 AM
|
0
|
0
|
935
|
|
POST
|
Also just to add to this: 200.5 was not verified for .NET 9. 200.6 officially supports .NET 9.
... View more
03-27-2025
03:57 PM
|
0
|
0
|
985
|
|
POST
|
What isn't working for you? .NET 9 should work just fine.
... View more
03-21-2025
09:23 AM
|
0
|
1
|
1694
|
|
POST
|
Just to add a note to this: The above code is totally fine for testing, but don't deploy this into production since you'd completely bypass all SSL checks by always returning true here. You could improve it a little by at least only returning true for the specific endpoint with the very specific certificate you'd expect from that server.
... View more
03-21-2025
09:22 AM
|
0
|
0
|
1334
|
|
BLOG
|
@ViktorSafar That's totally fair. Which is why you don't have to use the implicit styles - you can reference the toolkit without getting the implicit styles and get quick access to the huge symbol library for instance. The implicit styles are also somewhat subtle, and you can override the blue brand color. For WPF you get a more modern look rather than the outdated WPF defaults, but MAUI and WinUI already have that modern look so the difference there is smaller. I wouldn't even say that by just using the implicit styles it looks like an esri app - it really comes down to how you build your app up whether that would be the case.
... View more
03-21-2025
08:47 AM
|
0
|
0
|
1240
|
|
POST
|
See full blog post here: https://esriurl.com/calcitedotnet
... View more
03-17-2025
10:29 AM
|
1
|
2
|
877
|
|
POST
|
You can use CIM symbols to do this instead. They have this feature "built in". Here's an example of a JSON version of a zigzag line symbol: {"type":"CIMLineSymbol","symbolLayers":[
{"type":"CIMSolidStroke","effects": [
{"type":"CIMGeometricEffectWave","amplitude":10,"period":3,"seed":1,"waveform":"Triangle"}]
,"enable":true,"capStyle":"Butt","joinStyle":"Round","lineStyle3D":"Strip",
"miterLimit":10,"width":1,"height3D":1,"anchor3D":"Center","color":[104,104,104,255]}]} You can play with the parameters to get what you want. Example of creating a symbol from this JSON: Symbol s = Symbol.FromJson("{\"type\":\"CIMLineSymbol\",\"symbolLayers\":[{\"type\":\"CIMSolidStroke\",\"effects\":[{\"type\":\"CIMGeometricEffectWave\",\"amplitude\":10,\"period\":3,\"seed\":1,\"waveform\":\"Triangle\"}],\"enable\":true,\"capStyle\":\"Butt\",\"joinStyle\":\"Round\",\"lineStyle3D\":\"Strip\",\"miterLimit\":10,\"width\":1,\"height3D\":1,\"anchor3D\":\"Center\",\"color\":[104,104,104,255]}]}")!;
SimpleRenderer r = new SimpleRenderer(s);
layer.Renderer = r; You can also use the CIM APIs to build it up, but JSON is just a quick way to show the concept.
... View more
03-15-2025
11:22 AM
|
2
|
0
|
2609
|
|
POST
|
See the topic on licensing here: https://developers.arcgis.com/net/license-and-deployment/ There's a way to get a lite license yourself that gets rid of the watermark (just beware that the lite license will disable certain features - see full list here). You can also let your users sign into their ArcGIS Online portal and acquire a license from there See ArcGISPortal.GetLicenseInfoAsync. API Keys are different from license keys and only applies to accessing the metered ArcGIS Online location services. Again if your user signs into the portal, you should not set an API key, since this will automatically be provided through their portal organization and billed that way instead.
... View more
03-12-2025
12:40 PM
|
0
|
2
|
2195
|
|
POST
|
You could roll your own version of sync sure, but the entire replica process is there for this exact scenario to ensure multiple users won't modify the same feature, keep track of what changed, and sync new edits both up and down. > It seems like we cannot use Maps SDK for .NET to query any of this information This is a REST endpoint. It wouldn't be a lot of work querying and parsing this information. .NET provides lots of great APIs to work with REST and JSON. My guess is that is probably a lot less work than trying to build your own sync framework. The replica id itself is available on the geodatabase: https://developers.arcgis.com/net/api-reference/api/net/Esri.ArcGISRuntime/Esri.ArcGISRuntime.Data.Geodatabase.SyncId.html
... View more
03-12-2025
12:36 PM
|
1
|
2
|
3102
|
|
POST
|
Are you not planning to sync any local changes back to the server? If so the preplanned workflow might be better for you.
... View more
03-12-2025
11:11 AM
|
0
|
4
|
3115
|
|
POST
|
I started with geodatabase as a potential solution, but creating and managing replicas turned out to be a bigger headache for the client than I thought. Otherwise, geodatabases would've been a perfect solution. Is there a way to create a geodatabase with a feature service WITHOUT creating a replica? Could you elaborate on that a little more on what issues you're encountering? Creating a replica of your geodatabase is the suggested workflow.
... View more
03-12-2025
09:44 AM
|
1
|
6
|
3133
|
| Title | Kudos | Posted |
|---|---|---|
| 2 | Monday | |
| 2 | 03-19-2026 06:03 PM | |
| 1 | 03-03-2026 04:41 PM | |
| 1 | 02-26-2018 07:53 AM | |
| 1 | 02-26-2018 07:51 AM |
| Online Status |
Offline
|
| Date Last Visited |
Tuesday
|