I have a windows phone runtime app where I display a push pin on a map using xaml.
<Maps:MapControl
Center="{Binding GeoPoint, Mode=OneWay}"
Name="mapControl"
Height="270"
MapServiceToken="token"
ZoomLevel="1">
<Ellipse
Fill="Red"
Height="20"
Width="20"
Maps:MapControl.Location="{Binding GeoPoint, Mode=OneWay}"
Maps:MapControl.NormalizedAnchorPoint="1, 0.5"/>
</Maps:MapControl>
When I drag the map there is some lag with the control trying to keep to the same position.
Any help would be appreciated.
Thanks,