SlideShare uma empresa Scribd logo
1 de 36
Baixar para ler offline
Location	
  Based	
  
Services	
  and	
  Mapping	
  
with	
  iOS	
  
Wallace	
  B.	
  McClure	
  
Scalable	
  Development,	
  Inc.	
  
Twi;er:	
  @wbm	
  
Email:	
  wallym@scalabledevelopment.com	
  
Phone:	
  865-­‐740-­‐3004	
  
	
  
Copyright	
  2013,	
  Scalable	
  Development,	
  
Inc.	
  	
  	
  	
  All	
  Rights	
  Reserved.	
  
Me.About()	
  
•  Wally	
  McClure	
  
•  Scalable	
  Development,	
  Inc.	
  
•  MicrosoQ	
  ASP.NET	
  MVP	
  
•  ASPInsider	
  
•  Legend	
  in	
  his	
  own	
  mind	
  
•  Author	
  
•  Scalable	
  Development,	
  Inc.	
  
•  wallym@scalabledevelopment.com	
  
•  865-­‐740-­‐3004	
  
•  Twi;er,	
  Facebook,	
  LinkedIn,	
  …	
  
Copyright	
  2013,	
  Scalable	
  
Development,	
  Inc.	
  	
  	
  	
  All	
  Rights	
  
Reserved.	
  
Agenda	
  –	
  Mapping	
  in	
  iOS	
  
•  LocaXon	
  Based	
  Services	
  
•  Apple	
  Maps	
  
•  Mapping	
  with	
  Android	
  
•  Google	
  Maps	
  for	
  iOS	
  SDK	
  –	
  Sample	
  Code	
  
Copyright	
  2013,	
  Scalable	
  
Development,	
  Inc.	
  	
  	
  	
  All	
  Rights	
  
Reserved.	
  
Determine	
  Location	
  
•  GPS	
  
•  Cellular	
  TriangulaXon	
  
•  Wifi	
  lookup	
  
Copyright	
  2013,	
  Scalable	
  
Development,	
  Inc.	
  	
  	
  	
  All	
  Rights	
  
Reserved.	
  
Namespaces	
  
•  MapKit	
  
•  Apple	
  Framework	
  for	
  Mapping	
  
•  MonoTouch.MapKit.MKMapView	
  class	
  
•  CoreLocaXon	
  
•  Apple	
  Framework	
  for	
  LocaXon	
  Services	
  
•  MonoTouch.CoreLocaXon	
  
•  CLLocaXonManager	
  
•  Points	
  
Copyright	
  2013,	
  Scalable	
  
Development,	
  Inc.	
  	
  	
  	
  All	
  Rights	
  
Reserved.	
  
Displaying	
  Maps	
  
•  MapKit	
  
•  LaXtude/Longitude	
  
•  Center	
  
•  Region	
  to	
  display	
  
•  Google	
  Maps	
  uses	
  ZoomLevel	
  
Copyright	
  2013,	
  Scalable	
  
Development,	
  Inc.	
  	
  	
  	
  All	
  Rights	
  
Reserved.	
  
Map	
  Properties	
  
•  MKMapView	
  
•  Region	
  
•  Span	
  
•  Center	
  
•  ShowUserLocaXon	
  
•  MapType	
  
Copyright	
  2013,	
  Scalable	
  
Development,	
  Inc.	
  	
  	
  	
  All	
  Rights	
  
Reserved.	
  
Annotating	
  Maps	
  
•  Points	
  on	
  a	
  map	
  
•  Inherit	
  –	
  MKAnnotaXon	
  
•  Point	
  
•  Title	
  
•  Overlays	
  
•  Add/Remove	
  
Copyright	
  2013,	
  Scalable	
  
Development,	
  Inc.	
  	
  	
  	
  All	
  Rights	
  
Reserved.	
  
Displaying	
  Overlays	
  
•  Shapes	
  
•  Colors	
  
•  Ex:	
  5	
  km	
  gray	
  circle	
  
•  Standard	
  Shapes	
  
•  Custom	
  
Copyright	
  2013,	
  Scalable	
  
Development,	
  Inc.	
  	
  	
  	
  All	
  Rights	
  
Reserved.	
  
Map	
  Movement	
  
•  Map	
  Delegate	
  
•  Inherit	
  from	
  MKMapViewDelegate	
  
•  Region	
  Changed	
  Override	
  
•  Communicate	
  back	
  to	
  the	
  parent	
  
•  Example	
  Now	
  
Copyright	
  2013,	
  Scalable	
  
Development,	
  Inc.	
  	
  	
  	
  All	
  Rights	
  
Reserved.	
  
Location	
  and	
  Change	
  Events	
  
•  LocaXon	
  changes	
  
•  StartLocaXonChanges()	
  
•  StartMonitoringSignificantLocaXonChanges()	
  
•  UpdatedLocaXons	
  Event	
  
•  StartUpdaXngHeading()	
  
•  Choose	
  the	
  right	
  	
  mechanism	
  
•  Be	
  a	
  good	
  ciXzen	
  on	
  the	
  device	
  
Copyright	
  2013,	
  Scalable	
  
Development,	
  Inc.	
  	
  	
  	
  All	
  Rights	
  
Reserved.	
  
Background	
  Processing	
  -­‐	
  Info.plist	
  
•  Requires	
  locaXon	
  service	
  
•  Availability	
  of	
  locaXon	
  services	
  
Copyright	
  2013,	
  Scalable	
  
Development,	
  Inc.	
  	
  	
  	
  All	
  Rights	
  
Reserved.	
  
Region	
  Monitoring	
  
•  Need:	
  
•  Point/Center	
  
•  Radius	
  
•  Check	
  when	
  device	
  crosses	
  a	
  boundary	
  
