location adjustment
@ -206,7 +206,11 @@ namespace Billing.Store
|
|||||||
}
|
}
|
||||||
writer.Flush();
|
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;
|
return file;
|
||||||
}
|
}
|
||||||
catch
|
catch
|
||||||
|
@ -10,6 +10,7 @@
|
|||||||
BindingContext="{x:Reference billPage}">
|
BindingContext="{x:Reference billPage}">
|
||||||
|
|
||||||
<ContentPage.ToolbarItems>
|
<ContentPage.ToolbarItems>
|
||||||
|
<ToolbarItem Order="Primary" IconImageSource="pin.png" Command="{Binding ViewLocation}"/>
|
||||||
<ToolbarItem Order="Primary" IconImageSource="check.png" Command="{Binding CheckBill}"/>
|
<ToolbarItem Order="Primary" IconImageSource="check.png" Command="{Binding CheckBill}"/>
|
||||||
</ContentPage.ToolbarItems>
|
</ContentPage.ToolbarItems>
|
||||||
|
|
||||||
@ -49,9 +50,6 @@
|
|||||||
<ui:OptionEntryCell Height="44" Icon="online.png"
|
<ui:OptionEntryCell Height="44" Icon="online.png"
|
||||||
Title="{r:Text Store}"
|
Title="{r:Text Store}"
|
||||||
Text="{Binding Store, Mode=TwoWay}"/>
|
Text="{Binding Store, Mode=TwoWay}"/>
|
||||||
<ui:OptionSelectCell Height="44"
|
|
||||||
Detail="{r:Text ViewLocation}"
|
|
||||||
Command="{Binding ViewLocation}"/>
|
|
||||||
<ui:OptionDatePickerCell Height="44" Icon="bars.png"
|
<ui:OptionDatePickerCell Height="44" Icon="bars.png"
|
||||||
Title="{r:Text CreatedTime}"
|
Title="{r:Text CreatedTime}"
|
||||||
Date="{Binding CreatedDate, Mode=TwoWay}"/>
|
Date="{Binding CreatedDate, Mode=TwoWay}"/>
|
||||||
|
@ -316,6 +316,7 @@ namespace Billing.Views
|
|||||||
Longitude = location.Longitude,
|
Longitude = location.Longitude,
|
||||||
Latitude = location.Latitude
|
Latitude = location.Latitude
|
||||||
});
|
});
|
||||||
|
page.Synced += (sender, loc) => location = loc;
|
||||||
await Navigation.PushAsync(page);
|
await Navigation.PushAsync(page);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,17 +1,37 @@
|
|||||||
using Billing.Models;
|
using System;
|
||||||
|
using System.Threading;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using Billing.Models;
|
||||||
using Billing.UI;
|
using Billing.UI;
|
||||||
|
using Xamarin.Essentials;
|
||||||
|
using Xamarin.Forms;
|
||||||
using Xamarin.Forms.Maps;
|
using Xamarin.Forms.Maps;
|
||||||
using Xamarin.Forms.PlatformConfiguration.iOSSpecific;
|
using Xamarin.Forms.PlatformConfiguration.iOSSpecific;
|
||||||
|
using Map = Xamarin.Forms.Maps.Map;
|
||||||
|
|
||||||
namespace Billing.Views
|
namespace Billing.Views
|
||||||
{
|
{
|
||||||
public class ViewLocationPage : BillingPage
|
public class ViewLocationPage : BillingPage
|
||||||
{
|
{
|
||||||
|
public event EventHandler<Location> Synced;
|
||||||
|
|
||||||
|
private readonly Bill bill;
|
||||||
|
|
||||||
|
private CancellationTokenSource tokenSource;
|
||||||
|
|
||||||
public ViewLocationPage(Bill bill)
|
public ViewLocationPage(Bill bill)
|
||||||
{
|
{
|
||||||
On<Xamarin.Forms.PlatformConfiguration.iOS>().SetUseSafeArea(false);
|
On<Xamarin.Forms.PlatformConfiguration.iOS>().SetUseSafeArea(false);
|
||||||
|
this.bill = bill;
|
||||||
Title = bill.Name;
|
Title = bill.Name;
|
||||||
|
|
||||||
|
ToolbarItems.Add(new ToolbarItem
|
||||||
|
{
|
||||||
|
IconImageSource = "location.png",
|
||||||
|
Order = ToolbarItemOrder.Primary,
|
||||||
|
Command = new Command(OnSynced)
|
||||||
|
});
|
||||||
|
|
||||||
if (bill.Latitude != null && bill.Longitude != null)
|
if (bill.Latitude != null && bill.Longitude != null)
|
||||||
{
|
{
|
||||||
var (longitude, latitude) = (bill.Longitude.Value, bill.Latitude.Value).Wgs84ToGcj02();
|
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;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -72,9 +72,9 @@
|
|||||||
<PackageReference Include="Microcharts.Forms" Version="0.9.5.9" />
|
<PackageReference Include="Microcharts.Forms" Version="0.9.5.9" />
|
||||||
<PackageReference Include="SkiaSharp.Views.Forms" Version="2.80.3" />
|
<PackageReference Include="SkiaSharp.Views.Forms" Version="2.80.3" />
|
||||||
<PackageReference Include="sqlite-net-pcl" Version="1.8.116" />
|
<PackageReference Include="sqlite-net-pcl" Version="1.8.116" />
|
||||||
<PackageReference Include="Xamarin.Forms" Version="5.0.0.2337" />
|
<PackageReference Include="Xamarin.Forms" Version="5.0.0.2401" />
|
||||||
<PackageReference Include="Xamarin.Essentials" Version="1.7.1" />
|
<PackageReference Include="Xamarin.Essentials" Version="1.7.2" />
|
||||||
<PackageReference Include="Xamarin.Forms.Maps" Version="5.0.0.2337" />
|
<PackageReference Include="Xamarin.Forms.Maps" Version="5.0.0.2401" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Compile Include="Definition.cs" />
|
<Compile Include="Definition.cs" />
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?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" />
|
<uses-sdk android:minSdkVersion="24" android:targetSdkVersion="30" />
|
||||||
<application android:label="@string/applabel" android:theme="@style/MainTheme" android:requestLegacyExternalStorage="true"></application>
|
<application android:label="@string/applabel" android:theme="@style/MainTheme" android:requestLegacyExternalStorage="true"></application>
|
||||||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
||||||
|
BIN
Billing/Billing.Android/Resources/drawable-mdpi/location.png
Normal file
After Width: | Height: | Size: 797 B |
BIN
Billing/Billing.Android/Resources/drawable-mdpi/pin.png
Normal file
After Width: | Height: | Size: 443 B |
BIN
Billing/Billing.Android/Resources/drawable-mdpi/sync.png
Normal file
After Width: | Height: | Size: 799 B |
BIN
Billing/Billing.Android/Resources/drawable-xhdpi/location.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
BIN
Billing/Billing.Android/Resources/drawable-xhdpi/pin.png
Normal file
After Width: | Height: | Size: 874 B |
BIN
Billing/Billing.Android/Resources/drawable-xhdpi/sync.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
Billing/Billing.Android/Resources/drawable-xxhdpi/location.png
Normal file
After Width: | Height: | Size: 2.8 KiB |
BIN
Billing/Billing.Android/Resources/drawable-xxhdpi/pin.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
Billing/Billing.Android/Resources/drawable-xxhdpi/sync.png
Normal file
After Width: | Height: | Size: 2.7 KiB |
BIN
Billing/Billing.Android/Resources/drawable/location.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
Billing/Billing.Android/Resources/drawable/pin.png
Normal file
After Width: | Height: | Size: 662 B |
BIN
Billing/Billing.Android/Resources/drawable/sync.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
@ -100,6 +100,15 @@
|
|||||||
<BundleResource Include="Resources\share.png" />
|
<BundleResource Include="Resources\share.png" />
|
||||||
<BundleResource Include="Resources\share%402x.png" />
|
<BundleResource Include="Resources\share%402x.png" />
|
||||||
<BundleResource Include="Resources\share%403x.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>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ImageAsset Include="Assets.xcassets\AppIcon.appiconset\Contents.json">
|
<ImageAsset Include="Assets.xcassets\AppIcon.appiconset\Contents.json">
|
||||||
@ -179,9 +188,9 @@
|
|||||||
<PackageReference Include="Microcharts.Forms" Version="0.9.5.9" />
|
<PackageReference Include="Microcharts.Forms" Version="0.9.5.9" />
|
||||||
<PackageReference Include="SkiaSharp.Views.Forms" Version="2.80.3" />
|
<PackageReference Include="SkiaSharp.Views.Forms" Version="2.80.3" />
|
||||||
<PackageReference Include="sqlite-net-pcl" Version="1.8.116" />
|
<PackageReference Include="sqlite-net-pcl" Version="1.8.116" />
|
||||||
<PackageReference Include="Xamarin.Forms" Version="5.0.0.2337" />
|
<PackageReference Include="Xamarin.Forms" Version="5.0.0.2401" />
|
||||||
<PackageReference Include="Xamarin.Essentials" Version="1.7.1" />
|
<PackageReference Include="Xamarin.Essentials" Version="1.7.2" />
|
||||||
<PackageReference Include="Xamarin.Forms.Maps" Version="5.0.0.2337" />
|
<PackageReference Include="Xamarin.Forms.Maps" Version="5.0.0.2401" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<BundleResource Include="Resources\dollar.png" />
|
<BundleResource Include="Resources\dollar.png" />
|
||||||
|
@ -80,9 +80,9 @@
|
|||||||
</dict>
|
</dict>
|
||||||
</array>
|
</array>
|
||||||
<key>CFBundleVersion</key>
|
<key>CFBundleVersion</key>
|
||||||
<string>20</string>
|
<string>21</string>
|
||||||
<key>CFBundleShortVersionString</key>
|
<key>CFBundleShortVersionString</key>
|
||||||
<string>1.2.328</string>
|
<string>1.2.411</string>
|
||||||
<key>LSApplicationQueriesSchemes</key>
|
<key>LSApplicationQueriesSchemes</key>
|
||||||
<array>
|
<array>
|
||||||
<string>mailto</string>
|
<string>mailto</string>
|
||||||
|
BIN
Billing/Billing.iOS/Resources/location.png
Normal file
After Width: | Height: | Size: 797 B |
BIN
Billing/Billing.iOS/Resources/location@2x.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
BIN
Billing/Billing.iOS/Resources/location@3x.png
Normal file
After Width: | Height: | Size: 2.8 KiB |
BIN
Billing/Billing.iOS/Resources/pin.png
Normal file
After Width: | Height: | Size: 443 B |
BIN
Billing/Billing.iOS/Resources/pin@2x.png
Normal file
After Width: | Height: | Size: 874 B |
BIN
Billing/Billing.iOS/Resources/pin@3x.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
Billing/Billing.iOS/Resources/sync.png
Normal file
After Width: | Height: | Size: 799 B |
BIN
Billing/Billing.iOS/Resources/sync@2x.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
Billing/Billing.iOS/Resources/sync@3x.png
Normal file
After Width: | Height: | Size: 2.7 KiB |