location adjustment

This commit is contained in:
Tsanie Lily 2022-04-11 15:12:34 +08:00
parent 1072a1a15c
commit 776cc7da49
29 changed files with 119 additions and 14 deletions

View File

@ -206,7 +206,11 @@ namespace Billing.Store
}
writer.Flush();
await database.ExecuteAsync("DELETE FROM [Logs]; DELETE FROM [sqlite_sequence] WHERE [name] = 'Logs'");
await database.RunInTransactionAsync(conn =>
{
conn.Execute("DELETE FROM [Logs]");
conn.Execute("DELETE FROM [sqlite_sequence] WHERE [name] = 'Logs'");
});
return file;
}
catch

View File

@ -10,6 +10,7 @@
BindingContext="{x:Reference billPage}">
<ContentPage.ToolbarItems>
<ToolbarItem Order="Primary" IconImageSource="pin.png" Command="{Binding ViewLocation}"/>
<ToolbarItem Order="Primary" IconImageSource="check.png" Command="{Binding CheckBill}"/>
</ContentPage.ToolbarItems>
@ -49,9 +50,6 @@
<ui:OptionEntryCell Height="44" Icon="online.png"
Title="{r:Text Store}"
Text="{Binding Store, Mode=TwoWay}"/>
<ui:OptionSelectCell Height="44"
Detail="{r:Text ViewLocation}"
Command="{Binding ViewLocation}"/>
<ui:OptionDatePickerCell Height="44" Icon="bars.png"
Title="{r:Text CreatedTime}"
Date="{Binding CreatedDate, Mode=TwoWay}"/>

View File

@ -316,6 +316,7 @@ namespace Billing.Views
Longitude = location.Longitude,
Latitude = location.Latitude
});
page.Synced += (sender, loc) => location = loc;
await Navigation.PushAsync(page);
}
}

View File

@ -1,17 +1,37 @@
using Billing.Models;
using System;
using System.Threading;
using System.Threading.Tasks;
using Billing.Models;
using Billing.UI;
using Xamarin.Essentials;
using Xamarin.Forms;
using Xamarin.Forms.Maps;
using Xamarin.Forms.PlatformConfiguration.iOSSpecific;
using Map = Xamarin.Forms.Maps.Map;
namespace Billing.Views
{
public class ViewLocationPage : BillingPage
{
public event EventHandler<Location> Synced;
private readonly Bill bill;
private CancellationTokenSource tokenSource;
public ViewLocationPage(Bill bill)
{
On<Xamarin.Forms.PlatformConfiguration.iOS>().SetUseSafeArea(false);
this.bill = bill;
Title = bill.Name;
ToolbarItems.Add(new ToolbarItem
{
IconImageSource = "location.png",
Order = ToolbarItemOrder.Primary,
Command = new Command(OnSynced)
});
if (bill.Latitude != null && bill.Longitude != null)
{
var (longitude, latitude) = (bill.Longitude.Value, bill.Latitude.Value).Wgs84ToGcj02();
@ -32,5 +52,78 @@ namespace Billing.Views
};
}
}
protected override void OnDisappearing()
{
if (tokenSource != null && !tokenSource.IsCancellationRequested)
{
tokenSource.Cancel();
}
base.OnDisappearing();
}
private async void OnSynced()
{
if (Tap.IsBusy)
{
return;
}
using (Tap.Start())
{
if (tokenSource != null)
{
return;
}
var location = await GetCurrentLocation();
if (location != null)
{
Synced?.Invoke(this, location);
MainThread.BeginInvokeOnMainThread(() =>
{
var (longitude, latitude) = (location.Longitude, location.Latitude).Wgs84ToGcj02();
var position = new Position(latitude, longitude);
var mapSpan = new MapSpan(position, 0.01, 0.01);
Content = new Map(mapSpan)
{
Pins =
{
new Pin
{
Label = bill.Name,
Type = PinType.Generic,
Position = position,
Address = bill.Store
}
}
};
});
}
}
}
private async Task<Location> GetCurrentLocation()
{
try
{
var request = new GeolocationRequest(GeolocationAccuracy.Best, TimeSpan.FromSeconds(10));
tokenSource = new CancellationTokenSource();
var status = await Helper.CheckAndRequestPermissionAsync<Permissions.LocationWhenInUse>();
if (status != PermissionStatus.Granted)
{
return null;
}
return await Geolocation.GetLocationAsync(request, tokenSource.Token);
}
catch (FeatureNotSupportedException) { }
catch (FeatureNotEnabledException) { }
catch (PermissionException) { }
catch (Exception ex)
{
Helper.Error("location.get", ex);
}
tokenSource = null;
return null;
}
}
}

