Estas são informações sobre as referências de API na extensão do Places:
Quando um dispositivo ultrapassa um dos limites predefinidos da região do Serviço de locais do aplicativo, a região e o tipo de evento são passados para o SDK para processamento.
Processar um Geofence
evento de região para o fornecido transitionType
.
Passe o transitionType
de GeofencingEvent.getGeofenceTransition()
. Atualmente Geofence.GEOFENCE_TRANSITION_ENTER
e Geofence.GEOFENCE_TRANSITION_EXIT
são compatíveis.
Sintaxe
Esta é a sintaxe para este método:
public static void processGeofence(final Geofence geofence, final int transitionType);
Exemplo
Chame esse método em seu IntentService
que está registrado para receber eventos de geofence do Android.
Esta é uma amostra de código para este método:
public class GeofenceTransitionsIntentService extends IntentService {
public GeofenceTransitionsIntentService() {
super("GeofenceTransitionsIntentService");
}
protected void onHandleIntent(Intent intent) {
GeofencingEvent geofencingEvent = GeofencingEvent.fromIntent(intent);
List<Geofence> geofences = geofencingEvent.getTriggeringGeofences();
if (geofences.size() > 0) {
// Call the Places API to process information
Places.processGeofence(geofences.get(0), geofencingEvent.getGeofenceTransition());
}
}
}
Este método deve ser chamado na variável CLLocationManager
delegado, que informa se o usuário entrou ou saiu de uma região específica.
Sintaxe
Esta é a sintaxe para este método:
+ (void) processRegionEvent: (nonnull CLRegion*) region forRegionEventType: (ACPRegionEventType) eventType;
Exemplo
Esta é a amostra de código para este método:
- (void) locationManager:(CLLocationManager *)manager didEnterRegion:(CLRegion *)region {
[ACPPlaces processRegionEvent:region forRegionEventType:ACPRegionEventTypeEntry];
}
- (void) locationManager:(CLLocationManager *)manager didExitRegion:(CLRegion *)region {
[ACPPlaces processRegionEvent:region forRegionEventType:ACPRegionEventTypeExit];
}
Processar tudo Geofences
no GeofencingEvent
ao mesmo tempo.
Sintaxe
public static void processGeofenceEvent(final GeofencingEvent geofencingEvent);
Exemplo
Chame esse método em seu IntentService
que está registrado para receber eventos de geofence do Android
public class GeofenceTransitionsIntentService extends IntentService {
public GeofenceTransitionsIntentService() {
super("GeofenceTransitionsIntentService");
}
protected void onHandleIntent(Intent intent) {
GeofencingEvent geofencingEvent = GeofencingEvent.fromIntent(intent);
// Call the Places API to process information
Places.processGeofenceEvent(geofencingEvent);
}
}
Retorna uma lista ordenada de POIs próximos em um retorno de chamada. Uma versão sobrecarregada deste método retornará um código de erro se algo der errado com a chamada de rede resultante.
Esta é a sintaxe para este método:
Sintaxe
public static void getNearbyPointsOfInterest(final Location location, final int limit,
final AdobeCallback<List<PlacesPOI>> callback);
public static void getNearbyPointsOfInterest(final Location location, final int limit,
final AdobeCallback<List<PlacesPOI>> callback,
final AdobeCallback<PlacesRequestError> errorCallback);
Exemplo
Esta é a amostra de código para este método:
// getNearbyPointsOfInterest without an error callback
Places.getNearbyPointsOfInterest(currentLocation, 10, new AdobeCallback<List<PlacesPOI>>() {
@Override
public void call(List<PlacesPOI> pois) {
// do required processing with the returned nearbyPoi array
startMonitoringPois(pois);
}
});
// getNearbyPointsOfInterest with an error callback
Places.getNearbyPointsOfInterest(currentLocation, 10,
new AdobeCallback<List<PlacesPOI>>() {
@Override
public void call(List<PlacesPOI> pois) {
// do required processing with the returned nearbyPoi array
startMonitoringPois(pois);
}
}, new AdobeCallback<PlacesRequestError>() {
@Override
public void call(PlacesRequestError placesRequestError) {
// look for the placesRequestError and handle the error accordingly
handleError(placesRequestError);
}
}
);
Sintaxe
+ (void) getNearbyPointsOfInterest: (nonnull CLLocation*) currentLocation
limit: (NSUInteger) limit
callback: (nullable void (^) (NSArray<ACPPlacesPoi*>* _Nullable nearbyPoi)) callback;
+ (void) getNearbyPointsOfInterest: (nonnull CLLocation*) currentLocation
limit: (NSUInteger) limit
callback: (nullable void (^) (NSArray<ACPPlacesPoi*>* _Nullable nearbyPoi)) callback
errorCallback: (nullable void (^) (ACPPlacesRequestError result)) errorCallback;
Exemplo
// getNearbyPointsOfInterest without an error callback
[ACPPlaces getNearbyPointsOfInterest:location
limit:10
callback:^(NSArray<ACPPlacesPoi*>* nearbyPoi) {
// do required processing with the returned nearbyPoi array
[self startMonitoringPois:nearbyPOI];
}];
// getNearbyPointsOfInterest with an error callback
[ACPPlaces getNearbyPointsOfInterest:location limit:10
callback:^(NSArray<ACPPlacesPoi *> * _Nullable nearbyPoi) {
// do required processing with the returned nearbyPoi array
[self startMonitoringPois:nearbyPOI];
} errorCallback:^(ACPPlacesRequestError result) {
// look for the error and handle accordingly
[self handleError:result];
}
];
Solicita uma lista de POIs nos quais o dispositivo é conhecido no momento em e os retorna em um retorno de chamada.
Esta é a sintaxe para este método:
Sintaxe
public static void getCurrentPointsOfInterest(final AdobeCallback<List<PlacesPOI>> callback);
Exemplo
Esta é a amostra de código para este método:
Places.getCurrentPointsOfInterest(new AdobeCallback<List<PlacesPOI>>() {
@Override
public void call(List<PlacesPOI> pois) {
// use the obtained POIs that the device is within
processUserWithinPois(pois);
}
});
Sintaxe
Esta é a sintaxe para este método:
+ (void) getCurrentPointsOfInterest: (nullable void (^) (NSArray<ACPPlacesPoi*>* _Nullable userWithinPoi)) callback;
Exemplo
Esta é a amostra de código para este método:
[ACPPlaces getCurrentPointsOfInterest:^(NSArray<ACPPlacesPoi*>* userWithinPoi) {
// do required processing with the returned userWithinPoi array
[self processUserWithinPois:userWithinPoi];
}];
Solicita a localização do dispositivo, como conhecido anteriormente, pela extensão Places.
A extensão do Places só conhece os locais que foram fornecidos por meio de chamadas para o GetNearbyPointsOfInterest
.
Sintaxe
Esta é a sintaxe para este método:
public static void getLastKnownLocation(final AdobeCallback<Location> callback);
Exemplo
Esta é a amostra de código para este método:
Places.getLastKnownLocation(new AdobeCallback<Location>() {
@Override
public void call(Location lastLocation) {
// do something with the last known location
processLastKnownLocation(lastLocation);
}
});
Sintaxe
Esta é a sintaxe para este método:
+ (void) getLastKnownLocation: (nullable void (^) (CLLocation* _Nullable lastLocation)) callback;
Exemplo
Esta é a amostra de código para este método:
[ACPPlaces getLastKnownLocation:^(CLLocation* lastLocation) {
// do something with the last known location
[self processLastKnownLocation:lastLocation];
}];
Limpa os dados do lado do cliente para a extensão do Places no estado compartilhado, no armazenamento local e na memória.
Sintaxe
Esta é a sintaxe para este método:
public static void clear();
Exemplo
Esta é a amostra de código para este método:
Places.clear();
Limpa os dados do lado do cliente para a extensão do Places no estado compartilhado, no armazenamento local e na memória.
Sintaxe
Esta é a sintaxe para este método:
+ (void) clear;
Exemplo
Esta é a amostra de código para este método:
[ACPPlaces clear];
Disponível a partir do Places v1.4.0
Define o status de autorização na extensão Places.
O status fornecido é armazenado no estado compartilhado de Places e serve apenas para referência.
Chamar esse método não afeta o status de autorização da localização real deste dispositivo.
Sintaxe
Esta é a sintaxe para este método:
public static void setAuthorizationStatus(final PlacesAuthorizationStatus status);
Exemplo
Esta é a amostra de código para este método:
Places.setAuthorizationStatus(PlacesAuthorizationStatus.ALWAYS);
Disponível a partir do ACPPSlaces v1.3.0
Define o status de autorização na extensão Places.
O status fornecido é armazenado no estado compartilhado de Places e serve apenas para referência.
Chamar esse método não afeta o status de autorização da localização real deste dispositivo.
Quando o status de autorização do dispositivo for alterado, a variável locationManager:didChangeAuthorizationStatus:
método do seu CLLocationManagerDelegate
é chamado. Dentro deste método, você deve passar o novo CLAuthorizationStatus
para os ACPloces setAuthorizationStatus:
API.
Sintaxe
Esta é a sintaxe para este método:
+ (void) setAuthorizationStatus: (CLAuthorizationStatus) status;
Exemplo
Esta é a amostra de código para este método:
- (void) locationManager: (CLLocationManager*) manager didChangeAuthorizationStatus: (CLAuthorizationStatus) status {
[ACPPlaces setAuthorizationStatus:status];
}