I built a map application using Amazon Location Service, OpenLayers, and AWS Amplify 🎉
Advance Preparation
Installation of AWS Amplify
AWS Amplify #001 - InstallationUse the built environment to get started with OpenLayers easily
openlayers-starter
Execution environment
- node v18.1.0
- npm v8.8.0
The following is a detailed explanation.
- Building the Environment
- Setting up AWS Amplify
- Building the Map Application
Building the Environment
First, we will build the environment.
The environment uses "openlayers-starter" and installs the “AWS Amplify” Package and "Maplibre GL JS Amplify" packages in advance. Also, install "MapLibre OpenLayers layer" package to display vector tiles.
npm install aws-amplify
npm install maplibre-gl-js-amplify
npm install @geoblocks/ol-maplibre-layer
package.json
{
"name": "openlayers-starter",
"version": "6.15.1",
"description": "",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"keywords": [],
"author": "Yasunori Kirimoto",
"license": "ISC",
"devDependencies": {
"typescript": "^4.7.4",
"vite": "^3.0.4"
},
"dependencies": {
"@geoblocks/ol-maplibre-layer": "^0.0.4",
"aws-amplify": "^4.3.30",
"maplibre-gl-js-amplify": "^2.0.3",
"ol": "^6.15.1"
}
}
This completes the environment build!
Setting up AWS Amplify
Next, we will configure AWS Amplify.
Add authentication functions as usual. For the map function, select "HERE Explore" and set the access target to "Authorized and Guest users."
amplify init
amplify add auth
amplify add geo
amplify push
You can also check the deployment status in the AWS Management Console.
This completes the AWS Amplify configuration!
Building the Map Application
Finally, let's build the actual map application.
vite.config.ts
Configure the combination of AWS Amplify and OpenLayers to be executable in Vite.
import { defineConfig } from 'vite'
export default defineConfig({
resolve: {
alias: {
'./runtimeConfig': './runtimeConfig.browser',
},
},
define: {
'window.global': {}
},
build: {
target: 'esnext'
},
})
/src
@geoblocks/ol-maplibre-layer.d.ts
Add the MapLibre OpenLayers layer type definition file.
declare module '@geoblocks/ol-maplibre-layer';
/src
main.ts
Configure OpenLayers to display Amazon Location Service map styles.
import './style.css'
import 'ol/ol.css';
import Map from 'ol/Map';
import View from 'ol/View';
import Source from 'ol/source/Source';
import { fromLonLat } from 'ol/proj';
import { ScaleLine } from 'ol/control';
import MapLibreLayer from '@geoblocks/ol-maplibre-layer';
import { Amplify } from 'aws-amplify';
import { Auth } from 'aws-amplify';
import { Geo, AmazonLocationServiceMapStyle } from '@aws-amplify/geo';
import awsconfig from './aws-exports';
import { AmplifyMapLibreRequest } from 'maplibre-gl-js-amplify';
Amplify.configure(awsconfig);
const credentials = await Auth.currentCredentials();
const defaultMap = Geo.getDefaultMap() as AmazonLocationServiceMapStyle;
const { transformRequest } = new AmplifyMapLibreRequest(
credentials,
defaultMap.region
);
const map = new Map({
target: 'map',
layers: [
new MapLibreLayer({
maplibreOptions: {
style: Geo.getDefaultMap().mapName,
transformRequest: transformRequest,
},
source: new Source({
attributions: [
'© 2022 HERE',
],
attributionsCollapsible: false,
}),
}),
],
view: new View({
center: fromLonLat([139.767, 35.681]),
zoom: 11,
}),
});
map.addControl(new ScaleLine({
units: 'metric'
}));
Now we can display the Amazon Location Service map style in OpenLayers!
Related Articles
A Summary of How to Build Amplify Geo and Amazon Location Service
Yasunori Kirimoto for AWS Community Builders ・ Dec 9 '21
Simple View of New Map Styles for Amazon Location Service
Yasunori Kirimoto for AWS Community Builders ・ Apr 4 '22
Building a Map Application with Amazon Location Service, Leaflet, AWS Amplify, and Vue.js
Yasunori Kirimoto for AWS Community Builders ・ Oct 30 '21
Building a Map Application with Amazon Location Service, MapLibre GL JS, AWS Amplify, and Vue.js
Yasunori Kirimoto for AWS Community Builders ・ Oct 21 '21
References
Amazon Location Service
AWS Amplify
OpenLayers
Top comments (0)