Hello, I’m hoping you can help me understand when to use which overlay.
Currently I have an application that is essentially a gps tracker, only instead of using a single marker to show a position, I’m drawing a polygon to scale based on calculations given a point, and dimensions of the object being tracked. From the given gps point, I’m calculating the necessary positions to represent the object on the map.
Now, currently I’m storing these features in an InMemoryFeatureLayer, which is in a basic LayerOverlay.
I’ve been looking at the latest HowDoI samples, specifically the VehicleNavigation sample, and noticed that it is making use of FeatureLayerWpfDrawingOverlay, which got me wondering if that’s something I should be using instead.
I haven’t really found much documentation (other than the basic api docs) that explain what each overlay type is for and which should be used when, so I’m hoping you can provide some insight.