OrdinaryLayer.PixelMarginLeft Property
Gets or sets the number of pixels that should be added to the left side of the geographic area when updating the layer.
Syntax
public System.Int32 PixelMarginLeft { get; set; }
Property Value
Default: 100
The number of pixels that are added to the left side of the geographic area when the layer is updated.
Remarks
This property is used to extend the geographic area that is searched for features when updating the layer, to include features that are geographically outside the view rectangle, but whose visualization might be partially inside the rectangle. A good example is point features like cities visualized with text labels.
You should set this and the other similar properties of this class to values matching the largest distance that the visualization of any feature in the layer could extend from the geographical bounds of the feature. For instance, if you visualize city names, centered on the point features for the cities, you should set PixelMarginLeft and PixelMarginRight to half the maximum width of the texts (in screen pixels), and PixelMarginUp and PixelMarginDown to half the maximum height.
There are two main reasons for specifying this and the other similar properties:
If you use a BitmapLayer or similar, redrawing only parts of the view might result in visualization of certain object being clipped. By setting this property large enough, you can make sure that close-by objects are included in partial updates, so that texts and other visualization are included in the partial update as well.
Selection of objects, both by the built-in tools and programmatically using the View.WhatsIn or View.WhatsAt methods, is implemented using local updates around the selection point or rectangle. Only features returned in these updates are then processed further, to see if their visualization intersects the selection area. Without this property, features that are close by, but not inside, the selection area would not be found, even if their visualization would intersect the selection area.
If the layer contains visualization that are scaled with the view, you should probably use GeographicMargin instead. This will add a margin specified in meters instead of screen pixels. Set GeographicMargin to a value equal to the size of the largest visualization extent in meters.
Setting this and the other margin properties (including GeographicMargin) is not needed for layers under a TileLayer, GlobeTileLayer or a GlobeView, and will not have any effect.
For the surface layers in a globe view (GlobeView.SurfaceLayers), it is usually not needed either, and if all the margin properties have their default values, no margins will be applied. But there are cases when a margin is desired to avoid artifacts between tiles. If so you can set at least one of the properties to a non-default value; then the specified margins will be applied.
Platforms
Windows, Linux, Android