Back to project page android.
The source code is released under:
Copyright (c) 2014, ganapatih All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Re...
If you think the Android project android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package php.id.ganapatih; //from w ww. ja v a 2 s. c o m import android.app.Activity; import android.os.Bundle; import com.google.android.gms.maps.CameraUpdateFactory; import com.google.android.gms.maps.GoogleMap; import com.google.android.gms.maps.MapFragment; import com.google.android.gms.maps.model.LatLng; import com.google.android.gms.maps.model.Marker; import com.google.android.gms.maps.model.MarkerOptions; public class Maps extends Activity { static final LatLng JOGJA = new LatLng(-7.797483,110.36821); private GoogleMap map; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_maps); map = ((MapFragment) getFragmentManager().findFragmentById(R.id.map)) .getMap(); initData(); } public void initData(){ Marker jogja = map.addMarker(new MarkerOptions() .position(JOGJA) .title("Helloo :D") .snippet("jogja is cool")); map.moveCamera(CameraUpdateFactory.newLatLngZoom(JOGJA, 15)); map.animateCamera(CameraUpdateFactory.zoomTo(10), 2000, null); } }