Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 앱 만들기
- 안드로이드 기초
- Android Studio
- 자바 튜토리얼
- 안드로이드 앱 만들기
- 개발강의
- android studio 앱 만드는 법
- flutter
- android example
- 안드로이드 네비게이션 메뉴
- 개발자
- java
- 안드로이드 예제
- Android Java
- 안드로이드 코딩 기초
- 앱 만드는 법
- 코틀린
- 홍드로이드
- 홍드로이드 강의
- 안드로이드 스튜디오
- 안드로이드
- hongdroid
- IOS
- Android
- android tutorial
- 안드로이드 튜토리얼
- 코딩
- 플러터
- 안드로이드 서비스
- 자바
Archives
- Today
- Total
홍드로이드의 야매코딩
#24 안드로이드 스튜디오 구글맵 (Google Map) 예제 [ 홍드로이드 ] 본문
< build.gradle (app) >
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | apply plugin: 'com.android.application' android { compileSdkVersion 28 defaultConfig { applicationId "com.example.googlemapexample" minSdkVersion 15 targetSdkVersion 28 versionCode 1 versionName "1.0" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' } } } dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) implementation 'com.android.support:appcompat-v7:28.0.0' implementation 'com.android.support:support-media-compat:28.0.0' implementation 'com.android.support:support-v4:28.0.0' implementation 'com.android.support.constraint:constraint-layout:1.1.3' implementation 'com.google.android.gms:play-services-maps:16.1.0' implementation 'com.google.android.gms:play-services-location:16.0.0' testImplementation 'junit:junit:4.12' androidTestImplementation 'com.android.support.test:runner:1.0.2' androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2' } | cs |
< AndroidManifest.xml >
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.googlemapexample"> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> <uses-permission android:name="android.permission.INTERNET"/> <application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" android:theme="@style/AppTheme"> <activity android:name=".MainActivity"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <uses-library android:name="org.apache.http.legacy" android:required="false"/> <meta-data android:name="com.google.android.geo.API_KEY" android:value="AIzaSyB-bV8ETCT-8VgWsBNKJmqbJ49BbAByI7E" /> </application> </manifest> | cs |
< activity_main.xml >
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity"> <fragment android:id="@+id/googleMap" android:layout_width="match_parent" android:layout_height="match_parent" class="com.google.android.gms.maps.MapFragment"/> </LinearLayout> | cs |
< MainActivity.java >
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | package com.example.googlemapexample; import android.app.FragmentManager; import android.support.v7.app.AppCompatActivity; 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.OnMapReadyCallback; import com.google.android.gms.maps.model.LatLng; import com.google.android.gms.maps.model.MarkerOptions; public class MainActivity extends AppCompatActivity implements OnMapReadyCallback { private FragmentManager fragmentManager; private MapFragment mapFragment; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); fragmentManager = getFragmentManager(); mapFragment = (MapFragment)fragmentManager.findFragmentById(R.id.googleMap); mapFragment.getMapAsync(this); } @Override public void onMapReady(GoogleMap googleMap) { LatLng location = new LatLng(37.485284, 126.901451); // 구로디지털단지역 위치 MarkerOptions markerOptions = new MarkerOptions(); markerOptions.title("구로디지털단지역"); markerOptions.snippet("전철역"); markerOptions.position(location); googleMap.addMarker(markerOptions); // googleMap.moveCamera(CameraUpdateFactory.newLatLngZoom(location, 16)); googleMap.animateCamera(CameraUpdateFactory.newLatLngZoom(location, 16)); } } | cs |
'Android Java' 카테고리의 다른 글
#26 안드로이드 스튜디오 다음 화면으로부터 값 전달받기 (StartActivityForResult) 예제 [ 홍드로이드 ] (0) | 2019.06.08 |
---|---|
#25 안드로이드 스튜디오 SNS 앱 만들기 1 (인스타그램 하단바) [ 홍드로이드 ] (1) | 2019.06.08 |
#23 안드로이드 스튜디오 뒤로가기 두번눌러 앱 종료 (android onBackPressed) 예제 [ 홍드로이드 ] (0) | 2019.06.08 |
#22 안드로이드 스튜디오 음악 재생 MP3 (서비스) 예제 [ 홍드로이드 ] (1) | 2019.06.08 |
#21 안드로이드 스튜디오 로딩화면 만들기 (Github 오픈소스 다루는 법) 예제 [ 홍드로이드 ] (0) | 2019.06.08 |
Comments