•  IdenXfier	
  
Copyright	
  2013,	
  Scalable	
  
Development,	
  Inc.	
  	
  	
  	
  All	
  Rights	
  
Reserved.	
  
Tips	
  for	
  Conserving	
  Battery	
  
•  Turn	
  off	
  locaXon	
  services	
  when	
  not	
  used	
  
•  Use	
  the	
  significant	
  change	
  locaXon	
  service	
  when	
  possible	
  
•  Use	
  lower	
  resoluXon	
  for	
  desired	
  accuracy	
  when	
  possible	
  
•  Turn	
  off	
  locaXon	
  events	
  if	
  the	
  accuracy	
  does	
  not	
  improve	
  
Copyright	
  2013,	
  Scalable	
  
Development,	
  Inc.	
  	
  	
  	
  All	
  Rights	
  
Reserved.	
  
Geocoding	
  
•  Forward	
  
•  Reverse	
  
•  Network	
  connecXon	
  
Copyright	
  2013,	
  Scalable	
  
Development,	
  Inc.	
  	
  	
  	
  All	
  Rights	
  
Reserved.	
  
Forward	
  Geocoding	
  (iOS5)	
  
•  LocaXon	
  -­‐>	
  lat/lon	
  pair	
  
•  Not	
  in	
  iOS	
  3	
  or	
  4	
  
•  In	
  iOS	
  5+!	
  
•  CLGeocoder	
  
•  .GeocodeAddress	
  
•  Async!	
  
Copyright	
  2013,	
  Scalable	
  
Development,	
  Inc.	
  	
  	
  	
  All	
  Rights	
  
Reserved.	
  
Reverse	
  Geocoding	
  
•  BuilXn	
  
•  Lat/Lon	
  -­‐>	
  Address	
  
•  Built	
  in	
  
•  Async	
  
•  Network	
  connecXon	
  
•  Examples	
  in	
  Forward	
  and	
  Reverse	
  
Copyright	
  2013,	
  Scalable	
  
Development,	
  Inc.	
  	
  	
  	
  All	
  Rights	
  
Reserved.	
  
But	
  Apple	
  Maps	
  Has	
  Problems	
  
•  Google	
  Maps	
  for	
  iOS	
  SDK	
  
•  Xamarin.iOS	
  bindings	
  
Copyright	
  2013,	
  Scalable	
  
Development,	
  Inc.	
  	
  	
  	
  All	
  Rights	
  
Reserved.	
  
Switch	
  to	
  Android	
  
•  Different	
  ways	
  of	
  thinking	
  
•  Same	
  things,	
  just	
  called	
  different	
  
•  MapView	
  is	
  deprecated	
  
•  MapFragment	
  for	
  new	
  development	
  
Copyright	
  2013,	
  Scalable	
  
Development,	
  Inc.	
  	
  	
  	
  All	
  Rights	
  
Reserved.	
  
•  NaXve	
  Maps	
  applicaXon	
  
•  Street	
  View	
  
•  MapAcXvity	
  (deprecated)	
  
•  MapFragment	
  Support	
  
Copyright	
  2012,	
  Scalable	
  
Development,	
  Inc.	
  All	
  Rights	
  
Reserved	
  
Mapping	
  Options	
  
•  Fragments	
  have	
  a	
  different	
  lifecycle	
  than	
  an	
  AcXvity	
  
•  Use	
  OnResume	
  
•  GoogleMapOpXons	
  
•  CameraPosiXon	
  
•  ZoomIn	
  
•  ZoomOut	
  
Copyright	
  2012,	
  Scalable	
  
Development,	
  Inc.	
  All	
  Rights	
  
Reserved	
  
Using	
  the	
  MapFragment	
  
•  LocaXon	
  Manager.	
  
•  Hooks	
  to	
  LBS	
  Services.	
  
•  Current	
  LocaXon.	
  
•  Track	
  Movement.	
  
•  Proximity	
  Alerts.	
  
•  Interacts	
  with	
  LocaXon	
  Providers.	
  
•  LocaXon	
  Providers.	
  
Copyright	
  2012,	
  Scalable	
  
Development,	
  Inc.	
  All	
  Rights	
  
Reserved	
  
Main	
  Location	
  Elements	
  
•  Permission.	
  
•  Which	
  Provider?	
  
•  Interface	
  –	
  ILocaXonListener.	
  
•  Implement	
  4	
  methods.	
  
•  Start	
  listening.	
  
•  Stop	
  listening	
  –	
  as	
  needed.	
  
Copyright	
  2012,	
  Scalable	
  
Development,	
  Inc.	
  All	
  Rights	
  
Reserved	
  
Where	
  Am	
  I	
  
•  No	
  guarantee	
  of	
  any	
  provider.	
  
•  Take	
  advantage	
  of	
  new	
  providers.	
  
•  Only	
  need	
  certain	
  values.	
  
•  Accuracy.	
  
Copyright	
  2012,	
  Scalable	
  
Development,	
  Inc.	
  All	
  Rights	
  
Reserved	
  
Criteria	
  
•  Example.	
  
•  Implement	
  ILocaXonListener.	
  
•  Methods	
  to	
  implement.	
  
•  Delivered	
  in	
  background	
  
•  Example	
  
Copyright	
  2012,	
  Scalable	
  
Development,	
  Inc.	
  All	
  Rights	
  
Reserved	
  
Where	
  Am	
  I?	
  
•  Is	
  my	
  device	
  in	
  a	
  given	
  area?	
  
•  Crossing	
  a	
  boundary	
  
•  Similar	
  to	
  Regions	
  in	
  iOS	
  
Copyright	
  2012,	
  Scalable	
  
Development,	
  Inc.	
  All	
  Rights	
  
