Click here to Skip to main content
15,881,938 members
Articles / Programming Languages / C# 4.0

Bézier Curves in Bing Silverlight Maps

Rate me:
Please Sign up or sign in to vote.
4.94/5 (13 votes)
30 Aug 2010CPOL2 min read 61.3K   970   23   7
Connecting geographical locations on Bing Maps with Bézier curves

Introduction

Bing Maps Silverlight Control library has a MapPolyline class for showing connected points on the map. I wanted my points to be smoothly connected, but there wasn't out-of-the-box support so I developed a custom control deriving from MapShapeBase [^] class.

Bézier Curve on map.

Background

Every developer who messed with Expression Blend or Gimp long enough knows by experimentation how a Bézier curve behaves. Basically a cubic Bézier curve has an initial point (P1), two control points (B1, B2) and a final point (P2).

Bézier Curve

The formula that defines a cubic Bézier curve is:

P(t) = (1-t)<sup>3</sup>P<sub>1</sub> + 3(1-t)<sup>2</sup>tB<sub>1</sub> + 3(1-t)t<sup>2</sup>B<sub>2</sub> + t<sup>3</sup>P<sub>2</sub>

where t is in the interval [0,1]. Terms multiplying P1, B1, B2, P2 are called the basis functions for the cubic Bézier. Our points determine how much of these basis functions the curve contains.

Basis Functions for Cubic Bézier Curve

The thing is we need to calculate coordinates of the control points such that our points of interest are on the curve.

Polyline, Bézier, Catmull-Rom

So how can we calculate these control points? After researching (read Googling), I have landed on cardinal splines [^] and Catmull-Rom splines [^] . It appears that every control point of a Catmull-Rom spline is on the curve and it is also a Bézier curve which means we can use it as PathGeometry [^] with a Silverlight Path object.

Calculating Control Points

If we rewrite formulas from the cardinal splines [^] page as the following, we can easily calculate control points.

Derivative:

P'<sub>0</sub> = (P<sub>1</sub> - P<sub>0</sub>) / a
P'<sub>i</sub> = (P<sub>i+1</sub> - P<sub>i-1</sub>) / a   where  i in [1, n-1]
P'<sub>n</sub> = (P<sub>n</sub> - P<sub>n-1</sub>) / a

Control Points:

B1<sub>i</sub> = P<sub>i</sub> + P'<sub>i</sub> / 3
B2<sub>i</sub> = P<sub>i+1</sub> - P'<sub>i+1</sub> / 3
Fitted Bézier with Control Points Visible.

Using the Code

The method that calculates the Bézier Points is as follows. GetB1 and GetB2 are straight forward implementations of the aforementioned formulas.

C#
private PointCollection GetBezierPoints(PointCollection pts, double tension)
    {
        PointCollection ret = new PointCollection();

        for (int i = 0; i < pts.Count; i++)
        {
            // for first point append as is.
            if (i == 0)
            {
                ret.Add(pts[0]);
                continue;
            }

            // for each point except first and last get B1, B2. next point.
            // Last point do not have a next point.
            ret.Add(GetB1(pts, i - 1, tension));
            ret.Add(GetB2(pts, i - 1, tension));
            ret.Add(pts[i]);
        }

        return ret;
    }

To use the PointCollection returned from GetBezierPoints method in Silverlight, we need to build a Path with BezierSegments in it.

C#
private PathFigure GetBezierSegments(PointCollection pts, double tension)
    {
        PathFigure ret = new PathFigure();
        ret.Segments.Clear();
        ret.IsClosed = false;

        var bzPoints = GetBezierPoints(_projectedPoints, tension);

        // First point is the starting point.
        ret.StartPoint = bzPoints[0];

        for (int i = 1; i < bzPoints.Count; i += 3)
        {
            ret.Segments.Add(new BezierSegment()
            {
                Point1 = bzPoints[i],       // B1 control point.
                Point2 = bzPoints[i + 1],   // B2 control point.
                Point3 = bzPoints[i + 2]    // P2 start / end point.
            });
        }

        return ret;
    }

And use this PathFigure in the MapBezier as:

C#
// Create a new PathGeometry.
var pGeo = new PathGeometry();

// Add the Bezier PathFigure to the PathGeometry.
pGeo.Figures.Add(GetBezierSegments(_projectedPoints, Tension));

// Set data of the Path to the created PathGeometry.
((Path)EncapsulatedShape).Data = pGeo;

You can use the MapBezier class just like MapPolyline and MapPolygon classes in your silverlight XAML file. See the attached sample for an example Silverlight application.

XML
<m:Map x:Name="myMap" CredentialsProvider="***">
    <m:MapLayer x:Name="layerDurak" >
         <local:MapBezier Tension="2" x:Name="plDurakGidis" Stroke="Orange" 
    StrokeThickness="3" Opacity=".6" Locations="{Binding MyLocations, Mode=OneWay}" />
    </m:MapLayer>
</m:Map>

Note: Bing Maps Silverlight SDK [^] is needed for compiling the sample application.

Points of Interest

It was fun messing with the Bing Maps Silverlight Control toolkit and I hope MapBezier is what you are looking for.

History

  • Initial article. 30.08.2010 - This article is also available at my blog.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
Turkey Turkey
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralFascinating but ... Pin
victorbos7-Sep-10 5:23
victorbos7-Sep-10 5:23 
GeneralRe: Fascinating but ... Pin
Kerem Kat9-Sep-10 3:44
Kerem Kat9-Sep-10 3:44 
GeneralGood Stuff Pin
Member 45654332-Sep-10 8:12
Member 45654332-Sep-10 8:12 
GeneralMy vote of 5 Pin
Marcelo Ricardo de Oliveira31-Aug-10 8:27
Marcelo Ricardo de Oliveira31-Aug-10 8:27 
GeneralRe: My vote of 5 Pin
Kerem Kat3-Oct-10 5:00
Kerem Kat3-Oct-10 5:00 
GeneralI like it and gave at 5 Pin
Sacha Barber31-Aug-10 4:03
Sacha Barber31-Aug-10 4:03 
GeneralRe: I like it and gave at 5 Pin
Kerem Kat31-Aug-10 7:24
Kerem Kat31-Aug-10 7:24 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.