UNPKG

@fchh/fcos-suite-map

Version:

This project contains a Map component that can be used to display relevant locations of a Fab City. It is a npm package that contains a React component, which can be embedded into other web projects. It uses Mapbox GL as an interactive mapping framework a

10 lines (9 loc) 239 B
import { default as React } from 'react'; interface MapProps { mapboxToken: string; mapStyle?: string; poiRoutePrefix?: string; defaultCenter?: [number, number]; } declare const Map: React.FC<MapProps>; export default Map;