Android Question Google Maps Marker

Augustinas Impalis

Member
Licensed User
Longtime User
Hi,

Can anyone tell me if its possible to display information in this order:
  • Company
  • Address
  • Number
  • Email
so that all information is visible and not in a single order as shown in the picture.

Code:
B4X:
Sub Map_Ready
  Log("map ready")
  gmap = mFragment.GetMap
  If gmap.IsInitialized = False Then
      ToastMessageShow("Error initializing map.", True)
  Else
      gmap.AddMarker(53.544133, -2.605544, "Royce's Health & Fitness, 193 Manchester Rd, Ince, WN2 2JA Wigan, 01942 321933")
      Dim cp As CameraPosition
      cp.Initialize(53.544133, -2.605544, gmap.CameraPosition.Zoom)
      gmap.AnimateCamera(cp)
  End If
End Sub
 

Attachments

  • 2014-04-30 17.55.28.png
    2014-04-30 17.55.28.png
    429.6 KB · Views: 179
Top