File tree 6 files changed +25
-7
lines changed
6 files changed +25
-7
lines changed Original file line number Diff line number Diff line change
1
+ ## 0.14.2 (Feb 19 2016)
2
+
3
+ #### Bugfixes
4
+
5
+ Look for loaded parent tiles in cache
6
+ Set tile cache size based on viewport size (#2137 )
7
+ Fix tile render order for layer-by-layer
8
+ Remove source update throttling (#2139 )
9
+ Make panning while zooming more linear (#2070 )
10
+ Round points created during bucket creation (#2067 )
11
+ Correct bounds for a rotated or tilted map (#1842 )
12
+ Fix overscaled featuresAt (#2103 )
13
+ Allow using ` tileSize: 512 ` as a switch to trade retina support for 512px raster tiles
14
+ Fix the serialization of paint classes (#2107 )
15
+ Fixed bug where unsetting style properties could mutate the value of other style properties (#2105 )
16
+ Less slanted dashed lines near sharp corners (#967 )
17
+ Fire map#load if no initial style is set (#2042 )
18
+
1
19
## 0.14.1 (Feb 10 2016)
2
20
3
21
#### Bugfixes
Original file line number Diff line number Diff line change @@ -7,8 +7,8 @@ A WebGL JavaScript interactive maps library that can render [Mapbox Vector Tiles
7
7
Include the source via HTML tags:
8
8
9
9
``` html
10
- <script src =' https://api.tiles.mapbox.com/mapbox-gl-js/v0.14.1 /mapbox-gl.js' ></script >
11
- <link href =' https://api.tiles.mapbox.com/mapbox-gl-js/v0.14.1 /mapbox-gl.css' rel =' stylesheet' />
10
+ <script src =' https://api.tiles.mapbox.com/mapbox-gl-js/v0.14.2 /mapbox-gl.js' ></script >
11
+ <link href =' https://api.tiles.mapbox.com/mapbox-gl-js/v0.14.2 /mapbox-gl.css' rel =' stylesheet' />
12
12
```
13
13
14
14
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/ ) .
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ permalink: /:categories/:title
6
6
baseurl : /mapbox-gl-js
7
7
highlighter : pygments
8
8
excerpt_separator : " "
9
- version : v0.14.1
9
+ version : v0.14.2
10
10
rdiscount :
11
11
extensions : [smart]
12
12
exclude : [dist]
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ permalink: /:categories/:title
6
6
baseurl : /mapbox-gl-js
7
7
highlighter : pygments
8
8
excerpt_separator : " "
9
- version : v0.14.1
9
+ version : v0.14.2
10
10
mapboxglbase : /mapbox-gl-js/dist
11
11
rdiscount :
12
12
extensions : [smart]
Original file line number Diff line number Diff line change 1
1
var urls = [
2
- 'https://api.tiles.mapbox.com/mapbox-gl-js/v0.14.1 /mapbox-gl.js' ,
2
+ 'https://api.tiles.mapbox.com/mapbox-gl-js/v0.14.2 /mapbox-gl.js' ,
3
3
'/dist/mapbox-gl.js' ,
4
- 'https://api.tiles.mapbox.com/mapbox-gl-js/v0.14.1 /mapbox-gl.js' ,
4
+ 'https://api.tiles.mapbox.com/mapbox-gl-js/v0.14.2 /mapbox-gl.js' ,
5
5
'/dist/mapbox-gl.js'
6
6
] ;
7
7
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " mapbox-gl" ,
3
3
"description" : " A WebGL interactive maps library" ,
4
- "version" : " 0.14.1 " ,
4
+ "version" : " 0.14.2 " ,
5
5
"main" : " js/mapbox-gl.js" ,
6
6
"license" : " BSD-3-Clause" ,
7
7
"repository" : {
You can’t perform that action at this time.
0 commit comments