Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

236 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Maplat logo

Maplat

CI npm version License

About Maplat

Maplat is the cool Historical Map / Illustrated Map Viewer. It can transform each map's coordinates with a nonlinear but homeomorphic projection, which lets the maps collaborate with GPS and accurate maps without distorting the original map image. The companion data editor is provided as another project, MaplatEditor. This project won the Grand Prize / Educational Effectiveness Prize / Visitors Selection Prize on the Geo-Activity Contest 2018 held by the Ministry of Land, Infrastructure, Transport and Tourism.

Maplat is open-source under the Apache License 2.0 (from version 0.12.2).

Read this document in Japanese / 日本語で読む

Key Features

  • Historical map / illustrated map viewer with nonlinear but homeomorphic coordinate transformation
  • GPS / accurate map collaboration without distorting the original map image
  • Pluggable base maps (OpenLayers-based; optional Mapbox GL JS / MapLibre GL JS for vector tiles)
  • PWA-ready application shell (manifest, service worker, share, URL state)
  • Open-source (Apache 2.0 from version 0.12.2) with a companion desktop editor (MaplatEditor)

Quick Start

Release-dependent information (ADR-0012). The version 0.12.2 below is the current release; update it on each new release.

Install

# pnpm (recommended)
pnpm add @maplat/ui

# npm
npm install @maplat/ui

Minimal usage

import { MaplatUi } from '@maplat/ui';
import '@maplat/ui/dist/maplat_ui.css'; // Import styles

const option = {
  appid: 'myMark',
  // ...
};

MaplatUi.createObject(option).then(app => {
  // Application initialized
});

CDN (jsDelivr)

For usage directly in the browser without a bundler, you must load OpenLayers before loading Maplat UI. Maplat Core is bundled, so you do not need to load it separately.

<!-- OpenLayers -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/ol@10/ol.min.css">
<script src="https://cdn.jsdelivr.net/npm/ol@10/dist/ol.min.js"></script>

<!-- Maplat UI -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@maplat/ui@0.12.2/dist/maplat_ui.css">
<script src="https://cdn.jsdelivr.net/npm/@maplat/ui@0.12.2/dist/maplat_ui.umd.js"></script>

<div id="map_div"></div>
<script>
  var appOption = {
    appid: "tm",
    // ... options
  };
  MaplatUi.createObject(appOption).then(function(app) {
    console.log("Maplat initialized");
  });
</script>

Note: Make sure to use the latest compatible versions.

Lifecycle

API reference

Development

Setup

Clone the repository and install dependencies.

git clone https://github.com/code4history/Maplat.git
cd Maplat
pnpm install

Development Server

Start the development server with hot reload.

pnpm dev

Access http://localhost:5173/ in your browser.

Build

pnpm build        # Build npm package (dist/)
pnpm build:demo   # Build demo application (dist-demo/)

Test

pnpm test         # Run tests (Vitest)
pnpm typecheck    # Run type checks (TypeScript)
pnpm lint         # Run linter and formatter (ESLint/Prettier)

Prerequisites

Derived from the engines field in package.json (ADR-0012: release-dependent).

  • Node.js: v20 or v22 (LTS tested via GitHub Actions)
  • pnpm: >=9.0.0 (required; package.json enforces pnpm)

Peer Dependencies

Maplat UI depends on the following libraries as peer dependencies. You must install them manually.

  • OpenLayers (ol)^9.0.0 || ^10.0.0 (peer dependency of Maplat @maplat/ui and MaplatCore @maplat/core)
pnpm add ol

If you use Vector Tiles, you may also need Mapbox GL JS or MapLibre GL JS:

  • mapbox-gl: ^1.0.0 || ^2.0.0 || ^3.0.0
  • maplibre-gl: ^3.0.0 || ^4.0.0

Ecosystem

Maplat is part of the Maplat ecosystem by Code for History. See the full ecosystem map (8 repositories + product/corporate sites):

📖 Ecosystem Map(the diagram is currently kept in a private planning repository; the Sister repositories table below is the public substitute)

Sister repositories

Repository License npm Role
Maplat Apache 2.0 @maplat/ui Main viewer
MaplatCore Apache 2.0 @maplat/core Core library
MaplatTin Apache 2.0 @maplat/tin TIN conversion
MaplatTransform Apache 2.0 @maplat/transform Coordinate transform
MaplatEditor Apache 2.0 Data authoring tool (desktop)

MaplatEditor is the data authoring tool used to create the maps and POIs that the viewers above render. The Maplat ecosystem is end-to-end: author with MaplatEditor, serve with any of the viewer libraries.

Links

Audience Link Purpose
Project info / features / cases https://www.maplat.jp/en/ Product site
Sponsor / business inquiry https://www.nayuta-inc.co.jp/en/ Corporate site (Nayuta, Inc.)

ADR-0013: Apache-licensed repositories (this one) link to both sites. MIT-licensed sister repos (Weiwudi / Quyuan / Chuci) carry no Nayuta link.

License

Apache License 2.0 — see LICENSE.

Copyright 2019-2026 Kohei Otsuka, Code for History / Nayuta, Inc.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

Patent notice: The Maplat coordinate-transform technology is patented in Japan (Patent No. 6684776).

Past versions: Versions before 0.12.2 were distributed under the Maplat Limited License 1.1. The license restoration to Apache 2.0 takes effect from version 0.12.2 onward. Earlier versions available on npmjs.com remain under their original limited-license terms.

Contributors

This project exists thanks to all the people who contribute.

Sponsors

Maplat is supported by

Thank you to all our backers! 🙏 [Become a backer]

Support this project by becoming a sponsor. Your logo will show up here with a link to your website. [Become a sponsor]

About

Maplat is the cool Historical Map/Illustrated Map Viewer. It can transform each map coordinates with nonlinear but homeomorphic projection and makes possible that the maps can collaborate with GPS/accurate maps, without distorting original maps. Data editor of this solution is provided as another project, MaplatEditor

Resources

Stars

Watchers

Forks

Releases

Sponsor this project

Packages

Used by

Contributors

Languages