Reserved	
  
Proximity	
  
•  Forward.	
  
•  Reverse.	
  
•  IList<Address>.	
  
•  Accuracy.	
  
Copyright	
  2012,	
  Scalable	
  
Development,	
  Inc.	
  All	
  Rights	
  
Reserved	
  
Geocoding	
  
•  Intent	
  
•  Intent.AcXonView	
  
•  Parameters:	
  
•  geo:	
  
•  LaXtude	
  &	
  Longitude	
  
•  Zoom	
  level	
  
•  q	
  
Copyright	
  2012,	
  Scalable	
  
Development,	
  Inc.	
  All	
  Rights	
  
Reserved	
  
Native	
  Maps	
  Application	
  
•  Intent	
  
•  Intent.AcXonView	
  
•  Parameters:	
  
•  LaXtude	
  
•  Longitude	
  
•  yaw/panorama	
  
•  pitch	
  
•  zoom	
  
•  mapZoom	
  
Copyright	
  2012,	
  Scalable	
  
Development,	
  Inc.	
  All	
  Rights	
  
Reserved	
  
Street	
  View	
  
Routing	
  
•  Examples	
  
•  iOS	
  
•  Android	
  
Copyright	
  2013,	
  Scalable	
  
Development,	
  Inc.	
  	
  	
  	
  All	
  Rights	
  
Reserved.	
  
Google	
  Maps	
  Setup	
  
•  Google	
  Maps	
  Key	
  
•  Xamarin	
  Component	
  Store	
  for	
  Bindings	
  
•  Google.Maps	
  namespace	
  
•  Apply	
  Key	
  
•  Set	
  bundle	
  idenXfier	
  in	
  Projects	
  
•  Add	
  Fragment	
  to	
  View	
  
Copyright	
  2013,	
  Scalable	
  
Development,	
  Inc.	
  	
  	
  	
  All	
  Rights	
  
Reserved.	
  
•  Somewhat	
  complicated	
  
•  Go	
  to	
  the	
  directory:	
  
•  Windows	
  Vista/7:	
  C:Users[USERNAME]AppDataLocal
XamarinMono	
  for	
  Android	
  
•  OSX:	
  /Users/[USERNAME]/.local/share/Xamarin/Mono	
  for	
  
Android/	
  
Copyright	
  2012,	
  Scalable	
  
Development,	
  Inc.	
  All	
  Rights	
  
Reserved	
  
Signing	
  Key	
  for	
  Mapping	
  
•  keytool.exe	
  -­‐list	
  -­‐alias	
  androiddebugkey	
  -­‐keystore	
  
debug.keystore	
  -­‐storepass	
  android	
  -­‐keypass	
  android	
  
•  Something	
  like	
  this	
  should	
  be	
  returned:	
  
•  androiddebugkey,	
  Aug	
  16,	
  2011,	
  PrivateKeyEntry,	
  
CerXficate	
  fingerprint	
  (MD5):	
  AA:BB:CC:DD:EE:FF:
11:22:33:44:55:66:77:88:99:00	
  
Copyright	
  2012,	
  Scalable	
  
Development,	
  Inc.	
  All	
  Rights	
  
Reserved	
  
Run	
  the	
  command	
  
•  Generate	
  Maps	
  API	
  Key	
  
•  h;p://code.google.com/android/maps-­‐api-­‐signup.html	
  
•  Note:	
  You	
  will	
  need	
  a	
  google	
  id	
  
Copyright	
  2012,	
  Scalable	
  
Development,	
  Inc.	
  All	
  Rights	
  
Reserved	
  
Obtain	
  Maps	
  API	
  Key	
  
•  Your	
  map	
  key	
  
•  OpenGL	
  
•  Internet	
  
•  LocaXon	
  (Fine	
  implies	
  Coarse)	
  
Copyright	
  2012,	
  Scalable	
  
Development,	
  Inc.	
  All	
  Rights	
  
Reserved	
  
Manifest	
  File	
  
Summary	
  &	
  Questions	
  
•  Maps	
  
•  Points	
  on	
  a	
  map	
  
•  Overlays	
  
•  Geocoding	
  
•  LocaXon	
  Management	
  
•  Power	
  Management	
  
Copyright	
  2013,	
  Scalable	
  
Development,	
  Inc.	
  	
  	
  	
  All	
  Rights	
  
Reserved.	
  

Mais conteúdo relacionado

Semelhante a Mapping on iOS and Android, Wally McClure

Going Mobile with HTML5
Going Mobile with HTML5Going Mobile with HTML5
Going Mobile with HTML5John Reiser
 
Mobile web in eZ Publish
Mobile web in eZ PublishMobile web in eZ Publish
Mobile web in eZ PublishIgor Vrdoljak
 
Social Zombies Gone Wild: Totally Exposed and Uncensored
Social Zombies Gone Wild: Totally Exposed and UncensoredSocial Zombies Gone Wild: Totally Exposed and Uncensored
Social Zombies Gone Wild: Totally Exposed and UncensoredTom Eston
 
Amsterdam Titanium User Group - Cloud Services for Apps Nov 2013
Amsterdam Titanium User Group - Cloud Services for Apps Nov 2013Amsterdam Titanium User Group - Cloud Services for Apps Nov 2013
Amsterdam Titanium User Group - Cloud Services for Apps Nov 2013Aaron Saunders
 
2013 Vendor, MapQuest Plugins for Leaflet by Jonathan Harahush
2013 Vendor, MapQuest Plugins for Leaflet by Jonathan Harahush2013 Vendor, MapQuest Plugins for Leaflet by Jonathan Harahush
2013 Vendor, MapQuest Plugins for Leaflet by Jonathan HarahushGIS in the Rockies
 
