removed geo intent marker tag, since gmaps can't cope with it anymore

This commit is contained in:
Philipp Schaefer 2013-07-20 13:29:59 +02:00
parent 9663df105f
commit 3e18e5bea1

View File

@ -38,8 +38,7 @@ public class IITC_JSInterface {
// send geo intent for navigation apps like gmaps or waze etc...
@JavascriptInterface
public void intentPosLink(String lat, String lng, String portal_name) {
String uri = "geo:" + lat + "," + lng + "?q=" + lat + "," + lng
+ "%20(" + portal_name + ")";
String uri = "geo:" + lat + "," + lng + "?q=" + lat + "," + lng;
Intent intent = new Intent(android.content.Intent.ACTION_VIEW,
Uri.parse(uri));
context.startActivity(intent);