1.0.4 β€’ Published 2 years ago

@stockholm-transit/locations v1.0.4

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

πŸ‡ΈπŸ‡ͺ Storstockholms Lokaltrafiks (SL) Location lookup API πŸš†

  • With this API, you can get information about a place by submitting parts of the place name. You can choose to search only for stop areas or stops, addresses and locations.
  • Trafiklab documentation is available here.

Usage

import * as locations from '@stockholm-transit/locations';
import { LocationParameters } from '@stockholm-transit/locations';

locations.init({ apiKey: process.env.STOCKHOLM_LOCATIONS_API_KEY });

const params: LocationParameters = { q: 'Stockholm', maxResults: 10 };
locations.query(params).then((data) => res.send(data.ResponseData));

Functions

init

(config: StockholmBaseConfig) => void

query

(params: LocationParameters) => Promise<LocationResponse | undefined>

Types

StockholmBaseConfig

ParameterTypeRequiredDescription
apiKeystringtrueTrafiklab API key.
  • Read how to generate Trafiklab API keys here.

LocationParameters

ParameterTypeRequiredDescriptionDefault
qstringtrueThe search string. (Max. 20 characters).
stationsOnlybooleanfalseIf true only stops are returned.true
maxResultsnumberfalseMaximum number of results from 0-50.10
typeLocationParameterTypefalseType filter for places."ALL"

LocationParameterType

  • "S": Search for stations only.
  • "P": Search for only POI (points of interest).
  • "A": Search only for addresses.
  • "SP": Search for stations and POI.
  • "SA": Search only for stations and Addresses.
  • "AP": Search only for addresses and POI.
  • "ALL": Search for addresses, stations and POI.

Building

Run npx nx build @stockholm-transit/locations to build the library.

Running unit tests

Run npx nx test @stockholm-transit/locations to execute the unit tests via Jest.

Related APIs