Hi!
I found that setZoom not change zoom level if it is large (no shrink).
I debug and getZoom always zero. Is this not a source bug (setAttribute vs getProperty)?
public void setZoom(int zoom) { this.getElement().setAttribute("zoom", Integer.toString(zoom)); }@Synchronize({“google-map-idle”})
public int getZoom() {
return this.getElement().getProperty(“zoom”, 0);
}