public LatLng getCenter() {
return map.getCenter();
}
public String getMapType() {
MapType mapType = map.getCurrentMapType();
if (MapType.getNormalMap().equals(mapType)) {
return MAP_TYPE_NORMAL;
} else if (MapType.getSatelliteMap().equals(mapType)) {
return MAP_TYPE_SATELLITE;
} else if (MapType.getPhysicalMap().equals(mapType)) {
return MAP_TYPE_PHYSICAL;
} else if (MapType.getHybridMap().equals(mapType)) {
return MAP_TYPE_HYBRID;
} else {
throw new RuntimeException(
"map type persistence not supported for type "
+ mapType.getName(false));
}
}