DEV Community

Antonio Lagrotteria for AWS Community Builders

Posted on • Originally published at alatech.Medium

A “Find Corona Test Centers” PWA powered by Amplify Geo and Location Search

Given the recent sad increase of Corona cases in Denmark and my involvement in the Frontend and Serverless cohorts in the AWS Community Builders, I decided to combine the two topics by creating a React application (web-based but also being a Progressive Web App) aiming at searching for Covid19 test centers in Denmark.

I will use Amplify Geo, which adds location-aware features to web applications and Amazon Location Service, which provide secure, reliable and high-quality geospatial data from established global providers such as Esri and Here.com.

Data is available via Rest API from Coronasmitte and CphMed, two very valuable web sites where to find centers information too.

Finally, the app will be deployed on a CloudFront distribution linked with a S3 origin. You can browse the web-app here.

Prerequisites

This article assumes that you:

App use cases

Users of this application will be able to:

  • Navigate an interactive Geo map with locations and group of locations (aka clusters), with ability to search for locations via an address bar, and getting suggestions via the Location Search service.

  • Access to valuable Test center information such as address, opening hours, waiting time, type (Antigen or PCR) and more when clicking on the specific location — which in turns open a popup.

Amplify Geo main components

The Getting Started guide is pretty comprehensive so I will not repeat much of the steps in this article. Instead let’s look at two main components in Amplify Geo: Maps and Location Search.

Maps

Based on the MapLibre GL library, Amplify Geo Maps visualize interactive vector maps on the web mostly by abstracting its usage via the maplibre-gl-js-amplify package, which exposes, among others, two very important methods:

  • createMap, very self-explanatory method initializing the map default properties such as zoom level, center of the map, etc.

  • drawPoints, which, given the coordinates, organizes them into clusters (groups of locations) and unclustered (markers indicating a specific test centre) options, used to modify the look and feel of the elements in the map.

Full code can be found in GitHub. Below snippet shows the implementations of above methods.

Location Search

Location Search enables search of locations such as addresses, cities by using Esri or Here Geo Location platforms behind the scenes. By combining it with a couple of React components (AutoSuggest and DebounceInput — Github code here), users are able to input a text, which eventually pops a series of suggestions found by the Location Search via the Geo.searchByText method.

Progressive Web App Gotchas

At the time of the writing the PWA can be installed on Chrome Desktop and Android (via three dots menu and Install App item). For IOS you can manually add the app to home screen manually, obtaining something like below:

Assess app security and performance

WebPageTest is an established web site that can be used to measure the security and performance of your web page. After initial screening, it was clear that some actions needed to be done:

  • Control-cache headers should be set to S3 buckets for caching purposes, by adding metadata to all objects in bucket by editing and Add Metadata option:

  • Create a Custom Policy adding security related headers, thanks to a recent release under Policies -> Response Headers

  • Edit distribution Behaviour by associating a Cache Policy and a Response Headers policy we just created.

After above changes we went from a full blood report to a much nicer view:

Above were not part of the default Amplify add hosting command, but recent releases about custom resources, export and override can help in automating that via a CDK stack.

Summary

Amplify Geo makes extremely easy and quick to setup up a secure and scalable map functionality and infrastructure in hours.

In regards of PWA area I may add in future a component which can popup the installation process proactively.

As I am still in Free Tier zone, I am also very interested in keeping an eye on pricing and will definitely update this section if something worth mentioning pops up.

References

https://docs.amplify.aws/lib/geo/getting-started/q/platform/js

Top comments (0)