|
POST
|
Thanks for confirming. We'll look into whether we can somehow address this out of the box in a future release.
... View more
08-05-2022
09:50 AM
|
0
|
0
|
3314
|
|
POST
|
See https://docs.microsoft.com/en-us/xamarin/ios/troubleshooting/mtouch-errors#mt5217-native-linking-possibly-failed-because-the-linker-command-line-was-too-long--characters Could you try some of the options presented, like `--dynamic-symbol-mode=code` or disabling incremental linking?
... View more
08-05-2022
09:20 AM
|
1
|
2
|
3326
|
|
POST
|
If you're using .NET 6, you don't actually need to use the bluetooth version, but can still use them as a serial port (Windows will assign them port numbers). But otherwise, you'd have to grab the bluetooth data stream yourself before using the above.
... View more
07-27-2022
03:15 PM
|
0
|
1
|
1457
|
|
POST
|
You must have a map with an extent and spatial reference established, or overlays won't render. You can create an empty map and set the SpatialReference in the constructor, and an InitialViewpoint to an extent, and it should show.
... View more
07-27-2022
11:21 AM
|
0
|
0
|
2391
|
|
POST
|
This error can come up when a Domain is used by two fields with different field types: for example, Table A uses the domain with a String field, but Table B uses the domain with a Double field. Domains are shared amongst all tables in the database, and if a table tries to create a Domain with a matching name but some other differing property, this “Domain exists” error is thrown. We're working on improving the error message to make it more clear which domain is causing this.
... View more
07-27-2022
09:51 AM
|
1
|
0
|
1629
|
|
POST
|
There's no out-of-the-box support for this today (it's on our backlog). However, you could intercept the NMEA stream with a stream interceptor class. For example: public class StreamInterceptor : Stream
{
private readonly Stream _baseStream;
public StreamInterceptor(Stream baseStream)
{
_baseStream = baseStream;
}
public event EventHandler<string>? OnData;
public override int Read(byte[] buffer, int offset, int count)
{
int read = _baseStream.Read(buffer, offset, count);
if (read > 0)
{
OnData?.Invoke(this, Encoding.UTF8.GetString(buffer, 0, read));
}
return read;
}
public override bool CanRead => _baseStream.CanRead;
public override bool CanSeek => _baseStream.CanSeek;
public override bool CanWrite => _baseStream.CanWrite;
public override long Length => _baseStream.Length;
public override long Position { get => _baseStream.Position; set => _baseStream.Position = value; }
public override void Flush() => _baseStream.Flush();
public override long Seek(long offset, SeekOrigin origin) => _baseStream.Seek(offset, origin);
public override void SetLength(long value) => _baseStream.SetLength(value);
public override void Write(byte[] buffer, int offset, int count) => _baseStream.Write(buffer, offset, count);
} Then you could create the nmea datasource using this new stream type and listen to the OnData event: SerialPort p = new SerialPort("COM3");
NmeaLocationDataSource ds = NmeaLocationDataSource.FromStreamCreator(
onStart: (ds) =>
{
p.Open();
var sl = new StreamInterceptor(p.BaseStream);
sl.OnData += (s, nmeaString) =>
{
Console.Write(nmeaString); // NMEA raw data string
};
return Task.FromResult<System.IO.Stream>(sl);
},
onStop: (ds) =>
{
p.Close();
return Task.CompletedTask;
}
);
ds.StartAsync();
... View more
07-26-2022
12:03 PM
|
0
|
3
|
1469
|
|
POST
|
Are you setting the correct baud rate for your device?
... View more
07-25-2022
05:30 PM
|
0
|
1
|
927
|
|
POST
|
I'm not sure why your MFC app is running with only TLS1.0 enabled, but if you add this line of code before using the runtime, it should work: ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
... View more
07-25-2022
05:10 PM
|
0
|
0
|
2401
|
|
POST
|
Check the MapView.LocationDisplay. It has several Symbol properties for that exact thing: https://developers.arcgis.com/net/api-reference/api/netwin/Esri.ArcGISRuntime/Esri.ArcGISRuntime.UI.LocationDisplay.html#properties You can use a PictureMarkerSymbol and assign it to any of those symbols.
... View more
07-21-2022
11:22 AM
|
0
|
0
|
988
|
|
POST
|
Target is mid-August with all the usual caveats of timelines (and note this will still be considered preview). I'd suggest using Windows and iOS for now if this is a major issue. I'm still waiting for @Bikash123 to provide more detail on the issue he's hitting, since that doesn't sound just like the known Android issue. Also on a side note the latest Visual Studio 17.3 preview 4 that just shipped has a regression that breaks the Android build completely (this isn't an issue in our SDK but in Microsoft's). You can target net6.0-android33.0 sdk to work around this issue until Microsoft resolves it (see https://github.com/xamarin/xamarin-android/issues/7183)
... View more
07-20-2022
08:54 AM
|
0
|
1
|
3572
|
|
POST
|
> since preview 3 no longer displays the map Could you provide some more details on this? What issue are you hitting? > and Maui has a new release version That shouldn't be an issue. You can use the newer version with Preview 3. Wrt new releases, we plan on another preview with the upcoming Update 15 release.
... View more
07-18-2022
11:55 AM
|
0
|
0
|
1459
|
|
POST
|
Would you be able to create a small sample visual studio project that reproduces the issue and share it?
... View more
07-15-2022
11:05 AM
|
0
|
0
|
2414
|
|
POST
|
That's interesting and new to me then. Any chance you could provide a simple sample application that reproduces this issue?
... View more
07-15-2022
10:51 AM
|
0
|
0
|
3604
|
|
POST
|
There's a known issue with the ios simulator in 14.1. Please see the workaround I put here: https://community.esri.com/t5/arcgis-runtime-sdk-for-net-questions/ios-emulator-with-arcgisruntime-maui-crashes/m-p/1190434/thread-id/11124
... View more
07-15-2022
10:50 AM
|
0
|
0
|
3315
|
|
POST
|
Is this on Android? If so, this is a known issue, and will be fixed in the next release.
... View more
07-14-2022
09:14 AM
|
0
|
5
|
3610
|
| Title | Kudos | Posted |
|---|---|---|
| 2 | 05-11-2026 07:05 AM | |
| 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 |
3 weeks ago
|