A minimal template project demonstrating how to display an interactive 3D indoor map using Mappedin JS v6.
This project accompanies the Mappedin JS Getting Started Guide.
- Interactive 3D indoor map rendering
- Pan, zoom, and rotate controls
- Built with Vite and TypeScript
git clone https://github.com/MappedIn/mappedin-js-quickstart.git
cd mappedin-js-quickstartyarn installOr with npm:
npm installyarn devOr with npm:
npm run devOpen your browser and navigate to the URL shown in the terminal (typically http://localhost:5173).
mappedin-js-quickstart/
├── index.html # HTML entry point with map container
├── src/
│ └── main.ts # Main TypeScript file that initializes the map
├── package.json # Project dependencies and scripts
└── tsconfig.json # TypeScript configuration
This project uses Mappedin demo API keys for demonstration purposes. These keys are subject to the Demo Keys and Maps Terms and Conditions.
To use Mappedin JS with your own venue, you'll need a Pro license. Visit the Mappedin Pricing page for more information.
| Script | Description |
|---|---|
yarn dev |
Start the development server |
yarn build |
Build for production |
yarn preview |
Preview the production build |