我正在尝试地理围栏的某些地方,只有一个正在开火。这让我想知道在一个应用中可以有多少个地理位置?因此,当我到达这些位置时,我的应用会触发事件。
以下是我设置地理围栏的方法:
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);
}
答案 0 :(得分:0)
似乎对可以创建的地理围栏数量没有限制。
我在设备上测试了100个位置并检查了第100个位置以查看它是否已设置,是的,它已设置。