示例#1
0
 /**
  * Get the screen pixel for a GeoPoint
  *
  * @param geoPoint the GeoPoint
  * @param out Point projected to screen pixel relative to center
  */
 public void toScreenPoint(GeoPoint geoPoint, Point out) {
   MercatorProjection.project(geoPoint, out);
   toScreenPoint(out.x, out.y, out);
 }