Mostrar el mapa de Taiwán en la aplicación de Android
Frecuentes
Visto 159 veces
1
Here I develop one application which shows Map in Application. I show map in my app and it is working fine, but I show that country which I want to display in Map from application. So how to do it? Is it possible in Android?
Por favor, ayúdame.
Gracias de antemano.
1 Respuestas
3
First of all track you current position through LocationListener/LocationManager:
MyLocation myLocation = new MyLocation();
private void locationClick() {
myLocation.getLocation(this, locationResult);
}
And, zoom out your location through code:
mapView.getController().setZoom(17);
Then you can see the country mentioned.
Respondido 24 ago 12, 07:08
No es la respuesta que estás buscando? Examinar otras preguntas etiquetadas android map android-mapview country or haz tu propia pregunta.
Are you using a MapView? - AlexMok
What are you using? GoogleMaps, OSMDroid? - s_bei