com.google.maps.gwt.client
Class MarkerImage

java.lang.Object
  extended by JavaScriptObject
      extended by com.google.maps.gwt.client.MarkerImage

public class MarkerImage
extends JavaScriptObject

THIS SOURCE CODE IS GENERATED, DO NOT MODIFY


Constructor Summary
protected MarkerImage()
          Protected constructor avoids default public constructor.
 
Method Summary
static MarkerImage create(java.lang.String url)
          A structure representing a Marker icon or shadow image.
static MarkerImage create(java.lang.String url, Point origin)
          A structure representing a Marker icon or shadow image.
static MarkerImage create(java.lang.String url, Point origin, Point anchor)
          A structure representing a Marker icon or shadow image.
static MarkerImage create(java.lang.String url, Point origin, Point anchor, Size scaledSize)
          A structure representing a Marker icon or shadow image.
static MarkerImage create(java.lang.String url, Point origin, Size scaledSize)
          A structure representing a Marker icon or shadow image.
static MarkerImage create(java.lang.String url, Size size)
          A structure representing a Marker icon or shadow image.
static MarkerImage create(java.lang.String url, Size size, Point origin)
          A structure representing a Marker icon or shadow image.
static MarkerImage create(java.lang.String url, Size size, Point origin, Point anchor)
          A structure representing a Marker icon or shadow image.
static MarkerImage create(java.lang.String url, Size size, Point origin, Point anchor, Size scaledSize)
          A structure representing a Marker icon or shadow image.
static MarkerImage create(java.lang.String url, Size size, Point origin, Size scaledSize)
          A structure representing a Marker icon or shadow image.
static MarkerImage create(java.lang.String url, Size size, Size scaledSize)
          A structure representing a Marker icon or shadow image.
 Point getAnchor()
          The position at which to anchor an image in correspondance to the location of the marker on the map.
 Point getOrigin()
          The position of the image within a sprite, if any.
 Size getScaledSize()
          The size of the entire image after scaling, if any.
 Size getSize()
          The display size of the sprite or image.
 java.lang.String getUrl()
          The URL of the image or sprite sheet.
 void setAnchor(Point anchor)
          The position at which to anchor an image in correspondance to the location of the marker on the map.
 void setOrigin(Point origin)
          The position of the image within a sprite, if any.
 void setScaledSize(Size scaledSize)
          The size of the entire image after scaling, if any.
 void setSize(Size size)
          The display size of the sprite or image.
 void setUrl(java.lang.String url)
          The URL of the image or sprite sheet.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

MarkerImage

protected MarkerImage()
Protected constructor avoids default public constructor.

Method Detail

create

public static MarkerImage create(java.lang.String url,
                                 Size size,
                                 Point origin,
                                 Point anchor,
                                 Size scaledSize)
A structure representing a Marker icon or shadow image.


create

public static MarkerImage create(java.lang.String url,
                                 Size size,
                                 Point origin,
                                 Point anchor)
A structure representing a Marker icon or shadow image.


create

public static MarkerImage create(java.lang.String url,
                                 Size size,
                                 Point origin,
                                 Size scaledSize)
A structure representing a Marker icon or shadow image.


create

public static MarkerImage create(java.lang.String url,
                                 Size size,
                                 Point origin)
A structure representing a Marker icon or shadow image.


create

public static MarkerImage create(java.lang.String url,
                                 Size size,
                                 Size scaledSize)
A structure representing a Marker icon or shadow image.


create

public static MarkerImage create(java.lang.String url,
                                 Size size)
A structure representing a Marker icon or shadow image.


create

public static MarkerImage create(java.lang.String url,
                                 Point origin,
                                 Point anchor,
                                 Size scaledSize)
A structure representing a Marker icon or shadow image.


create

public static MarkerImage create(java.lang.String url,
                                 Point origin,
                                 Point anchor)
A structure representing a Marker icon or shadow image.


create

public static MarkerImage create(java.lang.String url,
                                 Point origin,
                                 Size scaledSize)
A structure representing a Marker icon or shadow image.


create

public static MarkerImage create(java.lang.String url,
                                 Point origin)
A structure representing a Marker icon or shadow image.


create

public static MarkerImage create(java.lang.String url)
A structure representing a Marker icon or shadow image.


getAnchor

public final Point getAnchor()
The position at which to anchor an image in correspondance to the location of the marker on the map. By default, the anchor is located along the center point of the bottom of the image.


getOrigin

public final Point getOrigin()
The position of the image within a sprite, if any. By default, the origin is located at the top left corner of the image (0, 0) .


getScaledSize

public final Size getScaledSize()
The size of the entire image after scaling, if any. Use this property to stretch/shrink an image or a sprite.


getSize

public final Size getSize()
The display size of the sprite or image. When using sprites, you must specify the sprite size. If the size is not provided, it will be set when the image loads.


getUrl

public final java.lang.String getUrl()
The URL of the image or sprite sheet.


setAnchor

public final void setAnchor(Point anchor)
The position at which to anchor an image in correspondance to the location of the marker on the map. By default, the anchor is located along the center point of the bottom of the image.


setOrigin

public final void setOrigin(Point origin)
The position of the image within a sprite, if any. By default, the origin is located at the top left corner of the image (0, 0) .


setScaledSize

public final void setScaledSize(Size scaledSize)
The size of the entire image after scaling, if any. Use this property to stretch/shrink an image or a sprite.


setSize

public final void setSize(Size size)
The display size of the sprite or image. When using sprites, you must specify the sprite size. If the size is not provided, it will be set when the image loads.


setUrl

public final void setUrl(java.lang.String url)
The URL of the image or sprite sheet.