# map-providers

> List of available Map Providers

Latest version **1.6.0** (published 2017-08-02) · MIT license · 0 weekly downloads

## Install

```sh
npm install map-providers
pnpm add map-providers
yarn add map-providers
bun add map-providers
```

## Health

**Score 25/100 (F)** — status: abandoned.

Positive: has types; no vulnerabilities; high quality score.

Warnings: low downloads; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.6.0 |
| Published | 2017-08-02 |
| First published | 2017-04-01 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | Denis Carriere |
| Maintainers | deniscarriere |
| Keywords | gis, geo, map, providers |

## Links

- npm: https://www.npmjs.com/package/map-providers
- Repository: https://github.com/DenisCarriere/map-providers
- Homepage: https://github.com/DenisCarriere/map-providers#readme
- Issues: https://github.com/DenisCarriere/map-providers/issues
- npm.io page: https://npm.io/package/map-providers

## Alternatives

- [@sindresorhus/slugify](https://npm.io/package/@sindresorhus/slugify.md) — 3.7M weekly downloads
- [solid-js](https://npm.io/package/solid-js.md) — 2.7M weekly downloads
- [expo-glass-effect](https://npm.io/package/expo-glass-effect.md) — 2.5M weekly downloads
- [nanoassert](https://npm.io/package/nanoassert.md) — 780.8K weekly downloads
- [@ffmpeg/ffmpeg](https://npm.io/package/@ffmpeg/ffmpeg.md) — 529.5K weekly downloads

## Recent versions

- 1.6.0 (latest) — 2017-08-02
- 1.5.0 — 2017-07-26
- 1.4.0 — 2017-07-18
- 1.3.2 — 2017-06-08
- 1.3.1 — 2017-06-08
- 1.3.0 — 2017-06-08
- 1.2.0 — 2017-05-09
- 1.1.3 — 2017-05-09
- 1.1.2 — 2017-05-04
- 1.1.1 — 2017-04-28
- 1.1.0 — 2017-04-28
- 1.0.2 — 2017-04-24
- 1.0.1 — 2017-04-24
- 1.0.0 — 2017-04-01

## README

# Map Providers

[![Build Status](https://travis-ci.org/DenisCarriere/map-providers.svg?branch=master)](https://travis-ci.org/DenisCarriere/map-providers)
[![npm version](https://badge.fury.io/js/map-providers.svg)](https://badge.fury.io/js/map-providers)
[![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/DenisCarriere/map-providers/master/LICENSE)

[![Standard - JavaScript Style Guide](https://cdn.rawgit.com/feross/standard/master/badge.svg)](https://github.com/feross/standard)

> List of available Map Providers

## Install

**npm**

```bash
$ yarn add map-providers
```

## Quickstart

```javascript
const providers = require('map-providers');
Object.keys(providers)
//= [ 'openstreetmap', 'bing', 'digitalglobe', 'esri', 'nrcan' ]
Object.keys(providers.openstreetmap)
//= [ 'standard', 'hot', 'wikimedia', 'hillshade' ]
providers.openstreetmap.standard;
//= { name: 'OpenStreetMap Standard',
//   shortName: 'Standard',
//   categories: [ 'openstreetmap', 'standard', 'world' ],
//   minZoom: 0,
//   maxZoom: 19,
//   required: [],
//   url: 'https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png',
//   description: 'Tiles from OpenStreetMap',
//   attribution: 'Map data © OpenStreetMap',
//   format: 'png',
//   type: 'baselayer' }
providers.openstreetmap.standard.url;
//= 'https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png'
```

## Providers

| Name                          | Identifier                | Required        |
| ----------------------------- | ------------------------- |---------------- |
| OpenStreetMap Standard        | `openstreetmap.standard`  |                 |
| OpenStreetMap Humanitarian    | `openstreetmap.hot`       |                 |
| OpenStreetMap Wikimedia       | `openstreetmap.wikimedia` |                 |
| OpenStreetMap Hillshade       | `openstreetmap.hillshade` |                 |
| Bing Imagery                  | `bing.imagery`            |                 |
| Bing Roads                    | `bing.roads`              |                 |
| DigitalGlobe Premium Imagery  | `digitalglobe.premium`    | access_token    |
| DigitalGlobe Standard Imagery | `digitalglobe.standard`   | access_token    |
| National Geographic World Map | `esri.natgeo`             |                 |
| ESRI Imagery                  | `esri.imagery`            |                 |
| ESRI Ocean Basemap            | `esri.ocean`              |                 |
| ESRI USA Topo Maps            | `esri.usatopo`            |                 |
| ESRI World Street Map         | `esri.street`             |                 |
| ESRI World Topographic Map    | `esri.topo`               |                 |
| NRCAN Transportation (CBMT)   | `nrcan.cbmt`              |                 |
| NRCAN Toporama                | `nrcan.toporama`          |                 |

---
_Source: https://npm.io/package/map-providers · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
