Mostly my problem is that I adapted the code snippet found here.
http://social.msdn.microsoft.com/Forums/en-US/vemapcontroldev/thread/62e70670-f306-4bb7-8684-549979af91c1
which does exactly what I want to do this is to scale some proxy images according to the map zoom level. The only problem is that I adapted this code to work with silverlight control bin cards (not virtual ground, as in the original example), and now by correlating the image scale, but they move and reach the desired position when my zoom level is maximum . Any idea why? Help will be greatly appreciated :)
Modified code below:
var layer = new MapLayer();
map.AddChild(layer);
layer.AddChild(new Pin
{
ImageSource = new BitmapImage(new Uri("pin.png", UriKind.Relative)),
MapInstance = map
}, new Location(-33.86643, 151.2062), PositionMethod.Center);
-
layer.AddChild(new Pin
{
ImageSource = new BitmapImage(new Uri("pin.png", UriKind.Relative)),
MapInstance = map
}, new Location(-33.92485, 18.43883), PositionOrigin.BottomCenter);
, - , - UI-. . !