Coder Social home page Coder Social logo

han-tun / quicklaunch Goto Github PK

View Code? Open in Web Editor NEW

This project forked from mapbox/quicklaunch

0.0 1.0 0.0 10.78 MB

Quickly build and deploy a map in any environment

Home Page: https://www.mapbox.com/solutions/quick-launch

License: Other

JavaScript 85.10% CSS 2.87% HTML 12.03%

quicklaunch's Introduction

Mapbox Quick Launch

Mapbox Quick Launch is a workflow that creates a situational awareness dashboard. It enables users to connect to their internal data sources, collaboratively annotate the map, and share knowledge with their stakeholders. Quick Launch works out of the box in both online and offline environments and can be customized to fit any use case.

Getting Started

These instructions will create a development version of the dashboard and set up a live-reloading local environment. To deploy into production, see Deployment. If you need a fully offline development environment, you can download a ZIP file from Releases that includes all development dependencies.

Quick Launch provides the following functionality:

  1. Connection to Mapbox.com OR Mapbox Atlas
  2. Search Bar search
  3. Swappable base styles (defaults below)
    • Mapbox Streets
    • Mapbox Light
    • Mapbox Dark
    • Mapbox Satellite swap
  4. Drag-and-Drop data
    • Geojson
    • Shapefiles
    • CSV
    • KML dnd
  5. Annotations: Draw your own shapes and add metadata draw

Requirements

To begin development, you will need the following:

Mapbox account

You will need a valid Mapbox token to make requests to Mapbox APIs with a public (pk) token scope. Sign up for Mapbox here and find your access token here. If you are developing against Atlas, you will need the token provided from your Atlas dashboard. Atlas Search is required for offline geocoding to function.

Data

There is sample geojson data provided in the data folder. Quick Launch supports KML, CSV, geoJSON, or Shapefiles via drag-and-drop.

If you wish to use Mapbox or Atlas hosted tilesets - either add them to a style and update the chosen style or add the tilesets to the map programatically.

map.addLayer({
  "id":"layerid",
  "type":"layertype",
  "source":{
    type:'vector',
    url:'mapbox://tilesetid'
  },
  "source-layer":"source",
  [...]
})

Node

You must have Node v8.15+ installed.

Docker

For development purposes only, you will need to have Docker installed. Docker is used to start a local MongoDB instance. This instance WILL NOT preserve data if you choose to shut it down.

For more persistent storage, you may choose to install Mongo directly.

MongoDB

For production use, or if you do not wish to use Docker, you must install MongoDB v4.0.3+. For instructions on installing Mongo in your environment, consult the MongoDB documentation.

For development, this dashboard will run a Dockerized version of Mongo. You can use this in the production version of your application, but we recommend you deploy an independent version to avoid data loss.

The version of MongoDB used in the Docker container is MongoDB Community edition. This is free-to-use and features are documented on the MongoDB website.

To use enterprise features, you must procure your own MongoDB Enterprise license and update the Quick Launch accordingly. Mapbox will not provide MongoDB support.


Development

  • src
    • config.js: Initial configuration script to build your custom dashboard.
    • app.js: Server script to communictate with MongoDb.
    • template: folder that contains templated HTML and Javascript files for dashboard.
    • vendor: folder that contains static JS and CSS files for offline dashboard functionality.
  • data
    • Contains sample data.geojson for testing drag-and-drop functionality.

Installation

If you wish to develop in a fully offline environment, please download QuickLaunchOffline.zip from Releases. Then skip to Step 3.

  1. Clone this repository
git clone [email protected]:mapbox/quickLaunch.git
cd quickLaunch
  1. Install Dependencies
npm ci
  1. Run the initial config
npm run config

config

The Favicon and Logo are optional and do not affect the functionality of Quick Launch.

This will update the template code and produce a development-ready version of the dashboard, as well as start the Dockerized MongoDB. If you would like to verify that MongoDB is running, run curl localhost:27017 and you should see the following:

mongodbTest

  1. Start the website server and application server
npm start

Your application will auto-compile and a browser window will open at http://localhost:1234

Custom Styles

If you are using Mapbox.com as your endpoint, the layer toggle will work as shown below. If you are using Atlas, you will need to swap the layers and IDs to styles hosted in Atlas.

IDs and labels are found in index.html. The respective button id will be the text used to swap out layers in index.js shown below.

<div id="basemap-toggle" class="p12 flex-parent w325">
  <button id="streets" class="btn btn--pill btn--pill-stroke btn--red btn--pill-hl txt-s flex-child--grow">Streets</button>
  <button id="light" class="btn btn--stroke btn--pill-stroke btn--red btn--pill-hc txt-s flex-child--grow">Light</button>
  <button id="dark" class="btn btn--stroke btn--pill-stroke btn--red btn--pill-hc txt-s flex-child--grow">Dark</button>
  <button id="satellite-streets" class="btn btn--stroke btn--pill-stroke btn--red btn--pill-hr txt-s flex-child--grow">Satellite</button>
</div>

To update layer toggling with Atlas styles, update the following code in index.js.

function switchLayer(layer) {
  for (let i = 0; i < buttons.length; i++) {
    buttons[i].classList.remove("btn--pill");
    buttons[i].classList.add("btn--stroke");
  }
  const layerId = layer.target.id;
  layer.target.classList.remove("btn--stroke");
  layer.target.classList.add("btn--pill");
  //Update the line below with Atlas style IDs
  //Example: mapbox://styles/atlas-user/layerid
  map.setStyle("mapbox://styles/mapbox/" + layerId + "-v9");
}

Search

If you are using Atlas Search, you will need to update the gl-geocoder settings in order to point to the correct endpoint.

map.addControl(new MapboxGeocoder({
  accessToken: mapboxgl.accessToken,
  origin: <AtlasURL>
}));

Errors

During the build process, you may see the following image in your terminal.

error

This is a warning related to the build tool, and can safely be ignored at this time.


Deployment

Quick Launch can be configured to work with Atlas and Mapbox.com. In the case of Atlas, this dashboard assumes that Atlas has been installed, is running, and the URL is known.

To build for production, you will need to run npm run build. This will compile all your code and move it to the build folder. This folder will exist prior to running the build command, as the development compiler will output data to that folder.

However, this code is not optimized, so you should run build before deploying.

Once building has completed, you can move the contents of the build folder to its final destination and serve it with the web server of your choice.

You can also serve the Quick Launch directly by running npm run deploy instead of npm run build. This will build and start a static web server at port 5000.

Environment Considerations

From BUILD Directory

If you choose to run the entire application from the build directory (following npm deploy) then you may to know the external IP address of the host. To print this infomation run node network.js from the root of this repository.

Separate Infrastructure

If you prefer to run the application in your own infrastructure, follow these guidelines:

  1. The web application must include all the files found in build. As long as they are consolidated, the application can be served by any static site service.
  2. The Mongo middleware can be found in build/app. This can be moved, but you must also include node_modules in order for it to run.
  3. MongoDB (or any MongoDB-compliant API) can run anywhere. You must remember to alter the middleware to reference the correct endpoint. This can be done in configuration or edited by hand afterwards.

Built With

Authors

Mapbox Solutions Architecture

License

This project is licensed under the BSD-3-Clause License - see the LICENSE.md file for details

quicklaunch's People

Contributors

cmtoomey avatar alulsh avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.