@1nf053c/mapbox-map
TypeScript icon, indicating that this package has built-in type declarations

0.1.7 • Public • Published

@1nf053c/mapbox-map

a Reactjs component that renders a mapbox map

screenshot of @1nf053c/mapbox-map reactjs component

Getting Started

npm i @1nf053c/mapbox-map

https://www.npmjs.com/package/@1nf053c/mapbox-map

"use client";

import { MapboxMap } from "@1nf053c/mapbox-map";

export function MapboxMapContainer() {

    const config = {
        publicKey="YOUR_MAPBOX_PUBLIC_KEY",
        startLng=50,
        startLat=-51,
        zoomLevel=12
    }

    return <MapboxMap
        publicKey={config.publicKey}
        startLng={config.startLng}
        startLat={config.startLat}
        zoomLevel={config.zoomLevel} 
    />
}

// 1. import MapboxMap component
// 2. Create or fetch your MapboxMap config
// 3. Render MapboxMap component with config

What's Next:

Feature extensions with hooks
"use client";

import {
    MapboxMap,
    MapboxMapAthleticsAdvisorPlugin,
    MapboxMapRestaurantAdvisorPlugin,
    // ...etc
} from "@1nf053c/mapbox-map";

export function MapboxMapContainer() {

    const config = {
        publicKey="YOUR_MAPBOX_PUBLIC_KEY",
        startLng=50,
        startLat=-51,
        zoomLevel=12
    };

    const plugins = [MapboxMapAthleticsAdvisor, MapboxMapRestaurantAdvisor];
    
    return (
        <MapboxMap
            plugins={plugins}
            publicKey={config.publicKey}
            startLng={config.startLng}
            startLat={config.startLat}
            zoomLevel={config.zoomLevel} 
        />
    );
}

Readme

Keywords

Package Sidebar

Install

npm i @1nf053c/mapbox-map

Weekly Downloads

0

Version

0.1.7

License

MIT

Unpacked Size

9.53 kB

Total Files

15

Last publish

Collaborators

  • 1nf053c