GeoMapView library for Android
This library uses world.svg under Creative Commons Attribution-NonCommercial 4.0 International License
##Usage
GeoMapView geoMapView = (GeoMapView)findViewById(R.id.geoMap);
geoMapView.setOnInitializedListener(new OnInitializedListener() {
@Override
public void onInitialized(GeoMapView geoMapView) {
geoMapView.setCountryColor("US", "#00FF00");
geoMapView.setCountryColor("JP", "#FF0000");
geoMapView.refresh();
}
});
##Screenshot