|
POST
|
Yes a few of the draw operations are a drag, not a click+click like polygon.
... View more
01-25-2021
09:16 AM
|
0
|
1
|
2597
|
|
POST
|
Are you doing the mouse-down+drag operation and don't even see a circle getting drawn? Or just not seeing the events fire? Which platform are you targeting?
... View more
01-25-2021
08:56 AM
|
0
|
3
|
2602
|
|
POST
|
What are the label expressions you use on each graphics overlay? How are you assigning them to the overlays?
... View more
01-21-2021
09:49 AM
|
0
|
1
|
6186
|
|
POST
|
It looks to me the surface isn't loaded in your mobile app. Are you hitting an http or https service? Note that both android and ios by default blocks http services now, so could just be the surface data fails to load.
... View more
01-21-2021
09:46 AM
|
0
|
1
|
1649
|
|
POST
|
Which services are in the map you're taking offline? Are you sure these are vector services, and not raster services?
... View more
01-15-2021
09:00 AM
|
0
|
0
|
2097
|
|
POST
|
> Like I mention, because the value of lat/lon in the database are correct, it seems to me that point itself is valid. I'm a little confused here. You mentioned the issue was with the time stamp you're writing, not the geometry. Have you (in addition to validating the geometry), validated that the time stamp you're getting from your custom NMEA datasource is actually correct?
... View more
01-06-2021
10:54 AM
|
0
|
0
|
2711
|
|
POST
|
It's not clear to me when you say this problem occurs. Does the problem occur with the location you get from the NMEA Parser, does it occur when you insert, or does it occur after it got into the database? What did you do to validate that the location coming from the NMEA parser is valid before adding it to the table? I wouldn't read much into what the sqlite database functions interpret that number value as. It's not what we use, and it doesn't appear like the datetime() sqlite function takes a double, but an integer I think. > I should note that when this occurs many of the GNSS fields are null, so that data may not be picked up from the receiver You should probably validate that the location is valid and a proper fix and timestamp before using it?
... View more
01-05-2021
02:03 PM
|
0
|
0
|
2722
|
|
POST
|
> But in a high number of the offline *.geodatabases that fail to sync when this data is exported to cvs and opened in Excel the ESRIGNSS_FIXDATETIME comes in as a number and does not get converted to a date I'm not sure which process you use here to do that, but note that the local geodatabase format doesn't actually support dates and uses an epoch number instead to store dates. It's the schema of the table that tells us that the number should be interpreted as a date. > This does not throw an exception, but it writes the invalid value. I'm not sure what you mean by "the invalid value" ? What makes it an invalid value? In your check for whether the timestamp is null or not, can't you also validate what value it contains? Also I'm not entirely sure why you're converting the timestamp to DateTime? Attributes should generally be using DateTimeOffset instead of DateTime. So you can replace nmeaLocation.Timestamp.Value.UtcDateTime with nmeaLocation.Timestamp.Value
... View more
01-05-2021
12:36 PM
|
0
|
0
|
2733
|
|
POST
|
As Calvin is hinting at, the maximum size you can take offline is limited in the service's settings. If you own the service, you can increase that limit - if you don't own the service, you're at the mercy of the owner and have to stay within the maximum limitation. Note that a cache for the entire world could be several terabytes!
... View more
01-04-2021
12:39 PM
|
1
|
0
|
5152
|
|
POST
|
It will not. We're working on releasing an early preview with support for it. Stay tuned... You can use the non-UI components though.
... View more
01-04-2021
12:34 PM
|
2
|
0
|
1153
|
|
POST
|
Try loading the layer explicitly and see if an error is thrown (and what that error is): try {
await tileLayer.LoadAsync();
}
catch(System.Exception ex) {
// Inspect ex here
} I'm guessing the issue is your app might not be able to directly read from the path you're specifying.
... View more
12-15-2020
10:03 AM
|
0
|
0
|
1737
|
|
POST
|
> I am still having a problem with my ICommand not adding AnotherLayer() Can you clarify what problem? Is the code not executing, can you step through and see how far you come? Are you getting an exception? Is the layer getting added to the Map's layer collection, but it's just not showing on the map, or? If you step through, how far are you getting? I also don't see in your code where you execute RadarCommand. Do you have something like `<Button Command="{Binding RadarCommand, Source={StaticResource MapViewModel}}" />` anywhere On a side-note: Be careful with this line: `await featureLayer.LoadAsync();` If that throws (for instance if the server is down or there is a network glitch), your entire app will crash. Any time you have a method that says "async void" instead of 'async Task', make sure you try/catch from before the first await call until the last line of code.
... View more
12-02-2020
04:04 PM
|
0
|
0
|
5624
|
|
POST
|
Because UWP is running in a sandbox you can't read the TPK directly from disk. Typically after picking the file, you'd need to copy it inside the sandbox using Storage APIs, typically the apps' Temp or Local Data folder. As an alternative, you could give read access to the Windows system account user "ALL_APPLICATION_PACKAGES", which would allow your app to read it directly (that's good for quick testing, but probably not in a production scenario). The documentation is a bit problematic because it doesn't account for this. We'll try and get that fixed
... View more
12-02-2020
10:21 AM
|
1
|
1
|
2300
|
|
POST
|
A callstack would definitely be helpful. Otherwise it's just pure guesswork what went wrong. > I have been able the intercept the exception before the app closes and I’m encountering a null reference exception [...] At the moment I am not able to add any stack trace info, but will do this later. If you're able to intercept it, at that breakpoint you should be able to see the stacktrace. Also you can try enabling break on any null reference exception in the exception settings:
... View more
12-01-2020
04:26 PM
|
0
|
1
|
2305
|
|
POST
|
If you have a chance, could you try and upgrade Visual Studio to the latest 16.8.0+ and see if this resolves your issue? We've seen one other case where this resolved it for them.
... View more
11-16-2020
12:23 PM
|
0
|
2
|
3606
|
| 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 |
2 weeks ago
|