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
AI Agentと MCP Serverで実現する iOSアプリの 自動テスト作成の効率化
spiderplus_cb
0
460
全てGoで作るP2P対戦ゲーム入門
ponyo877
3
1.3k
Findy Team+のSOC2取得までの道のり
rvirus0817
0
300
From Prompt to Product @ How to Web 2025, Bucharest, Romania
janwerner
0
110
Oracle Base Database Service 技術詳細
oracle4engineer
PRO
11
77k
自作LLM Native GORM Pluginで実現する AI Agentバックテスト基盤構築
po3rin
2
240
How to achieve interoperable digital identity across Asian countries
fujie
0
100
Geospatialの世界最前線を探る [2025年版]
dayjournal
3
480
「技術負債にならない・間違えない」 権限管理の設計と実装
naro143
35
11k
Goに育てられ開発者向けセキュリティ事業を立ち上げた僕が今向き合う、AI × セキュリティの最前線 / Go Conference 2025
flatt_security
0
330
インサイト情報からどこまで自動化できるか試してみた
takas0522
0
140
実装で解き明かす並行処理の歴史
zozotech
PRO
1
300
Featured
See All Featured
The MySQL Ecosystem @ GitHub 2015
samlambert
251
13k
Thoughts on Productivity
jonyablonski
70
4.9k
Chrome DevTools: State of the Union 2024 - Debugging React & Beyond
addyosmani
7
890
The Language of Interfaces
destraynor
162
25k
Making Projects Easy
brettharned
118
6.4k
Being A Developer After 40
akosma
91
590k
What’s in a name? Adding method to the madness
productmarketing
PRO
23
3.7k
Distributed Sagas: A Protocol for Coordinating Microservices
caitiem20
333
22k
The Straight Up "How To Draw Better" Workshop
denniskardys
237
140k
VelocityConf: Rendering Performance Case Studies
addyosmani
332
24k
Bash Introduction
62gerente
615
210k
Rebuilding a faster, lazier Slack
samanthasiow
84
9.2k
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