forked from organicmaps/organicmaps
[android] share my position crash fix
This commit is contained in:
parent
be2cccc50e
commit
1e1ee8d7c9
3 changed files with 9 additions and 2 deletions
|
@ -889,6 +889,13 @@ void CallStartPurchaseTransactionListener(shared_ptr<jobject> listener, bool suc
|
|||
}
|
||||
|
||||
/// @name JNI EXPORTS
|
||||
JNIEXPORT jstring JNICALL
|
||||
Java_com_mapswithme_maps_Framework_nativeGetAddress(JNIEnv * env, jclass clazz, jdouble lat, jdouble lon)
|
||||
{
|
||||
auto const info = frm()->GetAddressAtPoint(MercatorBounds::FromLatLon(lat, lon));
|
||||
return jni::ToJavaString(env, info.FormatAddress());
|
||||
}
|
||||
|
||||
JNIEXPORT void JNICALL
|
||||
Java_com_mapswithme_maps_Framework_nativeClearApiPoints(JNIEnv * env, jclass clazz)
|
||||
{
|
||||
|
|
|
@ -259,7 +259,7 @@ public class Framework
|
|||
|
||||
public static native String nativeGetGe0Url(double lat, double lon, double zoomLevel, String name);
|
||||
|
||||
public static native String nativeGetNameAndAddress(double lat, double lon);
|
||||
public static native String nativeGetAddress(double lat, double lon);
|
||||
|
||||
public static native void nativeSetMapObjectListener(MapObjectListener listener);
|
||||
|
||||
|
|
|
@ -28,7 +28,7 @@ class MapObjectShareable extends BaseShareable
|
|||
{
|
||||
subject = activity.getString(R.string.my_position_share_email_subject);
|
||||
text = activity.getString(R.string.my_position_share_email,
|
||||
Framework.nativeGetNameAndAddress(mapObject.getLat(), mapObject.getLon()),
|
||||
Framework.nativeGetAddress(mapObject.getLat(), mapObject.getLon()),
|
||||
ge0Url, httpUrl);
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Add table
Reference in a new issue