コード例 #1
0
 public GroundOverlayOptions image(BitmapDescriptor image) {
   real.image(image);
   return this;
 }
コード例 #2
0
 public float getWidth() {
   return real.getWidth();
 }
コード例 #3
0
 public float getZIndex() {
   return real.getZIndex();
 }
コード例 #4
0
 public LatLng getLocation() {
   return real.getLocation();
 }
コード例 #5
0
 public float getTransparency() {
   return real.getTransparency();
 }
コード例 #6
0
 public GroundOverlayOptions transparency(float transparency) {
   real.transparency(transparency);
   return this;
 }
コード例 #7
0
 public BitmapDescriptor getImage() {
   return real.getImage();
 }
コード例 #8
0
 public float getBearing() {
   return real.getBearing();
 }
コード例 #9
0
 public LatLngBounds getBounds() {
   return real.getBounds();
 }
コード例 #10
0
 public GroundOverlayOptions bearing(float bearing) {
   real.bearing(bearing);
   return this;
 }
コード例 #11
0
 public float getAnchorV() {
   return real.getAnchorV();
 }
コード例 #12
0
 public GroundOverlayOptions anchor(float u, float v) {
   real.anchor(u, v);
   return this;
 }
コード例 #13
0
 public GroundOverlayOptions zIndex(float zIndex) {
   real.zIndex(zIndex);
   return this;
 }
コード例 #14
0
 public GroundOverlayOptions visible(boolean visible) {
   real.visible(visible);
   return this;
 }
コード例 #15
0
 public boolean isVisible() {
   return real.isVisible();
 }
コード例 #16
0
 public float getHeight() {
   return real.getHeight();
 }
コード例 #17
0
 public GroundOverlayOptions position(LatLng location, float width) {
   real.position(location, width);
   return this;
 }
コード例 #18
0
 public GroundOverlayOptions positionFromBounds(LatLngBounds bounds) {
   real.positionFromBounds(bounds);
   return this;
 }