diff --git a/HypoAlarm/src/main/java/za/org/treehouse/hypoalarm/GraceReceiver.java b/HypoAlarm/src/main/java/za/org/treehouse/hypoalarm/GraceReceiver.java index 87a0808..151ffab 100644 --- a/HypoAlarm/src/main/java/za/org/treehouse/hypoalarm/GraceReceiver.java +++ b/HypoAlarm/src/main/java/za/org/treehouse/hypoalarm/GraceReceiver.java @@ -46,7 +46,7 @@ public class GraceReceiver extends BroadcastReceiver { Location location = locationClient.getLastLocation(); if (location != null) { // uri must begin with a space - String uri = " http://maps.google.com?q=" + location.getLatitude() + "," + location.getLongitude(); + String uri = " http://maps.google.com/maps/?q=loc:" + location.getLatitude() + "," + location.getLongitude(); message += uri; sendText(context); } else {