/** * Sets the change in degrees required to initiate a watchHeading success callback. * * @param value */ public void setFilter(double value) { JsoHelper.setAttribute(jsObj, "filter", value); }
/** * Sets how often to retrieve the compass heading, in milliseconds. * * @param value */ public void setFrequency(double value) { JsoHelper.setAttribute(jsObj, "frequency", value); }
private void setStyle(String value) { JsoHelper.setAttribute(jsObj, "style", value); }
/** * IDs of map types to show in the control. * * @param values */ private void setMapTypeIds(JsArrayString values) { JsoHelper.setAttribute(jsObj, "mapTypeIds", values); }
private final void setPosition(String value) { JsoHelper.setAttribute(jsObj, "position", value); }