Skip to content

Commit

Permalink
3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
oscarlorentzon committed Jan 20, 2021
1 parent 2b2ed31 commit 6c48075
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 8 deletions.
24 changes: 23 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,29 @@ All notable changes to this project from MapillaryJS 3.x will be documented in t

The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## 3.0.0 - 2020-12-10
## 3.1.0 - January 20, 2021

### :rocket: New features
- Remove method on `Viewer` for releasing resources ([#321](https://github.com/mapillary/mapillary-js/pull/321))
- Add `GeoCoords` class to API ([#322](https://github.com/mapillary/mapillary-js/pull/322))
- Add original altitude property to `Node` and `IFillNode` ([#326](https://github.com/mapillary/mapillary-js/pull/326))
- Spatial camera and point resize options ([#319](https://github.com/mapillary/mapillary-js/pull/319))
- Spatial option for orginal altitude ([#326](https://github.com/mapillary/mapillary-js/pull/326))
- Spatial mouse interaction ([#319](https://github.com/mapillary/mapillary-js/pull/319))
- Comply with filter in spatial component ([#324](https://github.com/mapillary/mapillary-js/pull/324))

### :nail_care: Improvements
- Disable play functionality in earth mode ([#320](https://github.com/mapillary/mapillary-js/pull/320))

### :memo: Documentation
- Fix examples of viewer creation ([#318](https://github.com/mapillary/mapillary-js/pull/318))
- Remove obsolete `move close to` example ([#323](https://github.com/mapillary/mapillary-js/pull/323))

### :house: Internal
- Add docker development option and instruction ([#325](https://github.com/mapillary/mapillary-js/pull/325))


## 3.0.0 - December 12, 2020

### :rocket: New features
- Add `qualityScore` property on `Node`
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ MapillaryJS is a JavaScript & WebGL library that renders street level imagery fr

To use MapillaryJS you must [create an account](https://www.mapillary.com/signup) and [obtain a Client ID by registering an application](https://www.mapillary.com/app/settings/developers).

You can use MapillaryJS as a `<script>` tag from a [CDN](https://unpkg.com/browse/mapillary-js@3.0.0/dist/), or as a `mapillary-js` package on [npm](https://www.npmjs.com/package/mapillary-js).
You can use MapillaryJS as a `<script>` tag from a [CDN](https://unpkg.com/browse/mapillary-js@3.1.0/dist/), or as a `mapillary-js` package on [npm](https://www.npmjs.com/package/mapillary-js).

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

<body>
Expand Down
6 changes: 3 additions & 3 deletions docs/landing.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ MapillaryJS is a JavaScript & WebGL library that renders street level imagery fr

To use MapillaryJS you must [create an account](https://www.mapillary.com/signup) and [obtain a Client ID by registering an application](https://www.mapillary.com/app/settings/developers).

You can use MapillaryJS as a `<script>` tag from a [CDN](https://unpkg.com/browse/mapillary-js@3.0.0/dist/), or as a `mapillary-js` package on [npm](https://www.npmjs.com/package/mapillary-js).
You can use MapillaryJS as a `<script>` tag from a [CDN](https://unpkg.com/browse/mapillary-js@3.1.0/dist/), or as a `mapillary-js` package on [npm](https://www.npmjs.com/package/mapillary-js).

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

<body>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mapillary-js",
"version": "3.0.0",
"version": "3.1.0",
"description": "WebGL JavaScript library for displaying street level imagery from mapillary.com",
"main": "dist/mapillary.min",
"license": "MIT",
Expand Down

0 comments on commit 6c48075

Please sign in to comment.