Beispiel #1
0
 /**
  * Register a set of offset points to use when calculating position within the TileView. Any type
  * of coordinate system can be used (any type of lat/lng, percentile-based, etc), and all
  * positioned are calculated relatively. If relative bounds are defined, position parameters
  * received by TileView methods will be translated to the the appropriate pixel value. To remove
  * this process, use undefineBounds.
  *
  * @param left The left edge of the rectangle used when calculating position.
  * @param top The top edge of the rectangle used when calculating position.
  * @param right The right edge of the rectangle used when calculating position.
  * @param bottom The bottom edge of the rectangle used when calculating position.
  */
 public void defineBounds(double left, double top, double right, double bottom) {
   mCoordinateTranslater.setBounds(left, top, right, bottom);
 }