Mehrere Zeilen oder Zeilenumbrüche in .snippet (google maps apiv2)

Ich entwickle in Google Maps APIv2. Das Problem, mit dem ich jetzt konfrontiert bin, ist, dass ich nur eine Wortzeile in Info-Fenstern / Snippets einfügen kann. Die Ausgabe, die ich möchte, kann jedoch in Form einer Trennlinie angezeigt werden, wie im folgenden Beispiel gezeigt. Gibt es also irgendwelche möglichen Methoden, um das Problem zu lösen?

Beispiel:

Koordinate: 03.05085, 101.70506

Geschwindigkeitsbegrenzung: 80 km / h

public class MainActivity extends FragmentActivity {
  static final LatLng SgBesi = new LatLng(03.05085, 101.76022);
  static final LatLng JB = new LatLng(1.48322, 103.69065);
  private GoogleMap map;


  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    map = ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map))
            .getMap();

    map.addMarker(new MarkerOptions().position(SgBesi)
        .title("KM D7.7 Sungai Besi")               //name
        .snippet("Coordinate: 03.05085, 101.70506"));   //description

    map.addMarker(new MarkerOptions().position(JB)
        .title("test") 
        .snippet("Hey, how are you?")); 

       // .icon(BitmapDescriptorFactory  //set icon
       //     .fromResource(R.drawable.ic_launcher)));

    // move the camera instantly with a zoom of 15.
    map.moveCamera(CameraUpdateFactory.newLatLngZoom(SgBesi, 15));

    // zoom in, animating the camera.       
    map.animateCamera(CameraUpdateFactory.zoomTo(15), 2000, null);
   }
}

Antworten auf die Frage(3)

Ihre Antwort auf die Frage