Building Mobile Cross-Platform Geospatial Apps, Nick Landry
Building Mobile Cross-Platform Geospatial Apps, Nick LandryBuilding Mobile Cross-Platform Geospatial Apps, Nick Landry
Building Mobile Cross-Platform Geospatial Apps, Nick LandryXamarin
 
SSSI Local Government Seminar June 2012 - Mobile
SSSI Local Government Seminar June 2012 -  MobileSSSI Local Government Seminar June 2012 -  Mobile
SSSI Local Government Seminar June 2012 - MobileDavid Trengove
 
Presentation our world is open inspire gwf 2015
Presentation our world is open inspire gwf 2015Presentation our world is open inspire gwf 2015
Presentation our world is open inspire gwf 2015Marc Vloemans
 
Enhance Location-Based Insights with Additional Geocoding Capabilities
Enhance Location-Based Insights with Additional Geocoding CapabilitiesEnhance Location-Based Insights with Additional Geocoding Capabilities
Enhance Location-Based Insights with Additional Geocoding CapabilitiesPrecisely
 
"Open Mapping on iOS" — Justin Miller, MapBox
"Open Mapping on iOS" — Justin Miller, MapBox"Open Mapping on iOS" — Justin Miller, MapBox
"Open Mapping on iOS" — Justin Miller, MapBoxYandex
 
Geodaten & Drupal 7
Geodaten & Drupal 7Geodaten & Drupal 7
Geodaten & Drupal 7Michael Milz
 
Augmented Reality March Webinar
Augmented Reality March WebinarAugmented Reality March Webinar
Augmented Reality March WebinarPromet Source
 
Is it possible to write cross-native apps in 2020 ?
Is it possible to write cross-native apps in 2020 ?Is it possible to write cross-native apps in 2020 ?
Is it possible to write cross-native apps in 2020 ?Chris Saez
 
Oracle Spatial Studio: Fast and Easy Spatial Analytics and Maps
Oracle Spatial Studio:  Fast and Easy Spatial Analytics and MapsOracle Spatial Studio:  Fast and Easy Spatial Analytics and Maps
Oracle Spatial Studio: Fast and Easy Spatial Analytics and MapsJean Ihm
 
Saving Money with Open Source GIS
Saving Money with Open Source GISSaving Money with Open Source GIS
Saving Money with Open Source GISbryanluman
 
Overview of DroidCon UK 2015
Overview of DroidCon UK 2015 Overview of DroidCon UK 2015
Overview of DroidCon UK 2015 Elif Boncuk
 
2013 Enterprise Track, Building GIS, Decision Support, and Location Intellige...
2013 Enterprise Track, Building GIS, Decision Support, and Location Intellige...2013 Enterprise Track, Building GIS, Decision Support, and Location Intellige...
2013 Enterprise Track, Building GIS, Decision Support, and Location Intellige...GIS in the Rockies
 

Semelhante a Mapping on iOS and Android, Wally McClure (20)

Going Mobile with HTML5
Going Mobile with HTML5Going Mobile with HTML5
Going Mobile with HTML5
 
Mobile web in eZ Publish
Mobile web in eZ PublishMobile web in eZ Publish
Mobile web in eZ Publish
 
Social Zombies Gone Wild: Totally Exposed and Uncensored
Social Zombies Gone Wild: Totally Exposed and UncensoredSocial Zombies Gone Wild: Totally Exposed and Uncensored
Social Zombies Gone Wild: Totally Exposed and Uncensored
 
Amsterdam Titanium User Group - Cloud Services for Apps Nov 2013
Amsterdam Titanium User Group - Cloud Services for Apps Nov 2013Amsterdam Titanium User Group - Cloud Services for Apps Nov 2013
Amsterdam Titanium User Group - Cloud Services for Apps Nov 2013
 
2013 Vendor, MapQuest Plugins for Leaflet by Jonathan Harahush
2013 Vendor, MapQuest Plugins for Leaflet by Jonathan Harahush2013 Vendor, MapQuest Plugins for Leaflet by Jonathan Harahush
2013 Vendor, MapQuest Plugins for Leaflet by Jonathan Harahush
 
Building Mobile Cross-Platform Geospatial Apps, Nick Landry
Building Mobile Cross-Platform Geospatial Apps, Nick LandryBuilding Mobile Cross-Platform Geospatial Apps, Nick Landry
Building Mobile Cross-Platform Geospatial Apps, Nick Landry
 
SSSI Local Government Seminar June 2012 - Mobile
SSSI Local Government Seminar June 2012 -  MobileSSSI Local Government Seminar June 2012 -  Mobile
SSSI Local Government Seminar June 2012 - Mobile
 
Using Location in Games
Using Location in GamesUsing Location in Games
Using Location in Games
 
Presentation our world is open inspire gwf 2015
Presentation our world is open inspire gwf 2015Presentation our world is open inspire gwf 2015
Presentation our world is open inspire gwf 2015
 
Enhance Location-Based Insights with Additional Geocoding Capabilities
Enhance Location-Based Insights with Additional Geocoding CapabilitiesEnhance Location-Based Insights with Additional Geocoding Capabilities
Enhance Location-Based Insights with Additional Geocoding Capabilities
 
Bitstars
BitstarsBitstars
Bitstars
 
"Open Mapping on iOS" — Justin Miller, MapBox
"Open Mapping on iOS" — Justin Miller, MapBox"Open Mapping on iOS" — Justin Miller, MapBox
"Open Mapping on iOS" — Justin Miller, MapBox
 
Geodaten & Drupal 7
Geodaten & Drupal 7Geodaten & Drupal 7
Geodaten & Drupal 7
 
Augmented Reality March Webinar
Augmented Reality March WebinarAugmented Reality March Webinar
Augmented Reality March Webinar
 
