Skip to content

Latest commit

 

History

History
60 lines (41 loc) · 2.82 KB

README.md

File metadata and controls

60 lines (41 loc) · 2.82 KB

Before 1948

Google Maps listing out private buildings in Hong Kong that built before 1948.

Features

Using Google Maps API and APITable for a simple demo.

Demo Map

Maps Screenshot

Data source

Develop / Deploy your own simple map

This repo is also a great example on how to use APITable as an easy to set up endpoint of your maps app.

This files are essential for your page:

  • index.html - The main map page. You can update the content directly on the page.
  • location_24x24.png - The marker image, you may use the default one or your own icon (just replace this image).

Important: You shall update your own API Key in your app.

Replace XXXXXXXXXXXX with your API Key in the code below, located in the bottom most part in index.html. Follow the instruction on the Google Maps Docs to get your own key.

<script async defer
src="https://maps.googleapis.com/maps/api/js?key=XXXXXXXXXXXX&callback=initMap">
</script>

Set up endpoint at APITable

You can define your own data schema according to your usage, however this example follows the following schema on APITable:

  1. Sign up at APITable
  2. Add a new table
  3. Add columns according to the following APITable
  • Name - name Address / Name of the place (Must not be empty)
  • Latitude - lat The Latitude of the location
  • Longitude - long The Longitude of the location
  • Detail - detail Detail of the place.
  • Year Built - yearbuilt The year of the building is built.
  1. Copy and paste data to the table
  2. Click Save button to save data
  3. Click Get End Point button to export an endpoint
  4. You need to have a valid token to access to the endpoint, click creat new token
  5. Click on view button next to the new token generated. You will be able to get the URL directly in this format: https://apitable.skygeario.com/api/tables?id=15414c95-a675-4dec-b29e-165dde8ee59d&token=XXXXXXXX
  6. You can then use this endpoint in your app.

License

CC BY