View File

@ -72,9 +72,9 @@
<PackageReference Include="Microcharts.Forms" Version="0.9.5.9" />
<PackageReference Include="SkiaSharp.Views.Forms" Version="2.80.3" />
<PackageReference Include="sqlite-net-pcl" Version="1.8.116" />
<PackageReference Include="Xamarin.Forms" Version="5.0.0.2337" />
<PackageReference Include="Xamarin.Essentials" Version="1.7.1" />
<PackageReference Include="Xamarin.Forms.Maps" Version="5.0.0.2337" />
<PackageReference Include="Xamarin.Forms" Version="5.0.0.2401" />
<PackageReference Include="Xamarin.Essentials" Version="1.7.2" />
<PackageReference Include="Xamarin.Forms.Maps" Version="5.0.0.2401" />
</ItemGroup>
<ItemGroup>
<Compile Include="Definition.cs" />

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="1.2.328" package="org.tsanie.billing" android:installLocation="auto" android:versionCode="20">
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="1.2.411" package="org.tsanie.billing" android:installLocation="auto" android:versionCode="21s">
<uses-sdk android:minSdkVersion="24" android:targetSdkVersion="30" />
<application android:label="@string/applabel" android:theme="@style/MainTheme" android:requestLegacyExternalStorage="true"></application>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

Binary file not shown.

After

Width:  |  Height:  |  Size: 797 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 443 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 799 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 874 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 662 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -100,6 +100,15 @@
<BundleResource Include="Resources\share.png" />
<BundleResource Include="Resources\share%402x.png" />
<BundleResource Include="Resources\share%403x.png" />
<BundleResource Include="Resources\sync.png" />
<BundleResource Include="Resources\sync%402x.png" />
<BundleResource Include="Resources\sync%403x.png" />
<BundleResource Include="Resources\location.png" />
<BundleResource Include="Resources\location%402x.png" />
<BundleResource Include="Resources\location%403x.png" />
<BundleResource Include="Resources\pin.png" />
<BundleResource Include="Resources\pin%402x.png" />
<BundleResource Include="Resources\pin%403x.png" />
</ItemGroup>
<ItemGroup>
<ImageAsset Include="Assets.xcassets\AppIcon.appiconset\Contents.json">
@ -179,9 +188,9 @@
<PackageReference Include="Microcharts.Forms" Version="0.9.5.9" />
<PackageReference Include="SkiaSharp.Views.Forms" Version="2.80.3" />
<PackageReference Include="sqlite-net-pcl" Version="1.8.116" />
<PackageReference Include="Xamarin.Forms" Version="5.0.0.2337" />
<PackageReference Include="Xamarin.Essentials" Version="1.7.1" />
<PackageReference Include="Xamarin.Forms.Maps" Version="5.0.0.2337" />
<PackageReference Include="Xamarin.Forms" Version="5.0.0.2401" />
<PackageReference Include="Xamarin.Essentials" Version="1.7.2" />
<PackageReference Include="Xamarin.Forms.Maps" Version="5.0.0.2401" />
</ItemGroup>
<ItemGroup>
<BundleResource Include="Resources\dollar.png" />

View File

@ -80,9 +80,9 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>20</string>
<string>21</string>
<key>CFBundleShortVersionString</key>
<string>1.2.328</string>
<string>1.2.411</string>
<key>LSApplicationQueriesSchemes</key>
<array>
<string>mailto</string>

Binary file not shown.

After

Width:  |  Height:  |  Size: 797 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 443 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 874 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 799 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB