# fusion-tables-archive-visualizer **Repository Path**: mirrors_google/fusion-tables-archive-visualizer ## Basic Information - **Project Name**: fusion-tables-archive-visualizer - **Description**: No description available - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-19 - **Last Updated**: 2025-08-16 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Fusion Tables Archive Visualizer ## Description Visualize archived Fusion Tables from Google Drive. ### Links * Live: https://geoviz.fusiontables-archive.withgoogle.com/ ## Development ### Prerequisites Make sure you have the following tools installed: * git * node * npm ### Installation After cloning the repository, install all dependencies: ```sh npm install # install dependencies ``` Install the [Google Cloud SDK](https://cloud.google.com/sdk/) and initialize it by running: ```sh gcloud init ``` ### Configuration Setup the gcloud to your project ID like this: ```sh gcloud config set project my-project-id ``` Create an OAuth token for the client authentication in your [Google Cloud Project](https://console.cloud.google.com/apis/credentials). Set the client ID to the `GOOGLE_SIGNIN_CLIENT_ID` environment variable like this: ```sh export GOOGLE_SIGNIN_CLIENT_ID="XXXXXXXXXXX.apps.googleusercontent.com" ``` Create a API key for Google Maps and Google Drive. Store that in an environment variable called `API_KEY` like this: ```sh export API_KEY="my-key" ``` To help with environment variable handling on a project level, check out [direnv](https://direnv.net/). ### Develop Run the following command to start the visualizer on localhost: ```sh npm start # start the visualizer ``` ### Deploy Run the following command to deploy the application: ```sh npm run deploy ``` ## Hosting The project is hosted at [AppEngine](https://console.cloud.google.com/appengine/start)