Fix issue with share location

This commit is contained in:
Victor Shcherb 2011-12-31 18:13:37 +01:00
parent e05099d802
commit 40e269c9ac

View file

@ -91,6 +91,8 @@ public class MapActivityActions implements DialogProvider {
}
private Bundle enhance(Bundle bundle, double latitude, double longitude, final int zoom) {
bundle.putDouble(KEY_LATITUDE, latitude);
bundle.putDouble(KEY_LONGITUDE, longitude);
bundle.putInt(KEY_ZOOM, zoom);
return bundle;
}