Hello,
Our world map application requires that text labels be stretched side to side depending on the latitude. We accomplish this in WPF easily by setting the ScaleX value of a WPF ScaleTransform object to 1 / cos(latitude), where latitude is expressed in radians.
How could this be accomplished for WpfMap's text? I started to look at the RotatingFeatureText sample for how to override the process, but the sample doesn't do any drawing. Further, it seems that you don't use WPF for drawing. Do you have a similar mechanism that can be used to stretch the resulting text? Or is there a way to override the drawing and use WPF text?
Thank you,
Thaine