If select any location in OsmAnd (either by simply click + hold an point of a POI on map screen) and then click that location, you get a menu with option 'Share Location'. Try it. I think this comes pretty close to what you are looking for. or did I misunderstood your question?
Pour voir ce lieu, suivre le lien web http://osm.org/go/0DSq4XoTV--?m ou android http://download.osmand.net/go?lat=49.245594&lon=7.011702&z=18
If I get posibilty to store in contacts position and later use it from there... I would be so happy... :-)
Gints
How about store position in contacts?
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="vnd.android.cursor.item/*" android:host="com.android.contacts" android:pathPrefix="/data" android:scheme="content"/>
</intent-filter>
The solution, provided by Google Developer Relations is:
<intent-filter android:label="MyApp">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="vnd.android.cursor.item/postal-address_v2" />
</intent-filter>
I am so sorry... Please discard the above Pull request.It needs contact read permission.I created the pull request very fast...without testing.Currently I am writing the Plugin with Contact read permission and testing it...Please help me how can I share it with you so that you can use it in Android Market as Free... plugin just like parking plugin.
good idea Rahul!
Let me explain ...with those changes the intent data (uri) we get is not "geo uri" the "Uri" we get is "content://com.android.contacts/data/5"
<intent-filter><action android:name="android.intent.action.VIEW" /><category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" /><category android:name="android.intent.category.APP_MAPS" /><data android:scheme="geo"></data></intent-filter>