getGoogleMapsUrl function

String getGoogleMapsUrl(
  1. GeoPoint geoPoint
)

Implementation

String getGoogleMapsUrl(GeoPoint geoPoint) {
  return "http://maps.google.de/maps?q=${geoPoint.latitude},${geoPoint.longitude}&t=h&z=17&om=0";
}