1.1.1 • Published 5 months ago

@smartmaps/timezone v1.1.1

Weekly downloads
-
License
BSD-2-Clause
Repository
-
Last release
5 months ago

SmartMaps Timezone API

A simple and efficient Node.js library for interacting with a timezone API.

SmartMaps is a GDPR-compliant map platform developed by YellowMap AG. The focus of the platform is the digital sovereignty of users. Based on OpenStreetMap data, SmartMaps offers individually customizable functions such as maps, geocoding, autocomplete, routing as well as elevation, timezone and weather information for the visualization of points of interest, internal location analyses or address validations. SmartMaps is certified with the seals 'Software Hosted in Germany' and 'fair.digital'. These confirm a GDPR-compliant, transparent and data-saving handling of personal information.

To get started with SmartMaps, register for free at SmartMaps

For more information visit our SmartMaps Documentation

Installation

npm install @smartmaps/timezone

Usage

First, import the Timezone class from the package:

import { Timezone } from '@smartmaps/timezone';

Then, create a new Timezone instance with your API key:

var timezone = new Timezone('INSERT-YOUR-API-KEY-HERE');

Now you can then use methods to get or convert the current timezone for a specific point. E.g. the currentPoint method takes a CurrentPointRequestParams object as a parameter, which should include the latitude and longitude of the location.

var CurrentPointRequestParams = {
	latitude: 49.02,
	longitude: 8.44,
	...
};

var currentTime = await timezone.currentPoint(CurrentPointRequestParams);

Returns a promise of type TimezoneRequestParams that resolves with the current timezone data for the specified location.

Here’s a description of the supported endpoints:

Current Timezone API (current/point) This API takes latitude and longitude and others as parameters and returns the current timezone for that location. It’s useful when you want to know the timezone of a specific geographical point.

Convert Timezone API (convert/point): This API is used to convert time from one timezone to another. It typically takes parameters like the date time, latitude and longitude or timezone id. It then returns the time in the target timezone.

Features

SmartMaps GL (@smartmaps/smartmaps-gl)

SmartMaps GL JS is the globally usable vector map base to integrate interactive and costumizable maps into your web applications. Built on top of MapLibre GL, SmartMaps GL JS provides a powerful and flexible solution for map rendering and location data visualization.

Maps (@smartmaps/maps)

Maps is the globally usable map base for your industry-specific requirements. Whether you want to visualize location data, business data or socio-demographic data on the web, internal applications or an app.

Autocomplete (@smartmaps/autocomplete)

A few letters are enough to inspire your customers. With the Autocomplete function, suitable suggestions are already recommended when the first letters are entered in the address search. Autocomplete is easily customizable through parameters like local boosting.

Geocoding (@smartmaps/geocoding)

With the help of geocoding, you convert postal addresses into coordinates and visualize them on the map with pinpoint accuracy. Reverse geocoding allows you to convert an existing coordinate from an automatic location into an address in the opposite way.

Routing (@smartmaps/routing)

Show your customer the way to your location and navigate him safely to the desired destination - whether on foot, by bike or by car. Use the routing API not only for classic A-B routing, but also for matrix routing, the calculation of isochrones, trip planning or map match.

Elevation (@smartmaps/elevation)

The Elevation Service is a powerful tool that allows you to retrieve elevation data for any location on Earth. Whether you need to determine the height of a specific point or analyze the terrain profile along a route, the Elevation Service provides accurate and reliable data.

Timezone (@smartmaps/timezone)

The SmartMaps Timezone API allows you to retrieve detailed timezone information for any geographical location. By leveraging this API, you can access real-time data on local time, UTC offsets, and daylight saving time, enhancing your applications with precise temporal context.

Weather (@smartmaps/weather)

The SmartMaps Weather API offers access to weather data and forecasts for specific locations across Europe. It supports querying weather information through various methods, including geographic coordinates, addresses, locations, rectangles, and polylines. The data is provided by "Deutsche Wetterdienst".

Area (@smartmaps/area)

The Area Service provides a comprehensive REST API for querying geographic boundaries and areas based on geographic coordinates or OpenStreetMap (OSM) IDs. This API supports both JSON and GeoJSON formats, ensuring seamless integration with a wide range of applications.

1.1.1

5 months ago