Is it possible to write cross-native apps in 2020 ?
Is it possible to write cross-native apps in 2020 ?Is it possible to write cross-native apps in 2020 ?
Is it possible to write cross-native apps in 2020 ?
 
Oracle Spatial Studio: Fast and Easy Spatial Analytics and Maps
Oracle Spatial Studio:  Fast and Easy Spatial Analytics and MapsOracle Spatial Studio:  Fast and Easy Spatial Analytics and Maps
Oracle Spatial Studio: Fast and Easy Spatial Analytics and Maps
 
Saving Money with Open Source GIS
Saving Money with Open Source GISSaving Money with Open Source GIS
Saving Money with Open Source GIS
 
Overview of DroidCon UK 2015
Overview of DroidCon UK 2015 Overview of DroidCon UK 2015
Overview of DroidCon UK 2015
 
2013 Enterprise Track, Building GIS, Decision Support, and Location Intellige...
2013 Enterprise Track, Building GIS, Decision Support, and Location Intellige...2013 Enterprise Track, Building GIS, Decision Support, and Location Intellige...
2013 Enterprise Track, Building GIS, Decision Support, and Location Intellige...
 
AMIS OOW 2012 Review - Deel 4 ADF - Paco van der Linden
AMIS OOW 2012 Review - Deel 4 ADF - Paco van der LindenAMIS OOW 2012 Review - Deel 4 ADF - Paco van der Linden
AMIS OOW 2012 Review - Deel 4 ADF - Paco van der Linden
 

Mais de Xamarin

Xamarin University Presents: Building Your First Intelligent App with Xamarin...
Xamarin University Presents: Building Your First Intelligent App with Xamarin...Xamarin University Presents: Building Your First Intelligent App with Xamarin...
Xamarin University Presents: Building Your First Intelligent App with Xamarin...Xamarin
 
Xamarin University Presents: Ship Better Apps with Visual Studio App Center
Xamarin University Presents: Ship Better Apps with Visual Studio App CenterXamarin University Presents: Ship Better Apps with Visual Studio App Center
Xamarin University Presents: Ship Better Apps with Visual Studio App CenterXamarin
 
Get the Most Out of iOS 11 with Visual Studio Tools for Xamarin
Get the Most Out of iOS 11 with Visual Studio Tools for XamarinGet the Most Out of iOS 11 with Visual Studio Tools for Xamarin
Get the Most Out of iOS 11 with Visual Studio Tools for XamarinXamarin
 
Get the Most out of Android 8 Oreo with Visual Studio Tools for Xamarin
Get the Most out of Android 8 Oreo with Visual Studio Tools for XamarinGet the Most out of Android 8 Oreo with Visual Studio Tools for Xamarin
Get the Most out of Android 8 Oreo with Visual Studio Tools for XamarinXamarin
 
Creative Hacking: Delivering React Native App A/B Testing Using CodePush
Creative Hacking: Delivering React Native App A/B Testing Using CodePushCreative Hacking: Delivering React Native App A/B Testing Using CodePush
Creative Hacking: Delivering React Native App A/B Testing Using CodePushXamarin
 
Build Better Games with Unity and Microsoft Azure
Build Better Games with Unity and Microsoft AzureBuild Better Games with Unity and Microsoft Azure
Build Better Games with Unity and Microsoft AzureXamarin
 
Exploring UrhoSharp 3D with Xamarin Workbooks
Exploring UrhoSharp 3D with Xamarin WorkbooksExploring UrhoSharp 3D with Xamarin Workbooks
Exploring UrhoSharp 3D with Xamarin WorkbooksXamarin
 
Desktop Developer’s Guide to Mobile with Visual Studio Tools for Xamarin
Desktop Developer’s Guide to Mobile with Visual Studio Tools for XamarinDesktop Developer’s Guide to Mobile with Visual Studio Tools for Xamarin
Desktop Developer’s Guide to Mobile with Visual Studio Tools for XamarinXamarin
 
Developer’s Intro to Azure Machine Learning
Developer’s Intro to Azure Machine LearningDeveloper’s Intro to Azure Machine Learning
Developer’s Intro to Azure Machine LearningXamarin
 
Customizing Xamarin.Forms UI
Customizing Xamarin.Forms UICustomizing Xamarin.Forms UI
Customizing Xamarin.Forms UIXamarin
 
Session 4 - Xamarin Partner Program, Events and Resources
Session 4 - Xamarin Partner Program, Events and ResourcesSession 4 - Xamarin Partner Program, Events and Resources
Session 4 - Xamarin Partner Program, Events and ResourcesXamarin
 
Session 3 - Driving Mobile Growth and Profitability
Session 3 - Driving Mobile Growth and ProfitabilitySession 3 - Driving Mobile Growth and Profitability
Session 3 - Driving Mobile Growth and ProfitabilityXamarin
 
Session 2 - Emerging Technologies in your Mobile Practice
Session 2 - Emerging Technologies in your Mobile PracticeSession 2 - Emerging Technologies in your Mobile Practice
Session 2 - Emerging Technologies in your Mobile PracticeXamarin
 
Session 1 - Transformative Opportunities in Mobile and Cloud
Session 1 - Transformative Opportunities in Mobile and Cloud Session 1 - Transformative Opportunities in Mobile and Cloud
Session 1 - Transformative Opportunities in Mobile and Cloud Xamarin
 
SkiaSharp Graphics for Xamarin.Forms
SkiaSharp Graphics for Xamarin.FormsSkiaSharp Graphics for Xamarin.Forms
SkiaSharp Graphics for Xamarin.FormsXamarin
 
