Skip to content

Commit a262f27

Browse files
author
Lucas Wojciechowski
committed
v0.12.5
1 parent e91483b commit a262f27

File tree

6 files changed

+24
-7
lines changed

6 files changed

+24
-7
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
## 0.12.5 (Jan 27 2016)
2+
3+
#### Bugfixes
4+
5+
Fixed easeTo pan, zoom, and rotate when initial rotation != 0 (#1950)
6+
Fixed rendering of tiles with an extent != 4096 (#1952)
7+
Fixed missing icon collision boxes (#1978)
8+
Fixed null `Tile#buffers` errors (#1987)
9+
10+
#### New Features & Improvements
11+
12+
Added `symbol-avoid-edges` style property (#1951)
13+
Improved `symbol-max-angle` check algorithm (#1959)
14+
Added marker clustering! (#1931)
15+
Added zoomstart, zoom, and zoomend events (#1958)
16+
Disabled drag on mousedown when using boxzoom (#1907)
17+
118
## 0.12.4 (Jan 19 2016)
219

320
#### Bugfixes

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ A WebGL JavaScript interactive maps library that can render [Mapbox Vector Tiles
77
Include the source via HTML tags:
88

99
```html
10-
<script src='https://api.tiles.mapbox.com/mapbox-gl-js/v0.12.4/mapbox-gl.js'></script>
11-
<link href='https://api.tiles.mapbox.com/mapbox-gl-js/v0.12.4/mapbox-gl.css' rel='stylesheet' />
10+
<script src='https://api.tiles.mapbox.com/mapbox-gl-js/v0.12.5/mapbox-gl.js'></script>
11+
<link href='https://api.tiles.mapbox.com/mapbox-gl-js/v0.12.5/mapbox-gl.css' rel='stylesheet' />
1212
```
1313

1414
For more information, see the [API documentation](https://www.mapbox.com/mapbox-gl-js/api/) and [examples](https://www.mapbox.com/mapbox-gl-js/examples/).

_config.mb-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ permalink: /:categories/:title
66
baseurl: /mapbox-gl-js
77
highlighter: pygments
88
excerpt_separator: ""
9-
version: v0.12.4
9+
version: v0.12.5
1010
rdiscount:
1111
extensions: [smart]
1212
exclude: [dist]

_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ permalink: /:categories/:title
66
baseurl: /mapbox-gl-js
77
highlighter: pygments
88
excerpt_separator: ""
9-
version: v0.12.4
9+
version: v0.12.5
1010
mapboxglbase: /mapbox-gl-js/dist
1111
rdiscount:
1212
extensions: [smart]

bench/fps/site.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
var urls = [
2-
'https://api.tiles.mapbox.com/mapbox-gl-js/v0.12.4/mapbox-gl.js',
2+
'https://api.tiles.mapbox.com/mapbox-gl-js/v0.12.5/mapbox-gl.js',
33
'/dist/mapbox-gl.js',
4-
'https://api.tiles.mapbox.com/mapbox-gl-js/v0.12.4/mapbox-gl.js',
4+
'https://api.tiles.mapbox.com/mapbox-gl-js/v0.12.5/mapbox-gl.js',
55
'/dist/mapbox-gl.js'
66
];
77

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "mapbox-gl",
33
"description": "A WebGL interactive maps library",
4-
"version": "0.12.4",
4+
"version": "0.12.5",
55
"main": "js/mapbox-gl.js",
66
"license": "BSD-3-Clause",
77
"repository": {

0 commit comments

Comments
 (0)