Codenameone 地理围栏位置限制为 1 个吗?
Is Codenameone geofencing locations limited to 1?
我正在尝试对一些位置进行地理围栏,但只有一个在启动。这让我想问一下在一个应用程序中可以对多少个位置进行地理围栏?这样当我到达这些位置时,我的应用程序就会触发事件。
以下是我设置地理围栏的方式:
for (int i = 0; i < result.size(); i++) {
Location loc = new Location();
loc.setLatitude(aLatitude);
loc.setLongitude(aLongitude);
int radius = myRadius;
Geofence gf = new Geofence(aUniqueIdString, loc, radius, 100000000);
LocationManager.getLocationManager().addGeoFencing(GeofenceListenerImpl.class, gf);
}
似乎没有限制可以创建多少个地理围栏。
我在设备上测试了 100 个位置,并检查了第 100 个位置是否已设置,是的,已设置。
我正在尝试对一些位置进行地理围栏,但只有一个在启动。这让我想问一下在一个应用程序中可以对多少个位置进行地理围栏?这样当我到达这些位置时,我的应用程序就会触发事件。
以下是我设置地理围栏的方式:
for (int i = 0; i < result.size(); i++) {
Location loc = new Location();
loc.setLatitude(aLatitude);
loc.setLongitude(aLongitude);
int radius = myRadius;
Geofence gf = new Geofence(aUniqueIdString, loc, radius, 100000000);
LocationManager.getLocationManager().addGeoFencing(GeofenceListenerImpl.class, gf);
}
似乎没有限制可以创建多少个地理围栏。
我在设备上测试了 100 个位置,并检查了第 100 个位置是否已设置,是的,已设置。