Dears,i need urgent help.I developed one we application using silverlight4 .Now my map is showing .In this map i am adding some picturemarkers.Based on the following code i need some help with code...1.I am adding lot of picturemarker features on map in button clik based on some condition.Now i can see some of the features after dragging the map only.How can i see all feature collection without dragging?2.How can i clear all the existing features(picturemarker) in button click?3.How can i link each picturemarker with a straight line with arrow.4.How can i set a maptip on eachpicture marker in buttonclick event? Like infowindow showing in featureservice popup sample.All sample maptip code is adding from the tables . I need to add some textbox vaule as maptip.Please help me....It is very urgent...seemyu code belowDim gpsNMEASentences As String = "$GPGGA, 92204.9, " & e.Result(recordcount).ELat & ", N," & e.Result(recordcount).ELon & ", W, 1, 04, 2.4, 25.7, M,,,,*75" Dim gpsNMEASentenceArray() As String = gpsNMEASentences.Split(ControlChars.Lf) Dim graphicsLayer As GraphicsLayer = TryCast(MyMap.Layers("MyGraphicsLayer"), GraphicsLayer) Dim gpsNMEASentence() As String = gpsNMEASentenceArray(0).Split(","c) '.Geometry = mercator.FromGeographic(New MapPoint(Convert.ToDouble(gpsNMEASentence(4)), Convert.ToDouble(gpsNMEASentence(2)))), Dim graphic As New Graphic() With { .Geometry = mercator.FromGeographic(New MapPoint(Convert.ToDouble(gpsNMEASentence(4)), Convert.ToDouble(gpsNMEASentence(2)))), .Symbol = TryCast(LayoutRoot.Resources(colourstyle), Symbol) } graphicsLayer.Graphics.Add(graphic) Dim textSymbol As New TextSymbol() With { .FontFamily = New System.Windows.Media.FontFamily("Arial"), .Foreground = New System.Windows.Media.SolidColorBrush(Colors.Black), .FontSize = 25, .Text = gpsNMEASentence(9) } Dim graphicText As New Graphic() With { .Geometry = mercator.FromGeographic(New MapPoint(Convert.ToDouble(gpsNMEASentence(4)), Convert.ToDouble(gpsNMEASentence(2)))), .Symbol = textSymbol } graphicsLayer.Graphics.Add(graphicText)