Building Games for iOS, macOS, and tvOS with Visual Studio and Azure
Building Games for iOS, macOS, and tvOS with Visual Studio and AzureBuilding Games for iOS, macOS, and tvOS with Visual Studio and Azure
Building Games for iOS, macOS, and tvOS with Visual Studio and AzureXamarin
 
Intro to Xamarin.Forms for Visual Studio 2017
Intro to Xamarin.Forms for Visual Studio 2017Intro to Xamarin.Forms for Visual Studio 2017
Intro to Xamarin.Forms for Visual Studio 2017Xamarin
 
Connected Mobile Apps with Microsoft Azure
Connected Mobile Apps with Microsoft AzureConnected Mobile Apps with Microsoft Azure
Connected Mobile Apps with Microsoft AzureXamarin
 
Introduction to Xamarin for Visual Studio 2017
Introduction to Xamarin for Visual Studio 2017Introduction to Xamarin for Visual Studio 2017
Introduction to Xamarin for Visual Studio 2017Xamarin
 
Building Your First iOS App with Xamarin for Visual Studio
Building Your First iOS App with Xamarin for Visual StudioBuilding Your First iOS App with Xamarin for Visual Studio
Building Your First iOS App with Xamarin for Visual StudioXamarin
 

Mais de Xamarin (20)

Xamarin University Presents: Building Your First Intelligent App with Xamarin...
Xamarin University Presents: Building Your First Intelligent App with Xamarin...Xamarin University Presents: Building Your First Intelligent App with Xamarin...
Xamarin University Presents: Building Your First Intelligent App with Xamarin...
 
Xamarin University Presents: Ship Better Apps with Visual Studio App Center
Xamarin University Presents: Ship Better Apps with Visual Studio App CenterXamarin University Presents: Ship Better Apps with Visual Studio App Center
Xamarin University Presents: Ship Better Apps with Visual Studio App Center
 
Get the Most Out of iOS 11 with Visual Studio Tools for Xamarin
Get the Most Out of iOS 11 with Visual Studio Tools for XamarinGet the Most Out of iOS 11 with Visual Studio Tools for Xamarin
Get the Most Out of iOS 11 with Visual Studio Tools for Xamarin
 
Get the Most out of Android 8 Oreo with Visual Studio Tools for Xamarin
Get the Most out of Android 8 Oreo with Visual Studio Tools for XamarinGet the Most out of Android 8 Oreo with Visual Studio Tools for Xamarin
Get the Most out of Android 8 Oreo with Visual Studio Tools for Xamarin
 
Creative Hacking: Delivering React Native App A/B Testing Using CodePush
Creative Hacking: Delivering React Native App A/B Testing Using CodePushCreative Hacking: Delivering React Native App A/B Testing Using CodePush
Creative Hacking: Delivering React Native App A/B Testing Using CodePush
 
Build Better Games with Unity and Microsoft Azure
Build Better Games with Unity and Microsoft AzureBuild Better Games with Unity and Microsoft Azure
Build Better Games with Unity and Microsoft Azure
 
Exploring UrhoSharp 3D with Xamarin Workbooks
Exploring UrhoSharp 3D with Xamarin WorkbooksExploring UrhoSharp 3D with Xamarin Workbooks
Exploring UrhoSharp 3D with Xamarin Workbooks
 
Desktop Developer’s Guide to Mobile with Visual Studio Tools for Xamarin
Desktop Developer’s Guide to Mobile with Visual Studio Tools for XamarinDesktop Developer’s Guide to Mobile with Visual Studio Tools for Xamarin
Desktop Developer’s Guide to Mobile with Visual Studio Tools for Xamarin
 
Developer’s Intro to Azure Machine Learning
Developer’s Intro to Azure Machine LearningDeveloper’s Intro to Azure Machine Learning
Developer’s Intro to Azure Machine Learning
 
Customizing Xamarin.Forms UI
Customizing Xamarin.Forms UICustomizing Xamarin.Forms UI
Customizing Xamarin.Forms UI
 
Session 4 - Xamarin Partner Program, Events and Resources
Session 4 - Xamarin Partner Program, Events and ResourcesSession 4 - Xamarin Partner Program, Events and Resources
Session 4 - Xamarin Partner Program, Events and Resources
 
Session 3 - Driving Mobile Growth and Profitability
Session 3 - Driving Mobile Growth and ProfitabilitySession 3 - Driving Mobile Growth and Profitability
Session 3 - Driving Mobile Growth and Profitability
 
Session 2 - Emerging Technologies in your Mobile Practice
Session 2 - Emerging Technologies in your Mobile PracticeSession 2 - Emerging Technologies in your Mobile Practice
Session 2 - Emerging Technologies in your Mobile Practice
 
Session 1 - Transformative Opportunities in Mobile and Cloud
Session 1 - Transformative Opportunities in Mobile and Cloud Session 1 - Transformative Opportunities in Mobile and Cloud
Session 1 - Transformative Opportunities in Mobile and Cloud
 
SkiaSharp Graphics for Xamarin.Forms
SkiaSharp Graphics for Xamarin.FormsSkiaSharp Graphics for Xamarin.Forms
SkiaSharp Graphics for Xamarin.Forms
 
Building Games for iOS, macOS, and tvOS with Visual Studio and Azure
Building Games for iOS, macOS, and tvOS with Visual Studio and AzureBuilding Games for iOS, macOS, and tvOS with Visual Studio and Azure
Building Games for iOS, macOS, and tvOS with Visual Studio and Azure
 
Intro to Xamarin.Forms for Visual Studio 2017
Intro to Xamarin.Forms for Visual Studio 2017Intro to Xamarin.Forms for Visual Studio 2017
Intro to Xamarin.Forms for Visual Studio 2017
 
