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