我VectorLayer
在后面创建了一个代码来显示车辆行驶的路径。但是添加一个图层来MapControl
使用某种动画。路径不会立即出现,它需要一两秒钟。有没有办法禁用这个动画?
MapPolyline path = CreatePath(); // setting points, color, thichness, etc...
VectorLayer layer = new VectorLayer() { };
layer.Data = new ObservableCollection<MapItem>() { path };
mapControl.Layers.Insert( 0, layer );