Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
GCDC - Google Map
Search
rifqi alfian
September 07, 2014
Technology
0
210
GCDC - Google Map
Google developer conference - Google Map
rifqi alfian
September 07, 2014
Tweet
Share
More Decks by rifqi alfian
See All by rifqi alfian
Techtalk JDV : Pengenalan Socket.io
merembablas
0
2.3k
Techtalk JDV : Pengenalan Redis
merembablas
0
2.4k
GCDC - HTML5
merembablas
0
190
Web Service Menggunakan ExpressJS
merembablas
0
260
Techtalk JDV : Pengenalan Elasticsearch
merembablas
1
2.5k
Other Decks in Technology
See All in Technology
Foundation Model × VisionKit で実現するローカル OCR
sansantech
PRO
1
370
2025新卒研修・HTML/CSS #弁護士ドットコム
bengo4com
3
13k
ロールが細分化された組織でSREと協働するインフラエンジニアは何をするか? / SRE Lounge #18
kossykinto
0
220
金融サービスにおける高速な価値提供とAIの役割 #BetAIDay
layerx
PRO
1
830
LLMで構造化出力の成功率をグンと上げる方法
keisuketakiguchi
0
840
Intro to Software Startups: Spring 2025
arnabdotorg
0
260
Findy Freelance 利用シーン別AI活用例
ness
0
500
AIエージェントを現場で使う / 2025.08.07 著者陣に聞く!現場で活用するためのAIエージェント実践入門(Findyランチセッション)
smiyawaki0820
6
1.1k
生成AI導入の効果を最大化する データ活用戦略
ham0215
0
160
Cloud WANの基礎から応用~少しだけDeep Dive~
masakiokuda
3
110
Amazon Qで2Dゲームを作成してみた
siromi
0
140
九州の人に知ってもらいたいGISスポット / gis spot in kyushu 2025
sakaik
0
160
Featured
See All Featured
RailsConf 2023
tenderlove
30
1.2k
Chrome DevTools: State of the Union 2024 - Debugging React & Beyond
addyosmani
7
800
StorybookのUI Testing Handbookを読んだ
zakiyama
30
6k
Visualizing Your Data: Incorporating Mongo into Loggly Infrastructure
mongodb
47
9.6k
Making the Leap to Tech Lead
cromwellryan
134
9.5k
[RailsConf 2023 Opening Keynote] The Magic of Rails
eileencodes
29
9.6k
Building Applications with DynamoDB
mza
96
6.5k
The Pragmatic Product Professional
lauravandoore
36
6.8k
GraphQLとの向き合い方2022年版
quramy
49
14k
Large-scale JavaScript Application Architecture
addyosmani
512
110k
Balancing Empowerment & Direction
lara
1
540
We Have a Design System, Now What?
morganepeng
53
7.7k
Transcript
Google Map GCDC 4-11-2013
Api Key https://code.google.com/apis/console/ - Pada bagian api access, aktifkan “Google
Maps API v3” - Generate Key for Browser App
Simple Map <script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=API_KEY&sensor=true"> </script> <script type="text/javascript"> function initialize()
{ var mapOptions = { center: new google.maps.LatLng(-34.397, 150.644), zoom: 8, mapTypeId: google.maps.MapTypeId.TERRAIN }; var map = new google.maps.Map(document.getElementById("map-canvas"), mapOptions); } google.maps.event.addDomListener(window, 'load', initialize); </script>
Tipe Map 1. RoadMap 2. Satellite 3. Hybrid 4. Terrain
45° Imagery 45 derajat Perspektif, Untuk lokasi tertentu Kode :
map.setTilt(45); map.setHeading(90);
Drawing on the Map - Marker - Info Windows
Services : Directions DirectionRequest { origin: LatLng | String, destination:
LatLng | String, travelMode: TravelMode (Driving, Walking, Bicycling, Transit), transitOptions: TransitOptions, unitSystem: UnitSystem (KM, Mile), durationInTraffic: Boolean, waypoints[]: DirectionsWaypoint, optimizeWaypoints: Boolean, provideRouteAlternatives: Boolean, avoidHighways: Boolean, avoidTolls: Boolean region: String }
Services : Geocoding Geocoding : Konversi dari alamat ke koordinat
(Latitude, Longitude) Reverse Geocoding : Konversi dari Koordinat ke alamat
Terima Kasih