today:
154
yesterday:
242
Total:
1,004,312

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 Website icon admin 2017.09.16 958
47 Android Application Development admin 2017.07.28 909
46 Load an ad admin 2017.07.21 1134
45 Add AdView to the layout admin 2017.07.21 1609
44 Import the Mobile Ads SDK admin 2017.07.21 1084
43 AdMob - Import the Mobile Ads SDK admin 2017.07.21 196
42 Image Center admin 2017.07.21 224
41 US1800s admin 2017.07.03 215
40 Symbols And Holidays admin 2017.07.03 213
39 Rights And Responsibilities admin 2017.07.03 191
38 Recent American History admin 2017.07.03 215
37 Geography admin 2017.07.03 202
36 Colonial Period And Independence admin 2017.07.03 209
35 System of Government admin 2017.07.03 213
34 Principles of American Democracy admin 2017.07.02 189
33 package com.solatoz.joseph.uscitizenshiptest; admin 2017.07.01 222
32 Contact Layout admin 2017.06.06 339
31 map api admin 2017.06.04 1273
30 Manifest admin 2017.06.04 246
29 Custom Swipe admin 2017.06.04 215