2010-02-11 21 views
10

Digamos que tengo el control mapview en mi aplicación de Android. Si sé que existe un hito en cierta latitud y longitud, ¿cómo puedo determinar si ese hito se puede ver actualmente en la pantalla del usuario? ¿Hay algún método para obtener las coordenadas de las esquinas superior izquierda e inferior derecha del área visible?¿Cómo puedo determinar si se visualiza un punto geográfico en el área actualmente visible?

+0

Consejo, sólo prestar atención a esto: http://stackoverflow.com/questions/ 2667386/mapview-getlatitudespan-and-getlongitudespan-not-working –

Respuesta

6

Algo como esto hará el truco.

private boolean isCurrentLocationVisible() 
    { 
     Rect currentMapBoundsRect = new Rect(); 
     Point currentDevicePosition = new Point(); 
     GeoPoint deviceLocation = new GeoPoint((int) (bestCurrentLocation.getLatitude() * 1000000.0), (int) (bestCurrentLocation.getLongitude() * 1000000.0)); 

     mapView.getProjection().toPixels(deviceLocation, currentDevicePosition); 
     mapView.getDrawingRect(currentMapBoundsRect); 

     return currentMapBoundsRect.contains(currentDevicePosition.x, currentDevicePosition.y); 

    } 
-1

bien ya que me llevó algún tiempo para encontrar una solución de trabajo sencilla voy a publicar aquí para todos después de mí;) En su propia subclase de MapView sólo tiene que utilizar el siguiente:

GeoPoint topLeft = this.getProjection().fromPixels(0, 0); 
GeoPoint bottomRight = this.getProjection().fromPixels(getWidth(),getHeight()); 

Eso es todo, entonces se puede obtener a través de las coordenadas

topLeft.getLatitudeE6()/1E6 
topLeft.getLongitudeE6()/1E6 

y

bottomRight.getLatitudeE6()/1E6 
bottomRight.getLongitudeE6()/1E6 
+2

Deje de volver a publicar el mismo exacto respuesta a múltiples publicaciones Si son duplicados, márquelos como tales. Si no lo son, adapte su respuesta a la pregunta específica planteada. –

+0

No funcionó. –

1

unirse a los consejos here, here y here:

Aquí está el código completo de mi CustomMapView:

package net.alouw.alouwCheckin.ui.map; 

import android.content.Context; 
import android.util.AttributeSet; 
import android.util.Pair; 
import com.google.android.maps.GeoPoint; 
import com.google.android.maps.MapView; 

/** 
* @author Felipe Micaroni Lalli ([email protected]) 
*/ 
public class CustomMapView extends MapView { 
    public CustomMapView(Context context, String s) { 
     super(context, s); 
    } 

    public CustomMapView(Context context, AttributeSet attributeSet) { 
     super(context, attributeSet); 
    } 

    public CustomMapView(Context context, AttributeSet attributeSet, int i) { 
     super(context, attributeSet, i); 
    } 

    /** 
    * 
    * @return a Pair of two pairs with: top right corner (lat, lon), bottom left corner (lat, lon) 
    */ 
    public Pair<Pair<Double, Double>, Pair<Double, Double>> getMapCorners() { 
     GeoPoint center = getMapCenter(); 
     int latitudeSpan = getLatitudeSpan(); 
     int longtitudeSpan = getLongitudeSpan(); 

     double topRightLat = (center.getLatitudeE6() + (latitudeSpan/2.0d))/1.0E6; 
     double topRightLon = (center.getLongitudeE6() + (longtitudeSpan/2.0d))/1.0E6; 

     double bottomLeftLat = (center.getLatitudeE6() - (latitudeSpan/2.0d))/1.0E6; 
     double bottomLeftLon = (center.getLongitudeE6() - (longtitudeSpan/2.0d))/1.0E6; 

     return new Pair<Pair<Double, Double>, Pair<Double, Double>>(
       new Pair<Double, Double>(topRightLat, topRightLon), 
       new Pair<Double, Double>(bottomLeftLat, bottomLeftLon)); 
    } 
} 
Cuestiones relacionadas