mapbox-gl-leaflet
Advanced tools
Comparing version 0.0.10 to 0.0.11
@@ -9,7 +9,18 @@ # Change Log | ||
## [0.0.11] - 2019-11-04 | ||
### Fixed | ||
- ensure gl map is added to leaflet TilePane | ||
## [0.0.10] - 2019-09-16 | ||
- added `.getContainer()`, `.getSize()`, `getBounds()` and `getCanvas()` methods. | ||
- internal code changes to bring it closer to other overlay layers. | ||
## Added | ||
- `.getContainer()`, `.getSize()`, `getBounds()` and `getCanvas()` methods. | ||
## Fixed | ||
- internal code changes to bring it closer to other overlay layers. | ||
## [0.0.9] - 2019-09-02 | ||
@@ -74,3 +85,7 @@ | ||
[Unreleased]: https://github.com/mapbox/mapbox-gl-leaflet/compare/v0.0.7...HEAD | ||
[Unreleased]: https://github.com/mapbox/mapbox-gl-leaflet/compare/v0.0.11...HEAD | ||
[0.0.11]: https://github.com/mapbox/mapbox-gl-leaflet/compare/v0.0.10...v0.0.11 | ||
[0.0.10]: https://github.com/mapbox/mapbox-gl-leaflet/compare/v0.0.9...v0.0.10 | ||
[0.0.9]: https://github.com/mapbox/mapbox-gl-leaflet/compare/v0.0.8...v0.0.9 | ||
[0.0.8]: https://github.com/mapbox/mapbox-gl-leaflet/compare/v0.0.7...v0.0.8 | ||
[0.0.7]: https://github.com/mapbox/mapbox-gl-leaflet/compare/v0.0.6...v0.0.7 | ||
@@ -77,0 +92,0 @@ [0.0.6]: https://github.com/mapbox/mapbox-gl-leaflet/compare/v0.0.5...v0.0.6 |
@@ -42,3 +42,3 @@ (function (root, factory) { | ||
this.getPane().appendChild(this._container); | ||
map.getPanes().tilePane.appendChild(this._container); | ||
@@ -60,3 +60,3 @@ this._initGL(); | ||
this.getPane().removeChild(this._container); | ||
map.getPanes().tilePane.removeChild(this._container); | ||
this._glMap.remove(); | ||
@@ -63,0 +63,0 @@ this._glMap = null; |
{ | ||
"name": "mapbox-gl-leaflet", | ||
"version": "0.0.10", | ||
"version": "0.0.11", | ||
"description": "binding from mapbox gl to the leaflet api", | ||
@@ -14,3 +14,3 @@ "main": "leaflet-mapbox-gl.js", | ||
"type": "git", | ||
"url": "git://github.com/mapbox/mapbox-gl-leaflet.git" | ||
"url": "https://github.com/mapbox/mapbox-gl-leaflet.git" | ||
}, | ||
@@ -17,0 +17,0 @@ "keywords": [ |
@@ -58,4 +58,4 @@ **Note: this tool is experimental and is not actively supported by Mapbox. For support, please open an issue in this repository.** | ||
<!-- Mapbox GL --> | ||
<link href='https://api.tiles.mapbox.com/mapbox-gl-js/v0.14.3/mapbox-gl.css' rel='stylesheet' /> | ||
<script src='https://api.tiles.mapbox.com/mapbox-gl-js/v0.14.3/mapbox-gl.js'></script> | ||
<link href='https://api.tiles.mapbox.com/mapbox-gl-js/v1.4.0/mapbox-gl.css' rel='stylesheet' /> | ||
<script src='https://api.tiles.mapbox.com/mapbox-gl-js/v1.4.0/mapbox-gl.js'></script> | ||
``` | ||
@@ -62,0 +62,0 @@ You can also use Unpkg as a CDN using: |
17713