Oscar Lorentzon 5a977e59ef Document mouse component and handlers.
Exclude private properties from docs.
Exclude internal interfaces from docs.
Include mouse component classes in docs.
2017-03-23 13:12:58 +00:00
2017-03-23 10:17:25 +00:00
2015-11-13 15:13:37 +01:00
2017-01-10 15:54:01 +00:00
2016-01-18 11:33:06 +01:00
2016-01-13 17:22:14 +01:00
2016-06-16 10:12:03 +02:00
2016-01-13 11:29:53 +01:00
2017-01-20 08:50:16 +00:00
2016-03-21 17:13:01 -07:00
2016-12-21 17:04:09 +01:00

Build Status

MapillaryJS

MapillaryJS is a JavaScript & WebGL library that renders street level photos from Mapillary.

San Francisco on Mapillary.com Frigilana on Mapillary.com

Using MapillaryJS

To use MapillaryJS you must create an account and obtain a Client ID. Then you can use MapillaryJS with a <script> tag.

<!DOCTYPE html>
<html>
<head>
    <script src='https://unpkg.com/mapillary-js@2.4.0/dist/mapillary.min.js'></script>
    <link href='https://unpkg.com/mapillary-js@2.4.0/dist/mapillary.min.css' rel='stylesheet' />
</head>

<body>
    <div id='mly' style='width: 640px; height: 480px;'></div>

    <script>
        var mly = new Mapillary.Viewer(
            'mly',
            '<your client id>',
            '<your photo id for initializing the viewer>'
        );
    </script>
</body>
</html>

Alternatively, you can npm install mapillary-js to use it with a module loader or bundler of your choice.

Refer to the Examples and Documentation sections below for more information.

Examples

Documentation

Changelog

Every release is described on the GitHub Releases page.

License

MIT License

Contributing to MapillaryJS

See CONTRIBUTING.md.

Migrating from MapillaryJS 1 to 2

See MIGRATING.md.

Description
Interactive, extendable street imagery map experiences in the browser, powered by WebGL
Readme MIT 73 MiB
Languages
TypeScript 98.3%
CSS 1.5%
JavaScript 0.2%