@aws-cdk/aws-location-alpha module
Language | Package |
---|---|
.NET | Amazon.CDK.AWS.Location.Alpha |
Go | github.com/aws/aws-cdk-go/awscdklocationalpha/v2 |
Java | software.amazon.awscdk.services.location.alpha |
Python | aws_cdk.aws_location_alpha |
TypeScript | @aws-cdk/aws-location-alpha |
AWS::Location Construct Library
The APIs of higher level constructs in this module are experimental and under active development. They are subject to non-backward compatible changes or removal in any future version. These are not subject to the Semantic Versioning model and breaking changes will be announced in the release notes. This means that while you may use them, you may need to update your source code when upgrading to a newer version of this package.
This module is part of the AWS Cloud Development Kit project.
Amazon Location Service lets you add location data and functionality to applications, which includes capabilities such as maps, points of interest, geocoding, routing, geofences, and tracking. Amazon Location provides location-based services (LBS) using high-quality data from global, trusted providers Esri and HERE. With affordable data, tracking and geofencing capabilities, and built-in metrics for health monitoring, you can build sophisticated location-enabled applications.
Map
The Amazon Location Service Map resource gives you access to the underlying basemap data for a map. You use the Map resource with a map rendering library to add an interactive map to your application. You can add other functionality to your map, such as markers (or pins), routes, and polygon areas, as needed for your application.
For information about how to use map resources in practice, see Using Amazon Location Maps in your application.
To create a map, define a Map
:
new location.Map(this, 'Map', {
mapName: 'my-map',
style: location.Style.VECTOR_ESRI_NAVIGATION,
customLayers: [location.CustomLayer.POI],
});
Use the grant()
or grantRendering()
method to grant the given identity permissions to perform actions
on the map:
declare const role: iam.Role;
const map = new location.Map(this, 'Map', {
style: location.Style.VECTOR_ESRI_NAVIGATION,
});
map.grantRendering(role);
Place Index
A key function of Amazon Location Service is the ability to search the geolocation information. Amazon Location provides this functionality via the Place index resource. The place index includes which data provider to use for the search.
To create a place index, define a PlaceIndex
:
new location.PlaceIndex(this, 'PlaceIndex', {
placeIndexName: 'MyPlaceIndex', // optional, defaults to a generated name
dataSource: location.DataSource.HERE, // optional, defaults to Esri
});
Use the grant()
or grantSearch()
method to grant the given identity permissions to perform actions
on the place index:
declare const role: iam.Role;
const placeIndex = new location.PlaceIndex(this, 'PlaceIndex');
placeIndex.grantSearch(role);
Geofence Collection
Geofence collection resources allow you to store and manage geofences—virtual boundaries on a map. You can evaluate locations against a geofence collection resource and get notifications when the location update crosses the boundary of any of the geofences in the geofence collection.
declare const key: kms.Key;
new location.GeofenceCollection(this, 'GeofenceCollection', {
geofenceCollectionName: 'MyGeofenceCollection', // optional, defaults to a generated name
kmsKey: key, // optional, defaults to use an AWS managed key
});
Use the grant()
or grantRead()
method to grant the given identity permissions to perform actions
on the geofence collection:
declare const role: iam.Role;
const geofenceCollection = new location.GeofenceCollection(this, 'GeofenceCollection', {
geofenceCollectionName: 'MyGeofenceCollection',
});
geofenceCollection.grantRead(role);
Route Calculator
Route calculator resources allow you to find routes and estimate travel time based on up-to-date road network and live traffic information from your chosen data provider.
For more information, see Routes.
To create a route calculator, define a RouteCalculator
:
new location.RouteCalculator(this, 'RouteCalculator', {
routeCalculatorName: 'MyRouteCalculator', // optional, defaults to a generated name
dataSource: location.DataSource.ESRI,
});
Use the grant()
or grantRead()
method to grant the given identity permissions to perform actions
on the route calculator:
declare const role: iam.Role;
const routeCalculator = new location.RouteCalculator(this, 'RouteCalculator', {
dataSource: location.DataSource.ESRI,
});
routeCalculator.grantRead(role);
Tracker
A tracker stores position updates for a collection of devices. The tracker can be used to query the devices' current location or location history. It stores the updates, but reduces storage space and visual noise by filtering the locations before storing them.
For more information, see Trackers.
To create a tracker, define a Tracker
:
declare const key: kms.Key;
new location.Tracker(this, 'Tracker', {
trackerName: 'MyTracker', // optional, defaults to a generated name
kmsKey: key, // optional, defaults to use an AWS managed key
});
Use the grant()
, grantUpdateDevicePositions
or grantRead()
method to grant the given identity permissions to perform actions
on the geofence collection:
declare const role: iam.Role;
const tracker = new location.Tracker(this, 'Tracker', {
trackerName: 'MyTracker',
});
tracker.grantRead(role);
If you want to associate a tracker with geofence collections, define a geofenceCollections
property or use addGeofenceCollections
method.
declare const geofenceCollection: location.GeofenceCollection;
declare const geofenceCollectionForAdd: location.GeofenceCollection;
declare const tracker: location.Tracker;
const tracker = new location.Tracker(this, 'Tracker', {
trackerName: 'MyTracker',
geofenceCollections: [geofenceCollection],
});
tracker.addGeofenceCollections(geofenceCollectionForAdd);