openGoogleMaps method

String openGoogleMaps()

Implementation

String openGoogleMaps() {
  var url = googleMapsURL();
  print('Geolocation.openGoogleMaps> $url');
  // ignore: unsafe_html
  window.open(url, windowID('googlemaps'));
  return url;
}