From CAD upload to navigation mesh, before your coffee is ready.
MindDigitize ingests the file format your architect already uses. Walls snap. Rooms get inferred. A pathfinding graph is generated. You don't see any of it — you see a map you can route on.
- DXF · DWG · IFCsupported on day one
- 8 minmedian time to first map
- 1.2Mline segments / file ceiling
The pipeline isn't the product. The map is.
Wall snapping
Stray endpoints get welded to their nearest neighbours within a configurable tolerance. The parsing report tells you exactly where we cleaned up.
Room inference
Closed loops become rooms. Open corridors become navigable space. Doors are detected as breaks in wall continuity.
Text-block harvesting
Floor-plan annotations become POI candidates with their original coordinates preserved. You decide which ones to publish.
Topology graph
A skeleton graph (Zhang-Suen thinned + simplified) gives the router something to walk before you've placed a single waypoint by hand.
Upload a file. Get back a map.
// POST a DXF, get a parsed Map back
const res = await fetch('https://api.minddigitize.com/v1/maps', {
method: 'POST',
headers: { Authorization: `Bearer ${token}` },
body: form // multipart with the .dxf
});
const { mapId, floors, rooms, issues } = await res.json();
// floors: [{ id, level, rooms: 18, area: 4210 }, ...]
// issues: [{ kind: 'open-wall', floor: 'L2', point: [x,y] }, ...]The work nobody else takes off your plate.
- Hand-tracing rooms over a PDF.
- Wrestling with rogue CAD layers and exploded blocks.
- Re-routing every time facilities moves a wall.
- Maintaining three exports for three vendors.
- Wayfinding
Wayfinding
A* over a structural-topology graph. Multi-floor connectors, accessibility profiles, closures that propagate in seconds.
Read more - 3D viewer
3D viewer
A public map that looks like an app and shares like a link. MapLibre, embeddable, kiosk-ready.
Read more - Analytics
Analytics
Heatmaps, dwell time, failed searches — the signals an operator actually acts on. No SDK install.
Read more
Your building is one CAD file away from a navigable map.
Book a 20-minute demo and we'll have a working public viewer of your floor plan before the call ends.
