Mapbox example / remove more unused code

This commit is contained in:
Olivier Guyot
2019-05-13 12:13:26 +02:00
parent 1deabaa1c0
commit 78cee60d91
+1 -8
View File
@@ -34,11 +34,6 @@ class Mapbox extends Layer {
const view = map.getView(); const view = map.getView();
const center = toLonLat(view.getCenter(), view.getProjection()); const center = toLonLat(view.getCenter(), view.getProjection());
this.centerLastRender = view.getCenter();
this.zoomLastRender = view.getZoom();
this.centerLastRender = view.getCenter();
this.zoomLastRender = view.getZoom();
const options = assign(this.baseOptions, { const options = assign(this.baseOptions, {
attributionControl: false, attributionControl: false,
boxZoom: false, boxZoom: false,
@@ -73,8 +68,6 @@ class Mapbox extends Layer {
const map = this.map_; const map = this.map_;
const view = map.getView(); const view = map.getView();
this.centerNextRender = view.getCenter();
// adjust view parameters in mapbox // adjust view parameters in mapbox
const rotation = frameState.viewState.rotation; const rotation = frameState.viewState.rotation;
if (rotation) { if (rotation) {
@@ -82,7 +75,7 @@ class Mapbox extends Layer {
animate: false animate: false
}); });
} }
const center = toLonLat(this.centerNextRender, view.getProjection()); const center = toLonLat(view.getCenter(), view.getProjection());
const zoom = view.getZoom() - 1; const zoom = view.getZoom() - 1;
this.mbmap.jumpTo({ this.mbmap.jumpTo({
center: center, center: center,