我想zoom
在openlayers
图书馆的某个位置,例如:Berlin
当用户点击按钮时。有人能告诉我怎么可能吗?
以下是我的代码:
app.component.html
<button id='berlin' (click)="onClick('berlin')">Zoom to Berlin</button>
app.component.ts
berlin = fromLonLat([13.388866, 52.517071]);
public onClick(city:any) {
console.log(city);
view.animate({
center: city,
duration: 2000
});
}