maps.gurudocs
Documentation

JavaScript SDK

Info

Coming Soon — The JavaScript SDK is not yet available. This page documents the planned SDK surface. Check back soon for updates.

The official JavaScript/TypeScript SDK will provide type-safe access to all maps.guru API services.

Planned Installation

npm install @maps.guru/sdk

Planned Usage

import { MapsGuru } from '@maps.guru/sdk';

const client = new MapsGuru({ apiKey: 'mapx_your_key' });

const results = await client.geocode('Eiffel Tower, Paris');
console.log(results[0].lat, results[0].lng);