Connected Mobile Apps with Microsoft Azure
Connected Mobile Apps with Microsoft AzureConnected Mobile Apps with Microsoft Azure
Connected Mobile Apps with Microsoft Azure
 
Introduction to Xamarin for Visual Studio 2017
Introduction to Xamarin for Visual Studio 2017Introduction to Xamarin for Visual Studio 2017
Introduction to Xamarin for Visual Studio 2017
 
Building Your First iOS App with Xamarin for Visual Studio
Building Your First iOS App with Xamarin for Visual StudioBuilding Your First iOS App with Xamarin for Visual Studio
Building Your First iOS App with Xamarin for Visual Studio
 

Último

Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024The Digital Insurer
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobeapidays
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...apidays
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...DianaGray10
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoffsammart93
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...Principled Technologies
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...apidays
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 

Último (20)

Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 

Mapping on iOS and Android, Wally McClure

  • 1. Location  Based   Services  and  Mapping   with  iOS   Wallace  B.  McClure   Scalable  Development,  Inc.   Twi;er:  @wbm   Email:  wallym@scalabledevelopment.com   Phone:  865-­‐740-­‐3004     Copyright  2013,  Scalable  Development,   Inc.        All  Rights  Reserved.  
  • 2. Me.About()   •  Wally  McClure   •  Scalable  Development,  Inc.   •  MicrosoQ  ASP.NET  MVP   •  ASPInsider   •  Legend  in  his  own  mind   •  Author   •  Scalable  Development,  Inc.   •  wallym@scalabledevelopment.com   •  865-­‐740-­‐3004   •  Twi;er,  Facebook,  LinkedIn,  …   Copyright  2013,  Scalable   Development,  Inc.        All  Rights   Reserved.  
  • 3. Agenda  –  Mapping  in  iOS   •  LocaXon  Based  Services   •  Apple  Maps   •  Mapping  with  Android   •  Google  Maps  for  iOS  SDK  –  Sample  Code   Copyright  2013,  Scalable   Development,  Inc.        All  Rights   Reserved.  
  • 4. Determine  Location   •  GPS   •  Cellular  TriangulaXon   •  Wifi  lookup   Copyright  2013,  Scalable   Development,  Inc.        All  Rights   Reserved.  
  • 5. Namespaces   •  MapKit   •  Apple  Framework  for  Mapping   •  MonoTouch.MapKit.MKMapView  class   •  CoreLocaXon   •  Apple  Framework  for  LocaXon  Services   •  MonoTouch.CoreLocaXon   •  CLLocaXonManager   •  Points   Copyright  2013,  Scalable   Development,  Inc.        All  Rights   Reserved.  
  • 6. Displaying  Maps   •  MapKit   •  LaXtude/Longitude   •  Center   •  Region  to  display   •  Google  Maps  uses  ZoomLevel   Copyright  2013,  Scalable   Development,  Inc.        All  Rights   Reserved.  
  • 7. Map  Properties   •  MKMapView   •  Region   •  Span   •  Center   •  ShowUserLocaXon   •  MapType   Copyright  2013,  Scalable   Development,  Inc.        All  Rights   Reserved.  
  • 8. Annotating  Maps   •  Points  on  a  map   •  Inherit  –  MKAnnotaXon   •  Point   •  Title   •  Overlays   •  Add/Remove   Copyright  2013,  Scalable   Development,  Inc.        All  Rights   Reserved.  
  • 9. Displaying  Overlays   •  Shapes   •  Colors   •  Ex:  5  km  gray  circle   •  Standard  Shapes   •  Custom   Copyright  2013,  Scalable   Development,  Inc.        All  Rights   Reserved.  
  • 10. Map  Movement   •  Map  Delegate   •  Inherit  from  MKMapViewDelegate   •  Region  Changed  Override   •  Communicate  back  to  the  parent   •  Example  Now   Copyright  2013,  Scalable   Development,  Inc.        All  Rights   Reserved.  
  • 11. Location  and  Change  Events   •  LocaXon  changes   •  StartLocaXonChanges()   •  StartMonitoringSignificantLocaXonChanges()   •  UpdatedLocaXons  Event   •  StartUpdaXngHeading()   •  Choose  the  right    mechanism   •  Be  a  good  ciXzen  on  the  device   Copyright  2013,  Scalable   Development,  Inc.        All  Rights   Reserved.  
  • 12. Background  Processing  -­‐  Info.plist   •  Requires  locaXon  service   •  Availability  of  locaXon  services   Copyright  2013,  Scalable   Development,  Inc.        All  Rights   Reserved.  
  • 13. Region  Monitoring   •  Need:   •  Point/Center   •  Radius   •  Check  when  device  crosses  a  boundary   •  IdenXfier   Copyright  2013,  Scalable   Development,  Inc.        All  Rights   Reserved.  
  • 14. Tips  for  Conserving  Battery   •  Turn  off  locaXon  services  when  not  used   •  Use  the  significant  change  locaXon  service  when  possible   •  Use  lower  resoluXon  for  desired  accuracy  when  possible   •  Turn  off  locaXon  events  if  the  accuracy  does  not  improve   Copyright  2013,  Scalable   Development,  Inc.        All  Rights   Reserved.  
  • 15. Geocoding   •  Forward   •  Reverse   •  Network  connecXon   Copyright  2013,  Scalable   Development,  Inc.        All  Rights   Reserved.  
  • 16. Forward  Geocoding  (iOS5)   •  LocaXon  -­‐>  lat/lon  pair   •  Not  in  iOS  3  or  4   •  In  iOS  5+!   •  CLGeocoder   •  .GeocodeAddress   •  Async!   Copyright  2013,  Scalable   Development,  Inc.        All  Rights   Reserved.  
  • 17. Reverse  Geocoding   •  BuilXn   •  Lat/Lon  -­‐>  Address   •  Built  in   •  Async   •  Network  connecXon   •  Examples  in  Forward  and  Reverse   Copyright  2013,  Scalable   Development,  Inc.        All  Rights   Reserved.  
  • 18. But  Apple  Maps  Has  Problems   •  Google  Maps  for  iOS  SDK   •  Xamarin.iOS  bindings   Copyright  2013,  Scalable   Development,  Inc.        All  Rights   Reserved.  
  • 19. Switch  to  Android   •  Different  ways  of  thinking   •  Same  things,  just  called  different   •  MapView  is  deprecated   •  MapFragment  for  new  development   Copyright  2013,  Scalable   Development,  Inc.        All  Rights   Reserved.  
  • 20. •  NaXve  Maps  applicaXon   •  Street  View   •  MapAcXvity  (deprecated)   •  MapFragment  Support   Copyright  2012,  Scalable   Development,  Inc.  All  Rights   Reserved   Mapping  Options  
  • 21. •  Fragments  have  a  different  lifecycle  than  an  AcXvity   •  Use  OnResume   •  GoogleMapOpXons   •  CameraPosiXon   •  ZoomIn   •  ZoomOut   Copyright  2012,  Scalable   Development,  Inc.  All  Rights   Reserved   Using  the  MapFragment  
  • 22. •  LocaXon  Manager.   •  Hooks  to  LBS  Services.   •  Current  LocaXon.   •  Track  Movement.   •  Proximity  Alerts.   •  Interacts  with  LocaXon  Providers.   •  LocaXon  Providers.   Copyright  2012,  Scalable   Development,  Inc.  All  Rights   Reserved   Main  Location  Elements  
  • 23. •  Permission.   •  Which  Provider?   •  Interface  –  ILocaXonListener.   •  Implement  4  methods.   •  Start  listening.   •  Stop  listening  –  as  needed.   Copyright  2012,  Scalable   Development,  Inc.  All  Rights   Reserved   Where  Am  I  
  • 24. •  No  guarantee  of  any  provider.   •  Take  advantage  of  new  providers.   •  Only  need  certain  values.   •  Accuracy.   Copyright  2012,  Scalable   Development,  Inc.  All  Rights   Reserved   Criteria  
  • 25. •  Example.   •  Implement  ILocaXonListener.   •  Methods  to  implement.   •  Delivered  in  background   •  Example   Copyright  2012,  Scalable   Development,  Inc.  All  Rights   Reserved   Where  Am  I?  
  • 26. •  Is  my  device  in  a  given  area?   •  Crossing  a  boundary   •  Similar  to  Regions  in  iOS   Copyright  2012,  Scalable   Development,  Inc.  All  Rights   Reserved   Proximity  
  • 27. •  Forward.   •  Reverse.   •  IList<Address>.   •  Accuracy.   Copyright  2012,  Scalable   Development,  Inc.  All  Rights   Reserved   Geocoding  
  • 28. •  Intent   •  Intent.AcXonView   •  Parameters:   •  geo:   •  LaXtude  &  Longitude   •  Zoom  level   •  q   Copyright  2012,  Scalable   Development,  Inc.  All  Rights   Reserved   Native  Maps  Application  
  • 29. •  Intent   •  Intent.AcXonView   •  Parameters:   •  LaXtude   •  Longitude   •  yaw/panorama   •  pitch   •  zoom   •  mapZoom   Copyright  2012,  Scalable   Development,  Inc.  All  Rights   Reserved   Street  View  
  • 30. Routing   •  Examples   •  iOS   •  Android   Copyright  2013,  Scalable   Development,  Inc.        All  Rights   Reserved.  
  • 31. Google  Maps  Setup   •  Google  Maps  Key   •  Xamarin  Component  Store  for  Bindings   •  Google.Maps  namespace   •  Apply  Key   •  Set  bundle  idenXfier  in  Projects   •  Add  Fragment  to  View   Copyright  2013,  Scalable   Development,  Inc.        All  Rights   Reserved.  
  • 32. •  Somewhat  complicated   •  Go  to  the  directory:   •  Windows  Vista/7:  C:Users[USERNAME]AppDataLocal XamarinMono  for  Android   •  OSX:  /Users/[USERNAME]/.local/share/Xamarin/Mono  for   Android/   Copyright  2012,  Scalable   Development,  Inc.  All  Rights   Reserved   Signing  Key  for  Mapping  
  • 33. •  keytool.exe  -­‐list  -­‐alias  androiddebugkey  -­‐keystore   debug.keystore  -­‐storepass  android  -­‐keypass  android   •  Something  like  this  should  be  returned:   •  androiddebugkey,  Aug  16,  2011,  PrivateKeyEntry,   CerXficate  fingerprint  (MD5):  AA:BB:CC:DD:EE:FF: 11:22:33:44:55:66:77:88:99:00   Copyright  2012,  Scalable   Development,  Inc.  All  Rights   Reserved   Run  the  command  
  • 34. •  Generate  Maps  API  Key   •  h;p://code.google.com/android/maps-­‐api-­‐signup.html   •  Note:  You  will  need  a  google  id   Copyright  2012,  Scalable   Development,  Inc.  All  Rights   Reserved   Obtain  Maps  API  Key  
  • 35. •  Your  map  key   •  OpenGL   •  Internet   •  LocaXon  (Fine  implies  Coarse)   Copyright  2012,  Scalable   Development,  Inc.  All  Rights   Reserved   Manifest  File  
  • 36. Summary  &  Questions   •  Maps   •  Points  on  a  map   •  Overlays   •  Geocoding   •  LocaXon  Management   •  Power  Management   Copyright  2013,  Scalable   Development,  Inc.        All  Rights   Reserved.