This project provides AWS Lambdas as proxies for several of the HERE Location Services APIs. These AWS Lambdas are packaged as per the AWS Serverless Application Model.
"AWS SAR is natively supported by AWS CloudFormation and defines simplified syntax for expressing serverless resources. The specification currently covers APIs, Lambda functions and Amazon DynamoDB tables."
The AWS API Gateway supports configuring both Cache and Throttling, and the lambdas are open source: we welcome pull requests with circuit breakers, graceful error handling, etc.!
To successfully call the HERE Maps APIs through the proxies in this project you need to obtain HERE API credentials. Multiple plans are available: https://aws.amazon.com/marketplace/pp/B07JPLG9SR/?ref=_ptnr_aws_sar_github#pricing-information.
- Geocoding and Search API v7
- Map Image
- Map Tile
- Positioning
- Routing API v8 & Routing Waypoints Sequence
- Toll Costs
- Traffic
- Public Transit API v8
- Weather
-
Visit the HERE Location Services on AWS Marketplace, and review the Access Control FAQ.
-
Visit AWS and sign up for a Free Tier account.
-
Download and install the AWS CLI, and run
aws configure
as per the AWS CLI User Guide. -
From GitHub: clone this repository, or download the ZIP.
The folder containing the lambda source code (JS) and CloudFormation templates (YML) is
serverlessFunctions
. -
An S3 bucket is required as a destination for the AWS SAR package. If you don't have one already, create one:
Note: If the folder contains a `package.json` file: run `npm update`: `x:\src\here-aws-repository\serverlessFunctions\mapimage>npm update
Use the AWS CLI to package (note the folder layout):
x:\src\here-aws-repository\serverlessFunctions>aws cloudformation package --s3-bucket here-maps-api--aws-sar --template-file geocode\geocode.yml --output-template-file geocode-packaged.yml
-
Use the AWS CLI to deploy the AWS SAR package using CloudFormation:
x:\src\here-aws-repository\serverlessFunctions>aws cloudformation deploy --capabilities CAPABILITY_IAM --stack-name "HERE-Maps-API--GeoCode" --parameter-overrides HereApiKey=<apiKey> --template-file geocode-packaged.yml
-
Once deployment completes, look for the URL of the new API Gateway. It should follow this pattern:
https://<apigw>.execute-api.<region>.amazonaws.com/...
The API Gateway URL is an output from the CloudFormation template and can be found among the tabs when selecting a Stack in the AWS Console.
Alternatively look at the API Gateway in the AWS Console, select Stages, and then expand the tree until you see "Invoke URL".
-
The AWS Lambda proxies deployed above do not impose authentication or authorization restrictions!
You must decide how you will control access to your API Gateway and Lambdas.
For guidance, see the AWS Lambda FAQ.
Consider implementing AWS API Gateway Custom Authorizers.
The below list of HERE Maps APIs has one Lambda each as a proxy.
Note:
-
All APIs except Map Image and Map Tile will return JSON response. For error scenarios, response JSON will be with 4xx - 5xx response code and details of error.
-
For Map Image and MapTile APIs, success response will return base 64 encoding of map image (not JSON) and for failures, message as error in downloading map will be returned.
Geocoding and Search API v7
URL Mapping
API | HERE URL Prefix | AWS Lambda App URL Prefix |
---|---|---|
discover | https://discover.search.hereapi.com/ |
https://<apigw>.execute-api.<region>.amazonaws.com/Prod/geocode/api/ |
geocode | https://geocode.search.hereapi.com/ |
https://<apigw>.execute-api.<region>.amazonaws.com/Prod/geocode/api/ |
autosuggest | https://autosuggest.search.hereapi.com/ |
https://<apigw>.execute-api.<region>.amazonaws.com/Prod/geocode/api/ |
browse | https://browse.search.hereapi.com/ |
https://<apigw>.execute-api.<region>.amazonaws.com/Prod/geocode/api/ |
lookup | https://lookup.search.hereapi.com/ |
https://<apigw>.execute-api.<region>.amazonaws.com/Prod/geocode/api/ |
revgeocode | https://revgeocode.search.hereapi.com/ |
https://<apigw>.execute-api.<region>.amazonaws.com/Prod/geocode/api/ |
- For detailed examples refer here.
Map Image
URL Mapping
API | HERE URL Prefix | AWS Lambda App URL Prefix |
---|---|---|
Images | https://image.maps.ls.hereapi.com/ |
https://<apigw>.execute-api.<region>.amazonaws.com/Prod/mapimage/api/ |
- For detailed examples refer here.
Map Tile
URL Mapping
API | HERE URL Prefix | AWS Lambda App URL Prefix |
---|---|---|
MapTile | https://{1-4}.traffic.maps.ls.hereapi.com/ |
https://<apigw>.execute-api.<region>.amazonaws.com/Prod/maptile/api/traffic/ |
MapTile | https://{1.4}.base.maps.ls.hereapi.com/ |
https://<apigw>.execute-api.<region>.amazonaws.com/Prod/maptile/api/base/ |
MapTile | https://{1.4}.aerial.maps.ls.hereapi.com/ |
https://<apigw>.execute-api.<region>.amazonaws.com/Prod/maptile/api/aerial/ |
- For detailed examples refer here.
Positioning
URL Mapping
API | HERE URL Prefix | AWS Lambda App URL Prefix |
---|---|---|
Position | https://pos.ls.hereapi.com/ |
https://<apigw>.execute-api.<region>.amazonaws.com/Prod/position/api/ |
- For detailed examples refer here.
Routing API v8 & Routing Waypoints Sequence
URL Mapping
API | HERE URL Prefix | AWS Lambda App URL Prefix |
---|---|---|
CalculateRoute | https://router.hereapi.com/ |
https://<apigw>.execute-api.<region>.amazonaws.com/Prod/routing/api/ |
Routing((Isoline)) | https://isoline.route.ls.hereapi.com/ |
https://<apigw>.execute-api.<region>.amazonaws.com/Prod/routing/api/isoline.route/ |
Routing(Matrix) | https://matrix.route.ls.hereapi.com/ |
https://<apigw>.execute-api.<region>.amazonaws.com/Prod/routing/api/matrix.route/ |
- For detailed examples refer here.
Toll Cost
URL Mapping
API | HERE URL Prefix | AWS Lambda App URL Prefix |
---|---|---|
Toll Cost | https://tce.api.here.com/2/calculateroute.json |
https://<apigw>.execute-api.<region>.amazonaws.com/Prod/tollcost |
- For detailed examples refer here.
Traffic
URL Mapping
API | HERE URL Prefix | AWS Lambda App URL Prefix |
---|---|---|
Traffic | https://traffic.ls.hereapi.com/ |
https://<apigw>.execute-api.<region>.amazonaws.com/Prod/traffic/api/traffic/ |
Traffic(tiles) | https://{1..4}.traffic.maps.ls.hereapi.com/ |
https://<apigw>.execute-api.<region>.amazonaws.com/Prod/traffic/api/traffic.maps/ |
- For detailed examples refer here.
Public Transit API v8
URL Mapping
API | HERE URL Prefix | AWS Lambda App URL Prefix |
---|---|---|
Next Departures | https:/transit.hereapi.com/ |
https://<apigw>.execute-api.<region>.amazonaws.com/Prod/transit/api/ |
Station Search | https:/transit.hereapi.com/ |
https://<apigw>.execute-api.<region>.amazonaws.com/Prod/transit/api/ |
Routing | https:/transit.router.hereapi.com/ |
https://<apigw>.execute-api.<region>.amazonaws.com/Prod/transit/api/ |
- For detailed examples refer here.
Weather
URL Mapping
API | HERE URL Prefix | AWS Lambda App URL Prefix |
---|---|---|
Weather | https://weather.ls.hereapi.com/ |
https://<apigw>.execute-api.<region>.amazonaws.com/Prod/weather/api/ |
- For detailed examples refer here.
Copyright (c) 2017-2019 HERE Europe B.V.
See the LICENSE file in the root of this project for license details.