私のアプリでは入力と終了の通知が必要です。私は同じコードの下に書いてあり、期待どおりに働いています。しかし、私は複数のオーバーレイまたは地域を確認したい。xamarin ios用の複数領域のジオフェンシング
例として、3つのオーバーレイまたは特定の座標を持つ領域が設定されています。私は、ユーザーの現在の場所の近くにあるのエントリと終了を確認したいと思います。
if (pointregion.ContainsCoordinate(location.Coordinate) && Entryregion == false)
{
Entryregion = true; Exitregion = false;
ShowNotification("You are just in " + pointregionname + " region", "Alert");
}
if (!pointregion.ContainsCoordinate(location.Coordinate) && Entryregion == true)
{
Entryregion = false; Exitregion = true;
ShowNotification("You are just left " + pointregionname + " region", "Alert");
}