Uses of Class
jp.sf.mapswidgets.Point

Uses of Point in jp.sf.mapswidgets
 

Methods in jp.sf.mapswidgets that return Point
 Point Point.clone()
           
 Point GoogleMaps.getCenter()
          Returns the center point of the map viewport in latitude/longitude coordinates.
 Point Icon.getOffsetOfInfoWindow()
          Get the offset of the marker info window.
 Point Icon.getOffsetOfMarker()
          Get the offset of the marker.
 Point Marker.getPoint()
          Get the point.
 Point[] Polyline.getPoints()
          Get the points.
 

Methods in jp.sf.mapswidgets that return types with arguments of type Point
 java.util.List<Point> Polyline.getPointsList()
          Get the inner points list.
 

Methods in jp.sf.mapswidgets with parameters of type Point
 void GoogleMapsListener.clicked(Point point)
          Called when the user clicks the map.
 void GoogleMapsAdapter.clicked(Point point)
           
 void GoogleMaps.moveTo(Point targetPoint)
          Centers the map at the given point, doing a fluid pan to the point if it is within the current map viewport.
 void GoogleMaps.setCenter(Point newPoint)
          Centers the map at the given point.
 void Icon.setOffsetOfInfoWindow(Point offsetOfInfoWindow)
          Set the offset of the marker info window.
 void Icon.setOffsetOfMarker(Point offsetOfMarker)
          Set the offset of the marker.
 void Marker.setPoint(Point point)
          Set the point.
 void Polyline.setPoints(Point[] points)
          Set the points
 void GoogleMaps.showInfoWindow(Point point, java.lang.String html)
          Displays the info window with the given HTML content at the given point.
 void GoogleMaps.showInfoWindow(Point point, java.lang.String html, Size offset)
          Displays the info window with the given HTML content at the given point.
 void GoogleMaps.showMapWindow(Point point)
          Shows a blowup of the map at the given point.
 void GoogleMaps.showMapWindow(Point point, int zoomLevel)
          Shows a blowup of the map at the given point.
 void GoogleMaps.showMapWindow(Point point, int zoomLevel, MapType type)
          Shows a blowup of the map at the given point.
 void GoogleMaps.showMapWindow(Point point, int zoomLevel, MapType type, Size offset)
          Shows a blowup of the map at the given point.
 

Constructors in jp.sf.mapswidgets with parameters of type Point
Icon(java.lang.String imageURL, Size imageSize, java.lang.String shadowImageURL, Size shadowImageSize, Point offsetOfMarker)
          Construct a new instance of this class given the mandatory values.
Marker(Point point)
          Construct a new instance of this class given the point.
Marker(Point point, Icon icon)
          Construct a new instance of this class given the point and the icon.
Polyline(Point[] points)
          Construct a new instance of this class given the points.
Polyline(Point[] points, org.eclipse.swt.graphics.RGB color)
          Construct a new instance of this class given the points and the color.
Polyline(Point[] points, org.eclipse.swt.graphics.RGB color, int lineWidth)
          Construct a new instance of this class given the points, the color and the width of the line.
Polyline(Point[] points, org.eclipse.swt.graphics.RGB color, int lineWidth, double opacity)
          Construct a new instance of this class given the points, the color , the width of the line and the opacity.