POST
|
Thank you. Is there a timeline for this? This year? Next year?
... View more
05-21-2015
11:18 AM
|
0
|
0
|
33
|
POST
|
Hello Everyone, I recently finished upgrading my application from the WPF sdk to the .NET sdk. I'm now at the point where I want to create a heatmap I can't seem to find anything in the .net sdk documentation regarding heatmaps. Am I missing something or do I have to revert back the the WPF sdk in order to do this?
... View more
05-21-2015
06:22 AM
|
0
|
3
|
4271
|
POST
|
I'd just like to say that I can confirm that this is fixed as of 10.2.5. Thank you everyone for your help.
... View more
02-11-2015
07:32 AM
|
0
|
0
|
45
|
POST
|
Hi, I was wondering what kind of bandwidth usage there is for running an esri server with a custom layer(no basemap). About 1-20 people will be accessing the data(from a wpf application) at any given time. Thanks, Vincent Vassallo
... View more
01-09-2015
09:03 AM
|
0
|
1
|
4509
|
POST
|
MapViewTapped and MapViewDoubleTapped on the MapView are what you are looking for. Code Example - MapView_Overlays --- Example of MapViewTapped being used.
... View more
12-22-2014
07:54 AM
|
1
|
4
|
169
|
POST
|
That sucks. Is there any release timeline information anywhere?
... View more
12-08-2014
06:03 AM
|
0
|
0
|
45
|
POST
|
Morten Nielsen wrote: [...] Note intersection is done including partial intersection, and not just fully within. That is exactly what I want it to do but it doesn't seem to be happening that way for me.
... View more
12-05-2014
01:47 PM
|
0
|
2
|
45
|
POST
|
I do have the attributes set on the graphic for example graphic.Attributes["Start"] = new DateTime(2014,12,5,6,0,0) // Dec 5th 6AM graphic.Attributes["End"] = new DateTime(2014,12,5,6,30,0) // Dec 5th 6:30AM The time Extent is set as binding. But the object it is bound to is CurrentTimeExtent = new TimeExtent(new DateTime(2014,12,5,5,58,0), new DateTime(2014,12,5,6,3,0)) // From 5:58 to 6:03 When it is defined like this it shows the point on the map correctly because the Start is within the time extent. I have a timer the increases the start and endtime of the time extent by 5 minutes. After the first tick when the time extent is now from 6:03 to 6:08 the point is not longer displayed.
... View more
12-05-2014
01:37 PM
|
0
|
0
|
45
|
POST
|
I did a bit more digging. I used this code to check what I thought should be currently displayed For Each g As Graphic In source If te1.Intersects(New TimeExtent(g.Attributes("Start"), g.Attributes("End"))) Then count += 1 End If Next Where te1 is timeextent set on the MapView. This code returns a considerably higher count than what is being displayed on the map. The following code has a count of exactly what is being displayed. For Each g As Graphic In source If te1.Intersects(g.Attributes("Start")) Then count += 1 End If Next How does the layer determine what is within the time extent and is there a way to change it?
... View more
12-05-2014
12:40 PM
|
0
|
6
|
45
|
Online Status |
Offline
|
Date Last Visited |
11-11-2020
02:23 AM
|