perare-web-sdk
TypeScript icon, indicating that this package has built-in type declarations

1.1.8-betaΒ β€’Β PublicΒ β€’Β Published

Welcome to Perare Web Sdk πŸ‘‹

Version

Perare WEB Sdk package for displaying Proplink-verified map-widget on your webstie

🏠 Homepage

Install

npm install perare-web-sdk

Add those two style files to the bundle (e.g. with Webpack)

- "mapbox-gl/dist/mapbox-gl.css",
- "perare-web-sdk/dist/index.css"

If you're using a CSS loader like webpack css-loader, you can import the CSS directly in your JavaScript/Typescript.

import 'mapbox-gl/dist/mapbox-gl.css';
import 'perare-web-sdk/dist/index.css';

Or add those css files as externally-added to bundle css files.

Bundle size

This package depends on mapbox-gl-js, which is quite big package. Almost all map initializations are cached, but to prevent increased initial-bundle size, use lazy-loading of component/module.

Usage

import { PerareWebSdk } from "perare-web-sdk";

// first you need to create and wait toapprove of proplink
const id = createdProplink.id;
PerareWebSdk.register({
    token: '<YOUR_TOKEN>',
    apiUrl: '<SANDBOX/PROD API URL>',
});

PerareWebSdk.drawMapBanner({
    container: document.getElementById('perare-map-banner'),
    proplinkId: id,
});

Demo page

Coming soon

Author

πŸ‘€ Perare

Readme

Keywords

Package Sidebar

Install

npm i perare-web-sdk

Weekly Downloads

0

Version

1.1.8-beta

License

none

Unpacked Size

110 kB

Total Files

7

Last publish

Collaborators

  • perare-dev