299300301302303304305306307308309
doubleClickZoomEnabled = enabled; AjaxRequestTarget target = RequestCycle.get().find(AjaxRequestTarget.class); if (target != null && findPage() != null) { target.appendJavaScript(getJSsetDoubleClickZoomEnabled(enabled)); } } } /**
328329330331332333334335336337338
scrollWheelZoomEnabled = enabled; AjaxRequestTarget target = getRequestCycle().find(AjaxRequestTarget.class); if (target != null && findPage() != null) { target.appendJavaScript(getJSsetScrollWheelZoomEnabled(enabled)); } } } /**
368369370371372373374375376377378
streetViewControlEnabled = enabled; AjaxRequestTarget target = getRequestCycle().find(AjaxRequestTarget.class); if (target != null && findPage() != null) { target.appendJavaScript(getJSsetStreetViewControlEnabled(enabled)); } } } /**
397398399400401402403404405406407
this.zoomControlEnabled = enabled; AjaxRequestTarget target = getRequestCycle().find(AjaxRequestTarget.class); if (target != null && findPage() != null) { target.appendJavaScript(getJSsetZoomControlEnabled(enabled)); } } } /**
428429430431432433434435436437438
this.mapTypeControlEnabled = enabled; AjaxRequestTarget target = getRequestCycle().find(AjaxRequestTarget.class); if (target != null && findPage() != null) { target.appendJavaScript(getJSsetMapTypeControlEnabled(enabled)); } } } /**
457458459460461462463464465466467
this.scaleControlEnabled = enabled; AjaxRequestTarget target = getRequestCycle().find(AjaxRequestTarget.class); if (target != null && findPage() != null) { target.appendJavaScript(getJSsetScaleControlEnabled(enabled)); } } } /**
486487488489490491492493494495496
this.panControlEnabled = enabled; AjaxRequestTarget target = getRequestCycle().find(AjaxRequestTarget.class); if (target != null && findPage() != null) { target.appendJavaScript(getJSsetPanControlEnabled(enabled)); } } } /**
514515516517518519520521522523524
this.mapType = mapType; AjaxRequestTarget target = RequestCycle.get().find(AjaxRequestTarget.class); if (target != null && findPage() != null) { target.appendJavaScript(mapType.getJSsetMapType(GMap.this)); } } } /**
556557558559560561562563564565566
this.zoom = level; AjaxRequestTarget target = getRequestCycle().find(AjaxRequestTarget.class); if (target != null && findPage() != null) { target.appendJavaScript(getJSsetZoom(zoom)); } } } /**
574575576577578579580581582583584
this.minZoom = level >= 0 ? level : 0; AjaxRequestTarget target = getRequestCycle().find(AjaxRequestTarget.class); if (target != null && findPage() != null) { target.appendJavaScript(getJSsetMinZoom(minZoom)); } } } /**