today:
14
yesterday:
170
Total:
999,320

Map Activity

admin 2017.06.02 12:28 Views : 33

ackage com.jckim.joseph.gmiretreatapplication;

import android.support.v4.app.FragmentActivity;
import android.os.Bundle;
import com.google.android.gms.maps.CameraUpdateFactory;
import com.google.android.gms.maps.GoogleMap;
import com.google.android.gms.maps.OnMapReadyCallback;
import com.google.android.gms.maps.SupportMapFragment;
import com.google.android.gms.maps.model.LatLng;
import com.google.android.gms.maps.model.MarkerOptions;

public class MapsActivity extends FragmentActivity implements OnMapReadyCallback {

    private GoogleMap mMap;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_maps);
        // Obtain the SupportMapFragment and get notified when the map is ready to be used.
        SupportMapFragment mapFragment = ( SupportMapFragment ) getSupportFragmentManager()
                .findFragmentById(R.id.map);
        mapFragment.getMapAsync(this);
    }


    /**
     * Manipulates the map once available.
     * This callback is triggered when the map is ready to be used.
     * This is where we can add markers or lines, add listeners or move the camera. In this case,
     * we just add a marker near Sydney, Australia.
     * If Google Play services is not installed on the device, the user will be prompted to install
     * it inside the SupportMapFragment. This method will only be triggered once the user has
     * installed Google Play services and returned to the app.
     */
    @Override
    public void onMapReady(GoogleMap googleMap) {
        mMap = googleMap;

        // Add a marker in Sydney and move the camera
        LatLng gmi = new LatLng( 33.7383634,-117.4639089 );
        mMap.addMarker( new MarkerOptions().position( gmi ).title( "은혜 기도원" ) );
        mMap.moveCamera( CameraUpdateFactory.newLatLngZoom( gmi,10 ) );
    }
}
No. Subject Author Date Views
48 Google Map admin 2017.05.29 21
47 How To Create A Simple Web View In Xcode 8 (Swift 3.0) admin 2017.05.21 26
46 How to make Mobile Web admin 2017.05.08 28
45 mnifest solatoz 2017.06.02 28
44 Menu admin 2017.06.02 29
43 Google Map 2 admin 2017.05.29 30
42 Android options menu tutorial admin 2017.05.17 32
41 Main Activity admin 2017.06.02 32
40 Map Activity Layout admin 2017.06.02 32
39 Swipe Activity layout admin 2017.06.02 32
» Map Activity admin 2017.06.02 33
37 Android Tutorial 9 - The Navigation Drawer admin 2017.05.17 35
36 ExpandableTextView admin 2017.05.17 36
35 MainActivity(IOS) admin 2017.06.04 36
34 Change Project Name admin 2017.06.03 37
33 Scrolling Activity admin 2017.06.02 38
32 Open Multiple Activities from Multiple Buttons admin 2017.05.24 39
31 About Center (class) admin 2017.06.02 40
30 MainActivity admin 2017.06.04 44
29 Google Maps Api .xml admin 2017.06.02 50