当我在这些坐标时收到通知
Receive a notification when I am at these coordinates
当我的位置等于航路点的位置时,如何收到通知?
我将 Google 地图 Activity 与一些 waypoints 一起使用,如果应用程序在后台,我需要在其中之一旁边时收到通知。
LatLng latLngA = new LatLng(12.3456789,98.7654321); // Your Current Location
LatLng latLngB = new LatLng(98.7654321,12.3456789); // Notification coordinates
double distance = latLngA.distanceTo(latLngB);
用法:
if(distance<10) //10 depend on location accuracy
{
//Notification
}
当我的位置等于航路点的位置时,如何收到通知?
我将 Google 地图 Activity 与一些 waypoints 一起使用,如果应用程序在后台,我需要在其中之一旁边时收到通知。
LatLng latLngA = new LatLng(12.3456789,98.7654321); // Your Current Location
LatLng latLngB = new LatLng(98.7654321,12.3456789); // Notification coordinates
double distance = latLngA.distanceTo(latLngB);
用法:
if(distance<10) //10 depend on location accuracy
{
//Notification
}