Use Amazon Location Service SDK
If you need functionality in the AWS services used by the Amplify Geo category that isn't available, we provide an escape hatch so you can get a reference to that service.
Note: If you provisioned your Geo resources via Amplify CLI, then the IAM policy will be specifically scoped to only allow actions required by the library. Please adjust your authorization permissions accordingly for your escape hatch use-cases.
import android.util.Log;import com.amazonaws.services.geo.AmazonLocationClient;import com.amazonaws.services.geo.model.ListMapsRequest;import com.amazonaws.services.geo.model.ListMapsResult;import com.amplifyframework.core.Amplify;import com.amplifyframework.geo.location.AWSLocationGeoPlugin;
// Obtain reference to the pluginAWSLocationGeoPlugin geoPlugin = (AWSLocationGeoPlugin) Amplify.Geo.getPlugin("awsLocationGeoPlugin");AmazonLocationClient locationClient = geoPlugin.getEscapeHatch();
// Send a new request to the Location Maps endpoint directly using the clientListMapsRequest request = new ListMapsRequest();ListMapsResult response = locationClient.listMaps(request);Log.i("MyAmplifyApp", response.getEntries().toString());
import android.util.Logimport com.amazonaws.services.geo.AmazonLocationClientimport com.amazonaws.services.geo.model.ListMapsRequestimport com.amplifyframework.core.Amplify
// Obtain reference to the Amazon Location Service clientval geoPlugin = Amplify.Geo.getPlugin("awsLocationGeoPlugin")val locationClient = geoPlugin.escapeHatch as AmazonLocationClient
// Send a new request to the Location Maps endpoint directly using the clientval request = ListMapsRequest()val response = locationClient.listMaps(request)Log.i("MyAmplifyApp", response.entries.toString())
Documentation Resources
Maps
Places
Device Tracking