# ems-client **Repository Path**: mirrors_elastic/ems-client ## Basic Information - **Project Name**: ems-client - **Description**: JavaScript Client library for Elastic Maps Service - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2025-09-20 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # @elastic/ems-client @elastic/ems-client is a JavaScript library for the [Elastic Maps Service](https://www.elastic.co/elastic-maps-service). This library is intended to be used by Elastic products. Use of the Elastic Maps Service is governed by the [Elastic Maps Service Terms of Service](https://www.elastic.co/elastic-maps-service-terms). ## Installation NPM `npm i @elastic/ems-client` Yarn `yarn add @elastic/ems-client` ## Building locally `yarn build` ## Usage ```js import { EMSClient } from '@elastic/ems-client'; const emsClient = new EMSClient({ appVersion: '7.6.0', appName: 'kibana', tileApiUrl: 'https://tiles.maps.elastic.co', fileApiUrl: 'https://vector.maps.elastic.co', emsVersion: '7.6', language: 'en' }); ``` ### Legacy (prior to v7.6) ```js import { EMSClient } from '@elastic/ems-client'; const emsClient = new EMSClient({ kbnVersion: '7.2.0', manifestServiceUrl: 'https://catalogue.maps.elastic.co/v7.2/manifest', language: 'en' }); ```