mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2026-04-06 15:05:50 +00:00
Version 2.3.1. Some cleanup.
This commit is contained in:
parent
91ff46c506
commit
b2063e2c6c
22 changed files with 62 additions and 158 deletions
|
|
@ -58,11 +58,6 @@ namespace WpfApplication
|
|||
}
|
||||
}
|
||||
|
||||
private void MapMouseLeave(object sender, MouseEventArgs e)
|
||||
{
|
||||
mouseLocation.Text = string.Empty;
|
||||
}
|
||||
|
||||
private void MapMouseMove(object sender, MouseEventArgs e)
|
||||
{
|
||||
var location = map.ViewportPointToLocation(e.GetPosition(map));
|
||||
|
|
@ -89,6 +84,11 @@ namespace WpfApplication
|
|||
lonHemisphere, longitude / 60000, (double)(longitude % 60000) / 1000d);
|
||||
}
|
||||
|
||||
private void MapMouseLeave(object sender, MouseEventArgs e)
|
||||
{
|
||||
mouseLocation.Text = string.Empty;
|
||||
}
|
||||
|
||||
private void MapManipulationInertiaStarting(object sender, ManipulationInertiaStartingEventArgs e)
|
||||
{
|
||||
e.TranslationBehavior.DesiredDeceleration = 0.001;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue