Creating heat maps for Bing Maps Silverlight app

Search for resources just like everyone else. I have a nice, simple Bing Maps based Silverlight application that puts contacts on a map. Now I have many pins, I would like to create heat maps on the fly instead. I am trying to find resources that explain how to do this, but find nothing.

So any ideas?

+5
source share
2 answers

You probably have nothing to do.

, , , . , .

http://www.microsoft.com/maps/isdk/silverlight/#MapControlInteractiveSdk.Tutorials.TutorialCustomPushpin

<m:Pushpin ... />

<Ellipse Width="40" Height="40" m:MapLayer.Position="48.8,2.1" m:MapLayer.PositionOrigin="Center">
  <Ellipse.Fill>
    <RadialGradientBrush>
      <GradientStop Color="#7FFF0000" Offset="0"/>
      <GradientStop Offset="1"/>
    </RadialGradientBrush>
      </Ellipse.Fill>
    </Ellipse>
+5

, . , , . . , ...

Ellipse e = new Ellipse() { MaxWidth = 40, MaxHeight = 40 };
        e.Width = 40;
        e.Height = 40;
        e.Fill = new RadialGradientBrush(Color.FromArgb(128, 255, 0, 0), Color.FromArgb(0, 0, 0, 0));

... , , "" "" . , . (http://mapsys.info/44010/heat-mapping-crime-data-with-bing-maps-and-html5-canvas/) javascript , HTML5. , Silverlight.

0

All Articles