SlideShare a Scribd company logo
1 of 28
LOCATION AND MAPS API
IN WINDOWS PHONE 8
SPECIAL GUESTS: THE NOKIA HERE® LAUNCHERS
Windows Phone Day
November 2013 - Catania
Ing. Antonio Pelleriti
Chief Software Architect @ Dynamicode
follow me: @zetanove
www.antoniopelleriti.it
GRAZIE
© 2013 Nokia. All rights reserved.
© 2013 Microsoft. All rights reserved.
AGENDA
© 2013 Nokia. All rights reserved.
© 2013 Microsoft. All rights reserved.
• Geo Location
• Background tracking
• Map control
• Offline maps
• Geocoding/Reverse geocoding
• Route calculation and display
• Nokia HERE Launchers
© 2013 Nokia. All rights reserved.
© 2013 Microsoft. All rights reserved.
GEOLOCATION
GEO LOCATION SENSING TECHNOLOGIES
© 2013 Nokia. All rights reserved.
© 2013 Microsoft. All rights reserved.
• A-GPS
• Wi-Fi triangulation
• Cell Tower triangulation
accuracy
Power
consumptiom
GEOLOCATION ARCHITECTURE
© 2013 Nokia. All rights reserved.
© 2013 Microsoft. All rights reserved.
Managed layer:
Provides .NET API (Pinvoke
not allowed in Windows
Phone)
Native layer:
Communicates with hw layer to
determine location of device
Hardware layer:
Provides location information
Managed Code
Native Layer
GPS WIFI
Cellular
networks
LOCATION API
© 2013 Nokia. All rights reserved.
© 2013 Microsoft. All rights reserved.
• In Windows phone 7: GeoCoordinateWatcher  now deprecated
• In Windows phone 8: Geolocator
• Obtain one shot position:
• Geoposition GetGeopositionAsync
• Continuous location tracking
• event PositionChanged
• DesiredAccuracy, DesiredAccuracyInMeters, MovementThreshold
• event StatusChanged
• Disabled, Initializing, NoData, NotAvailable, NotInitialized, Ready
To enable location features: add ID_CAP_LOCATION in WMAppManifest.xml
Certification Requirement: check for user consent to using location api
BACKGROUND TRACKING (1/2)
© 2013 Nokia. All rights reserved.
© 2013 Microsoft. All rights reserved.
• WMAppManifest.xml
<DefaultTask Name="_default" NavigationPage="MainPage.xaml">
<BackgroundExecution>
<ExecutionType Name="LocationTracking" />
</BackgroundExecution>
</DefaultTask>
• App.xaml
<shell:PhoneApplicationService …
Activated="Application_Activated"
RunningInBackground="Application_RunningInBackground"/>
Setting app for background tracking
BACKGROUND TRACKING (2/2)
© 2013 Nokia. All rights reserved.
© 2013 Microsoft. All rights reserved.
• App.xaml.cs
private void Application_RunningInBackground(object sender,
RunningInBackgroundEventArgs args)
{
RunningInBackground = true;
// Suspend all unnecessary processing such as UI updates
}
private void Application_Activated (object sender, ActivatedEventArgs args)
{
RunningInBackground = false;
}
Setting app for background tracking
TESTING GEOLOCATION WITH EMULATOR
© 2013 Nokia. All rights reserved.
© 2013 Microsoft. All rights reserved.
© 2013 Nokia. All rights reserved.
© 2013 Microsoft. All rights reserved.
GEOLOCATION
DEMO
© 2013 Nokia. All rights reserved.
© 2013 Microsoft. All rights reserved.
MAP CONTROL
MAP CONTROL
© 2013 Nokia. All rights reserved.
© 2013 Microsoft. All rights reserved.
• Bing map control now deprecated (only for upgrading)
• Map Control
• Content: markers, overlays, polylines, polygons, route
• Settings: color, map type, pedestrian, landmarks, heading, pitch, zoom
• Features: geocoding, reverse geocoding, routing
• Capability ID_CAP_MAP in WMAppManifest.xml
• Reference: Microsoft.Phone.Maps.Controls
• Obtain API Keys from Dev Center
MAPS API KEY
© 2013 Nokia. All rights reserved.
© 2013 Microsoft. All rights reserved.
SET MAPS API KEY
© 2013 Nokia. All rights reserved.
© 2013 Microsoft. All rights reserved.
Set the ApplicationID and AuthenticationToken
private void map_Loaded(object sender, RoutedEventArgs e)
{
MapsSettings.ApplicationContext.ApplicationId = "id";
MapsSettings.ApplicationContext.AuthenticationToken = "token";
}
MAP CONTROL MEMBERS
© 2013 Nokia. All rights reserved.
© 2013 Microsoft. All rights reserved.
• GeoCoordinate Center (GeoCoordinate !=Windows.Devices.Geolocation.Geocoordinate)
• ZoomLevel (1..20)
• LandmarksEnabled
• PedestrianFeaturesEnabled
• CartographicMode
• Road, Aerial, Hybrid, Terrain
• ColorMap
• Light/Dark
• Heading (0-360)
• Pitch (0-75)
• SetView and animations in C#
• MyMap.SetView(MyCoordinate, 16, MapAnimationKind.Parabolic);
MAPS BUILT-IN TASKS
© 2013 Nokia. All rights reserved.
© 2013 Microsoft. All rights reserved.
Maps task
Launches the built-in Maps app and optionally marks a location.
Maps directions task
Launches the built-in Maps app and displays directions.
MapDownloader task
Downloads maps for offline use.
MapDownloaderTask mapDownloaderTask = new MapDownloaderTask();
mapDownloaderTask.Show();
MapUpdater task
Checks for updates for offline maps that the user has previously downloaded
MAP OVERLAY
© 2013 Nokia. All rights reserved.
© 2013 Microsoft. All rights reserved.
MapOverlay overlay = new MapOverlay
{
GeoCoordinate = myMap.Center,
Content = new Ellipse
{
Fill = new SolidColorBrush(Colors.Red),
Width = 40,
Height = 40
}
};
MapLayer layer = new MapLayer();
layer.Add(overlay);
myMap.Layers.Add(layer);
GEOCODING/ROUTE CALCULATION
© 2013 Nokia. All rights reserved.
© 2013 Microsoft. All rights reserved.
• GeocodeQuery: converts a street address or place to a GeoCoordinate
• RouteQuery: finds the shortest path between two GeoCoordinate, with any number of
waypoints in between and using a TravelMode (walking, driving)
• ReverseGeocodeQuery: obtains address or place informations from a GeoCoordinate:
Continent, country, state, province, city, address, housenumber, building, postalcode, …
© 2013 Nokia. All rights reserved.
© 2013 Microsoft. All rights reserved.
MAP DEMO
© 2013 Nokia. All rights reserved.
© 2013 Microsoft. All rights reserved.
HERE
APPLICATIONS
NOKIA HERE APPLICATIONS
© 2013 Nokia. All rights reserved.
© 2013 Microsoft. All rights reserved.
• HERE Maps
• HERE Drive
• HERE Transit
• HERE City Lens
They works together and with launchers
you can use their features in your code!
© 2013 Nokia. All rights reserved.
© 2013 Microsoft. All rights reserved.
HERE LAUNCHERS API
HERE LAUNCHERS
© 2013 Nokia. All rights reserved.
© 2013 Microsoft. All rights reserved.
The services provided by the HERE applications can be used in two ways:
• HERE Launchers API (Tasks)
• https://github.com/nokia-developer/here-launchers
• Uri Schemes implemented in HERE applications.
HERE LAUNCHERS API
© 2013 Nokia. All rights reserved.
© 2013 Microsoft. All rights reserved.
Launch HERE Maps to: Launch HERE Drive to: Launch HERE Transit to:
•Show route from user's current
location (default) or selected origin
to a destination.
•Search for places with a text
string.
•Explore places by categories.
•Show map of a selected location
with desired zoom level.
•Show place by ID or location on a
map.
•Provide drive guidance from user's
current location to a specific
destination.
•Show journeys from user's current
location (default) or selected origin
to a destination, either using
current time for departure (default)
or with desired departure or arrival
times.
using Nokia.Phone.HereLaunchers;
…
DirectionsRouteDestinationTask routeTo = new DirectionsRouteDestinationTask();
routeTo.Destination = new GeoCoordinate(60.35, 24.60);
routeTo.Mode = RouteMode.Car;
routeTo.Show();
URI SCHEME PROTOCOL FOR HERE APPS
© 2013 Nokia. All rights reserved.
© 2013 Microsoft. All rights reserved.
Currently 5 URI schemes.
directions : for routing paths.
explore-maps : for exploring map and map services.
guidance-drive : for drive navigation.
guidance-walk : for walk navigation.
places : for showing places.
public-transit : for public transit related use cases.
Example: directions://v2.0/route/destination/?latlon=60.35,24.60&mode=car
http://developer.nokia.com/Resources/Library
/Lumia/#!maps-and-navigation/here-
launchers.html
https://github.com/nokia-developer/here-launchers
© 2013 Nokia. All rights reserved.
© 2013 Microsoft. All rights reserved.
HERE LAUNCHERS
PROJECTS
© 2013 Nokia. All rights reserved.
© 2013 Microsoft. All rights reserved.
Grazie!

More Related Content

Similar to Location and API Maps in Windows Phone 8

Developing Windows Phone Apps with Maps and Location Services
Developing Windows Phone Apps with Maps and Location ServicesDeveloping Windows Phone Apps with Maps and Location Services
Developing Windows Phone Apps with Maps and Location ServicesNick Landry
 
Offline maps for mobile developers (Android/iOS)
Offline maps for mobile developers (Android/iOS)Offline maps for mobile developers (Android/iOS)
Offline maps for mobile developers (Android/iOS)Vadim Nikolaev
 
Location-aware desktop
Location-aware desktopLocation-aware desktop
Location-aware desktopHenri Bergius
 
A Visualization Application On AppEngine (Google Cloud)
A Visualization Application On AppEngine (Google Cloud)A Visualization Application On AppEngine (Google Cloud)
A Visualization Application On AppEngine (Google Cloud)surprisedcloud
 
THE DESIGN IN MOBILE AND WEB PLATFORM OF THE LOCATION IDENTIFICATION APPLICAT...
THE DESIGN IN MOBILE AND WEB PLATFORM OF THE LOCATION IDENTIFICATION APPLICAT...THE DESIGN IN MOBILE AND WEB PLATFORM OF THE LOCATION IDENTIFICATION APPLICAT...
THE DESIGN IN MOBILE AND WEB PLATFORM OF THE LOCATION IDENTIFICATION APPLICAT...Ibrahim Özgön
 
Post-PC: Geolocation & Maps in the Android Ecosystem
Post-PC: Geolocation & Maps in the Android EcosystemPost-PC: Geolocation & Maps in the Android Ecosystem
Post-PC: Geolocation & Maps in the Android EcosystemMichael Genkin
 
BLM UT Mobile Data Collection
BLM UT Mobile Data CollectionBLM UT Mobile Data Collection
BLM UT Mobile Data CollectionScott Kichman
 
Batty consumerization of geospatial
Batty consumerization of geospatialBatty consumerization of geospatial
Batty consumerization of geospatialGeCo in the Rockies
 
LUMIA APP LABS: GAMES DEVELOPMENT USING WINDOWS PHONE 8
LUMIA APP LABS: GAMES DEVELOPMENT USING WINDOWS PHONE 8LUMIA APP LABS: GAMES DEVELOPMENT USING WINDOWS PHONE 8
LUMIA APP LABS: GAMES DEVELOPMENT USING WINDOWS PHONE 8Microsoft Mobile Developer
 
[English] Create Mobile LBS Application Using Maps API
[English] Create Mobile LBS Application Using Maps API[English] Create Mobile LBS Application Using Maps API
[English] Create Mobile LBS Application Using Maps APIGoogle Cloud Platform - Japan
 
Hello GoogleMaps!
Hello GoogleMaps!Hello GoogleMaps!
Hello GoogleMaps!Roc Boronat
 
ANDROID MAPPING APPLICATION
ANDROID MAPPING APPLICATIONANDROID MAPPING APPLICATION
ANDROID MAPPING APPLICATIONcsandit
 
Augmented Reality Application - Final Year Project
Augmented Reality Application - Final Year ProjectAugmented Reality Application - Final Year Project
Augmented Reality Application - Final Year ProjectYash Kaushik
 

Similar to Location and API Maps in Windows Phone 8 (20)

LUMIA APP LAB #16: HERE APPLICATION LAUNCHERS
LUMIA APP LAB #16: HERE APPLICATION LAUNCHERSLUMIA APP LAB #16: HERE APPLICATION LAUNCHERS
LUMIA APP LAB #16: HERE APPLICATION LAUNCHERS
 
HERE Maps for the Nokia X platform
HERE Maps for the Nokia X platformHERE Maps for the Nokia X platform
HERE Maps for the Nokia X platform
 
Intro to apps with maps for series 40
Intro to apps with maps for series 40Intro to apps with maps for series 40
Intro to apps with maps for series 40
 
Developing Windows Phone Apps with Maps and Location Services
Developing Windows Phone Apps with Maps and Location ServicesDeveloping Windows Phone Apps with Maps and Location Services
Developing Windows Phone Apps with Maps and Location Services
 
CV-RAKESH KUMAR
CV-RAKESH KUMARCV-RAKESH KUMAR
CV-RAKESH KUMAR
 
Offline maps for mobile developers (Android/iOS)
Offline maps for mobile developers (Android/iOS)Offline maps for mobile developers (Android/iOS)
Offline maps for mobile developers (Android/iOS)
 
Location-aware desktop
Location-aware desktopLocation-aware desktop
Location-aware desktop
 
A Visualization Application On AppEngine (Google Cloud)
A Visualization Application On AppEngine (Google Cloud)A Visualization Application On AppEngine (Google Cloud)
A Visualization Application On AppEngine (Google Cloud)
 
THE DESIGN IN MOBILE AND WEB PLATFORM OF THE LOCATION IDENTIFICATION APPLICAT...
THE DESIGN IN MOBILE AND WEB PLATFORM OF THE LOCATION IDENTIFICATION APPLICAT...THE DESIGN IN MOBILE AND WEB PLATFORM OF THE LOCATION IDENTIFICATION APPLICAT...
THE DESIGN IN MOBILE AND WEB PLATFORM OF THE LOCATION IDENTIFICATION APPLICAT...
 
Where 2.0
Where 2.0Where 2.0
Where 2.0
 
Post-PC: Geolocation & Maps in the Android Ecosystem
Post-PC: Geolocation & Maps in the Android EcosystemPost-PC: Geolocation & Maps in the Android Ecosystem
Post-PC: Geolocation & Maps in the Android Ecosystem
 
Location Based Services Without the Cocoa
Location Based Services Without the CocoaLocation Based Services Without the Cocoa
Location Based Services Without the Cocoa
 
BLM UT Mobile Data Collection
BLM UT Mobile Data CollectionBLM UT Mobile Data Collection
BLM UT Mobile Data Collection
 
Batty consumerization of geospatial
Batty consumerization of geospatialBatty consumerization of geospatial
Batty consumerization of geospatial
 
LUMIA APP LABS: GAMES DEVELOPMENT USING WINDOWS PHONE 8
LUMIA APP LABS: GAMES DEVELOPMENT USING WINDOWS PHONE 8LUMIA APP LABS: GAMES DEVELOPMENT USING WINDOWS PHONE 8
LUMIA APP LABS: GAMES DEVELOPMENT USING WINDOWS PHONE 8
 
[English] Create Mobile LBS Application Using Maps API
[English] Create Mobile LBS Application Using Maps API[English] Create Mobile LBS Application Using Maps API
[English] Create Mobile LBS Application Using Maps API
 
Hello GoogleMaps!
Hello GoogleMaps!Hello GoogleMaps!
Hello GoogleMaps!
 
Advanced Maps on Apps for Series 40
Advanced Maps on Apps for Series 40Advanced Maps on Apps for Series 40
Advanced Maps on Apps for Series 40
 
ANDROID MAPPING APPLICATION
ANDROID MAPPING APPLICATIONANDROID MAPPING APPLICATION
ANDROID MAPPING APPLICATION
 
Augmented Reality Application - Final Year Project
Augmented Reality Application - Final Year ProjectAugmented Reality Application - Final Year Project
Augmented Reality Application - Final Year Project
 

Recently uploaded

A DAY IN THE LIFE OF A SALESMAN / WOMAN
A DAY IN THE LIFE OF A  SALESMAN / WOMANA DAY IN THE LIFE OF A  SALESMAN / WOMAN
A DAY IN THE LIFE OF A SALESMAN / WOMANIlamathiKannappan
 
Lowrate Call Girls In Laxmi Nagar Delhi ❤️8860477959 Escorts 100% Genuine Ser...
Lowrate Call Girls In Laxmi Nagar Delhi ❤️8860477959 Escorts 100% Genuine Ser...Lowrate Call Girls In Laxmi Nagar Delhi ❤️8860477959 Escorts 100% Genuine Ser...
Lowrate Call Girls In Laxmi Nagar Delhi ❤️8860477959 Escorts 100% Genuine Ser...lizamodels9
 
Call Girls in Mehrauli Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Mehrauli Delhi 💯Call Us 🔝8264348440🔝Call Girls in Mehrauli Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Mehrauli Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
Call Girls In Sikandarpur Gurgaon ❤️8860477959_Russian 100% Genuine Escorts I...
Call Girls In Sikandarpur Gurgaon ❤️8860477959_Russian 100% Genuine Escorts I...Call Girls In Sikandarpur Gurgaon ❤️8860477959_Russian 100% Genuine Escorts I...
Call Girls In Sikandarpur Gurgaon ❤️8860477959_Russian 100% Genuine Escorts I...lizamodels9
 
0183760ssssssssssssssssssssssssssss00101011 (27).pdf
0183760ssssssssssssssssssssssssssss00101011 (27).pdf0183760ssssssssssssssssssssssssssss00101011 (27).pdf
0183760ssssssssssssssssssssssssssss00101011 (27).pdfRenandantas16
 
Call Girls in Gomti Nagar - 7388211116 - With room Service
Call Girls in Gomti Nagar - 7388211116  - With room ServiceCall Girls in Gomti Nagar - 7388211116  - With room Service
Call Girls in Gomti Nagar - 7388211116 - With room Servicediscovermytutordmt
 
Mondelez State of Snacking and Future Trends 2023
Mondelez State of Snacking and Future Trends 2023Mondelez State of Snacking and Future Trends 2023
Mondelez State of Snacking and Future Trends 2023Neil Kimberley
 
Vip Female Escorts Noida 9711199171 Greater Noida Escorts Service
Vip Female Escorts Noida 9711199171 Greater Noida Escorts ServiceVip Female Escorts Noida 9711199171 Greater Noida Escorts Service
Vip Female Escorts Noida 9711199171 Greater Noida Escorts Serviceankitnayak356677
 
BEST Call Girls In Old Faridabad ✨ 9773824855 ✨ Escorts Service In Delhi Ncr,
BEST Call Girls In Old Faridabad ✨ 9773824855 ✨ Escorts Service In Delhi Ncr,BEST Call Girls In Old Faridabad ✨ 9773824855 ✨ Escorts Service In Delhi Ncr,
BEST Call Girls In Old Faridabad ✨ 9773824855 ✨ Escorts Service In Delhi Ncr,noida100girls
 
The CMO Survey - Highlights and Insights Report - Spring 2024
The CMO Survey - Highlights and Insights Report - Spring 2024The CMO Survey - Highlights and Insights Report - Spring 2024
The CMO Survey - Highlights and Insights Report - Spring 2024christinemoorman
 
Lowrate Call Girls In Sector 18 Noida ❤️8860477959 Escorts 100% Genuine Servi...
Lowrate Call Girls In Sector 18 Noida ❤️8860477959 Escorts 100% Genuine Servi...Lowrate Call Girls In Sector 18 Noida ❤️8860477959 Escorts 100% Genuine Servi...
Lowrate Call Girls In Sector 18 Noida ❤️8860477959 Escorts 100% Genuine Servi...lizamodels9
 
M.C Lodges -- Guest House in Jhang.
M.C Lodges --  Guest House in Jhang.M.C Lodges --  Guest House in Jhang.
M.C Lodges -- Guest House in Jhang.Aaiza Hassan
 
GD Birla and his contribution in management
GD Birla and his contribution in managementGD Birla and his contribution in management
GD Birla and his contribution in managementchhavia330
 
VIP Call Girls Pune Kirti 8617697112 Independent Escort Service Pune
VIP Call Girls Pune Kirti 8617697112 Independent Escort Service PuneVIP Call Girls Pune Kirti 8617697112 Independent Escort Service Pune
VIP Call Girls Pune Kirti 8617697112 Independent Escort Service PuneCall girls in Ahmedabad High profile
 
Non Text Magic Studio Magic Design for Presentations L&P.pptx
Non Text Magic Studio Magic Design for Presentations L&P.pptxNon Text Magic Studio Magic Design for Presentations L&P.pptx
Non Text Magic Studio Magic Design for Presentations L&P.pptxAbhayThakur200703
 
Call Girls In Panjim North Goa 9971646499 Genuine Service
Call Girls In Panjim North Goa 9971646499 Genuine ServiceCall Girls In Panjim North Goa 9971646499 Genuine Service
Call Girls In Panjim North Goa 9971646499 Genuine Serviceritikaroy0888
 
Call Girls Navi Mumbai Just Call 9907093804 Top Class Call Girl Service Avail...
Call Girls Navi Mumbai Just Call 9907093804 Top Class Call Girl Service Avail...Call Girls Navi Mumbai Just Call 9907093804 Top Class Call Girl Service Avail...
Call Girls Navi Mumbai Just Call 9907093804 Top Class Call Girl Service Avail...Dipal Arora
 
Regression analysis: Simple Linear Regression Multiple Linear Regression
Regression analysis:  Simple Linear Regression Multiple Linear RegressionRegression analysis:  Simple Linear Regression Multiple Linear Regression
Regression analysis: Simple Linear Regression Multiple Linear RegressionRavindra Nath Shukla
 
Call Girls In Connaught Place Delhi ❤️88604**77959_Russian 100% Genuine Escor...
Call Girls In Connaught Place Delhi ❤️88604**77959_Russian 100% Genuine Escor...Call Girls In Connaught Place Delhi ❤️88604**77959_Russian 100% Genuine Escor...
Call Girls In Connaught Place Delhi ❤️88604**77959_Russian 100% Genuine Escor...lizamodels9
 
Call Girls In Radisson Blu Hotel New Delhi Paschim Vihar ❤️8860477959 Escorts...
Call Girls In Radisson Blu Hotel New Delhi Paschim Vihar ❤️8860477959 Escorts...Call Girls In Radisson Blu Hotel New Delhi Paschim Vihar ❤️8860477959 Escorts...
Call Girls In Radisson Blu Hotel New Delhi Paschim Vihar ❤️8860477959 Escorts...lizamodels9
 

Recently uploaded (20)

A DAY IN THE LIFE OF A SALESMAN / WOMAN
A DAY IN THE LIFE OF A  SALESMAN / WOMANA DAY IN THE LIFE OF A  SALESMAN / WOMAN
A DAY IN THE LIFE OF A SALESMAN / WOMAN
 
Lowrate Call Girls In Laxmi Nagar Delhi ❤️8860477959 Escorts 100% Genuine Ser...
Lowrate Call Girls In Laxmi Nagar Delhi ❤️8860477959 Escorts 100% Genuine Ser...Lowrate Call Girls In Laxmi Nagar Delhi ❤️8860477959 Escorts 100% Genuine Ser...
Lowrate Call Girls In Laxmi Nagar Delhi ❤️8860477959 Escorts 100% Genuine Ser...
 
Call Girls in Mehrauli Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Mehrauli Delhi 💯Call Us 🔝8264348440🔝Call Girls in Mehrauli Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Mehrauli Delhi 💯Call Us 🔝8264348440🔝
 
Call Girls In Sikandarpur Gurgaon ❤️8860477959_Russian 100% Genuine Escorts I...
Call Girls In Sikandarpur Gurgaon ❤️8860477959_Russian 100% Genuine Escorts I...Call Girls In Sikandarpur Gurgaon ❤️8860477959_Russian 100% Genuine Escorts I...
Call Girls In Sikandarpur Gurgaon ❤️8860477959_Russian 100% Genuine Escorts I...
 
0183760ssssssssssssssssssssssssssss00101011 (27).pdf
0183760ssssssssssssssssssssssssssss00101011 (27).pdf0183760ssssssssssssssssssssssssssss00101011 (27).pdf
0183760ssssssssssssssssssssssssssss00101011 (27).pdf
 
Call Girls in Gomti Nagar - 7388211116 - With room Service
Call Girls in Gomti Nagar - 7388211116  - With room ServiceCall Girls in Gomti Nagar - 7388211116  - With room Service
Call Girls in Gomti Nagar - 7388211116 - With room Service
 
Mondelez State of Snacking and Future Trends 2023
Mondelez State of Snacking and Future Trends 2023Mondelez State of Snacking and Future Trends 2023
Mondelez State of Snacking and Future Trends 2023
 
Vip Female Escorts Noida 9711199171 Greater Noida Escorts Service
Vip Female Escorts Noida 9711199171 Greater Noida Escorts ServiceVip Female Escorts Noida 9711199171 Greater Noida Escorts Service
Vip Female Escorts Noida 9711199171 Greater Noida Escorts Service
 
BEST Call Girls In Old Faridabad ✨ 9773824855 ✨ Escorts Service In Delhi Ncr,
BEST Call Girls In Old Faridabad ✨ 9773824855 ✨ Escorts Service In Delhi Ncr,BEST Call Girls In Old Faridabad ✨ 9773824855 ✨ Escorts Service In Delhi Ncr,
BEST Call Girls In Old Faridabad ✨ 9773824855 ✨ Escorts Service In Delhi Ncr,
 
The CMO Survey - Highlights and Insights Report - Spring 2024
The CMO Survey - Highlights and Insights Report - Spring 2024The CMO Survey - Highlights and Insights Report - Spring 2024
The CMO Survey - Highlights and Insights Report - Spring 2024
 
Lowrate Call Girls In Sector 18 Noida ❤️8860477959 Escorts 100% Genuine Servi...
Lowrate Call Girls In Sector 18 Noida ❤️8860477959 Escorts 100% Genuine Servi...Lowrate Call Girls In Sector 18 Noida ❤️8860477959 Escorts 100% Genuine Servi...
Lowrate Call Girls In Sector 18 Noida ❤️8860477959 Escorts 100% Genuine Servi...
 
M.C Lodges -- Guest House in Jhang.
M.C Lodges --  Guest House in Jhang.M.C Lodges --  Guest House in Jhang.
M.C Lodges -- Guest House in Jhang.
 
GD Birla and his contribution in management
GD Birla and his contribution in managementGD Birla and his contribution in management
GD Birla and his contribution in management
 
VIP Call Girls Pune Kirti 8617697112 Independent Escort Service Pune
VIP Call Girls Pune Kirti 8617697112 Independent Escort Service PuneVIP Call Girls Pune Kirti 8617697112 Independent Escort Service Pune
VIP Call Girls Pune Kirti 8617697112 Independent Escort Service Pune
 
Non Text Magic Studio Magic Design for Presentations L&P.pptx
Non Text Magic Studio Magic Design for Presentations L&P.pptxNon Text Magic Studio Magic Design for Presentations L&P.pptx
Non Text Magic Studio Magic Design for Presentations L&P.pptx
 
Call Girls In Panjim North Goa 9971646499 Genuine Service
Call Girls In Panjim North Goa 9971646499 Genuine ServiceCall Girls In Panjim North Goa 9971646499 Genuine Service
Call Girls In Panjim North Goa 9971646499 Genuine Service
 
Call Girls Navi Mumbai Just Call 9907093804 Top Class Call Girl Service Avail...
Call Girls Navi Mumbai Just Call 9907093804 Top Class Call Girl Service Avail...Call Girls Navi Mumbai Just Call 9907093804 Top Class Call Girl Service Avail...
Call Girls Navi Mumbai Just Call 9907093804 Top Class Call Girl Service Avail...
 
Regression analysis: Simple Linear Regression Multiple Linear Regression
Regression analysis:  Simple Linear Regression Multiple Linear RegressionRegression analysis:  Simple Linear Regression Multiple Linear Regression
Regression analysis: Simple Linear Regression Multiple Linear Regression
 
Call Girls In Connaught Place Delhi ❤️88604**77959_Russian 100% Genuine Escor...
Call Girls In Connaught Place Delhi ❤️88604**77959_Russian 100% Genuine Escor...Call Girls In Connaught Place Delhi ❤️88604**77959_Russian 100% Genuine Escor...
Call Girls In Connaught Place Delhi ❤️88604**77959_Russian 100% Genuine Escor...
 
Call Girls In Radisson Blu Hotel New Delhi Paschim Vihar ❤️8860477959 Escorts...
Call Girls In Radisson Blu Hotel New Delhi Paschim Vihar ❤️8860477959 Escorts...Call Girls In Radisson Blu Hotel New Delhi Paschim Vihar ❤️8860477959 Escorts...
Call Girls In Radisson Blu Hotel New Delhi Paschim Vihar ❤️8860477959 Escorts...
 

Location and API Maps in Windows Phone 8

  • 1. LOCATION AND MAPS API IN WINDOWS PHONE 8 SPECIAL GUESTS: THE NOKIA HERE® LAUNCHERS Windows Phone Day November 2013 - Catania Ing. Antonio Pelleriti Chief Software Architect @ Dynamicode follow me: @zetanove www.antoniopelleriti.it
  • 2. GRAZIE © 2013 Nokia. All rights reserved. © 2013 Microsoft. All rights reserved.
  • 3. AGENDA © 2013 Nokia. All rights reserved. © 2013 Microsoft. All rights reserved. • Geo Location • Background tracking • Map control • Offline maps • Geocoding/Reverse geocoding • Route calculation and display • Nokia HERE Launchers
  • 4. © 2013 Nokia. All rights reserved. © 2013 Microsoft. All rights reserved. GEOLOCATION
  • 5. GEO LOCATION SENSING TECHNOLOGIES © 2013 Nokia. All rights reserved. © 2013 Microsoft. All rights reserved. • A-GPS • Wi-Fi triangulation • Cell Tower triangulation accuracy Power consumptiom
  • 6. GEOLOCATION ARCHITECTURE © 2013 Nokia. All rights reserved. © 2013 Microsoft. All rights reserved. Managed layer: Provides .NET API (Pinvoke not allowed in Windows Phone) Native layer: Communicates with hw layer to determine location of device Hardware layer: Provides location information Managed Code Native Layer GPS WIFI Cellular networks
  • 7. LOCATION API © 2013 Nokia. All rights reserved. © 2013 Microsoft. All rights reserved. • In Windows phone 7: GeoCoordinateWatcher  now deprecated • In Windows phone 8: Geolocator • Obtain one shot position: • Geoposition GetGeopositionAsync • Continuous location tracking • event PositionChanged • DesiredAccuracy, DesiredAccuracyInMeters, MovementThreshold • event StatusChanged • Disabled, Initializing, NoData, NotAvailable, NotInitialized, Ready To enable location features: add ID_CAP_LOCATION in WMAppManifest.xml Certification Requirement: check for user consent to using location api
  • 8. BACKGROUND TRACKING (1/2) © 2013 Nokia. All rights reserved. © 2013 Microsoft. All rights reserved. • WMAppManifest.xml <DefaultTask Name="_default" NavigationPage="MainPage.xaml"> <BackgroundExecution> <ExecutionType Name="LocationTracking" /> </BackgroundExecution> </DefaultTask> • App.xaml <shell:PhoneApplicationService … Activated="Application_Activated" RunningInBackground="Application_RunningInBackground"/> Setting app for background tracking
  • 9. BACKGROUND TRACKING (2/2) © 2013 Nokia. All rights reserved. © 2013 Microsoft. All rights reserved. • App.xaml.cs private void Application_RunningInBackground(object sender, RunningInBackgroundEventArgs args) { RunningInBackground = true; // Suspend all unnecessary processing such as UI updates } private void Application_Activated (object sender, ActivatedEventArgs args) { RunningInBackground = false; } Setting app for background tracking
  • 10. TESTING GEOLOCATION WITH EMULATOR © 2013 Nokia. All rights reserved. © 2013 Microsoft. All rights reserved.
  • 11. © 2013 Nokia. All rights reserved. © 2013 Microsoft. All rights reserved. GEOLOCATION DEMO
  • 12. © 2013 Nokia. All rights reserved. © 2013 Microsoft. All rights reserved. MAP CONTROL
  • 13. MAP CONTROL © 2013 Nokia. All rights reserved. © 2013 Microsoft. All rights reserved. • Bing map control now deprecated (only for upgrading) • Map Control • Content: markers, overlays, polylines, polygons, route • Settings: color, map type, pedestrian, landmarks, heading, pitch, zoom • Features: geocoding, reverse geocoding, routing • Capability ID_CAP_MAP in WMAppManifest.xml • Reference: Microsoft.Phone.Maps.Controls • Obtain API Keys from Dev Center
  • 14. MAPS API KEY © 2013 Nokia. All rights reserved. © 2013 Microsoft. All rights reserved.
  • 15. SET MAPS API KEY © 2013 Nokia. All rights reserved. © 2013 Microsoft. All rights reserved. Set the ApplicationID and AuthenticationToken private void map_Loaded(object sender, RoutedEventArgs e) { MapsSettings.ApplicationContext.ApplicationId = "id"; MapsSettings.ApplicationContext.AuthenticationToken = "token"; }
  • 16. MAP CONTROL MEMBERS © 2013 Nokia. All rights reserved. © 2013 Microsoft. All rights reserved. • GeoCoordinate Center (GeoCoordinate !=Windows.Devices.Geolocation.Geocoordinate) • ZoomLevel (1..20) • LandmarksEnabled • PedestrianFeaturesEnabled • CartographicMode • Road, Aerial, Hybrid, Terrain • ColorMap • Light/Dark • Heading (0-360) • Pitch (0-75) • SetView and animations in C# • MyMap.SetView(MyCoordinate, 16, MapAnimationKind.Parabolic);
  • 17. MAPS BUILT-IN TASKS © 2013 Nokia. All rights reserved. © 2013 Microsoft. All rights reserved. Maps task Launches the built-in Maps app and optionally marks a location. Maps directions task Launches the built-in Maps app and displays directions. MapDownloader task Downloads maps for offline use. MapDownloaderTask mapDownloaderTask = new MapDownloaderTask(); mapDownloaderTask.Show(); MapUpdater task Checks for updates for offline maps that the user has previously downloaded
  • 18. MAP OVERLAY © 2013 Nokia. All rights reserved. © 2013 Microsoft. All rights reserved. MapOverlay overlay = new MapOverlay { GeoCoordinate = myMap.Center, Content = new Ellipse { Fill = new SolidColorBrush(Colors.Red), Width = 40, Height = 40 } }; MapLayer layer = new MapLayer(); layer.Add(overlay); myMap.Layers.Add(layer);
  • 19. GEOCODING/ROUTE CALCULATION © 2013 Nokia. All rights reserved. © 2013 Microsoft. All rights reserved. • GeocodeQuery: converts a street address or place to a GeoCoordinate • RouteQuery: finds the shortest path between two GeoCoordinate, with any number of waypoints in between and using a TravelMode (walking, driving) • ReverseGeocodeQuery: obtains address or place informations from a GeoCoordinate: Continent, country, state, province, city, address, housenumber, building, postalcode, …
  • 20. © 2013 Nokia. All rights reserved. © 2013 Microsoft. All rights reserved. MAP DEMO
  • 21. © 2013 Nokia. All rights reserved. © 2013 Microsoft. All rights reserved. HERE APPLICATIONS
  • 22. NOKIA HERE APPLICATIONS © 2013 Nokia. All rights reserved. © 2013 Microsoft. All rights reserved. • HERE Maps • HERE Drive • HERE Transit • HERE City Lens They works together and with launchers you can use their features in your code!
  • 23. © 2013 Nokia. All rights reserved. © 2013 Microsoft. All rights reserved. HERE LAUNCHERS API
  • 24. HERE LAUNCHERS © 2013 Nokia. All rights reserved. © 2013 Microsoft. All rights reserved. The services provided by the HERE applications can be used in two ways: • HERE Launchers API (Tasks) • https://github.com/nokia-developer/here-launchers • Uri Schemes implemented in HERE applications.
  • 25. HERE LAUNCHERS API © 2013 Nokia. All rights reserved. © 2013 Microsoft. All rights reserved. Launch HERE Maps to: Launch HERE Drive to: Launch HERE Transit to: •Show route from user's current location (default) or selected origin to a destination. •Search for places with a text string. •Explore places by categories. •Show map of a selected location with desired zoom level. •Show place by ID or location on a map. •Provide drive guidance from user's current location to a specific destination. •Show journeys from user's current location (default) or selected origin to a destination, either using current time for departure (default) or with desired departure or arrival times. using Nokia.Phone.HereLaunchers; … DirectionsRouteDestinationTask routeTo = new DirectionsRouteDestinationTask(); routeTo.Destination = new GeoCoordinate(60.35, 24.60); routeTo.Mode = RouteMode.Car; routeTo.Show();
  • 26. URI SCHEME PROTOCOL FOR HERE APPS © 2013 Nokia. All rights reserved. © 2013 Microsoft. All rights reserved. Currently 5 URI schemes. directions : for routing paths. explore-maps : for exploring map and map services. guidance-drive : for drive navigation. guidance-walk : for walk navigation. places : for showing places. public-transit : for public transit related use cases. Example: directions://v2.0/route/destination/?latlon=60.35,24.60&mode=car
  • 28. © 2013 Nokia. All rights reserved. © 2013 Microsoft. All rights reserved. Grazie!

Editor's Notes

  1. Il servizio di localizzazione usato da Windows Phone utilizza dati provenienti da diverse sorgenti, in maniera da ottimizzare la precisione: A-GPS Wi Fi Rete Cellulare Una o più di queste risorse possono essere utilizzare contemporaneamente, anche per bilanciare performance e precisione con il consumo di energia Le informazioni di geolocalizzazione vengono poi esposte alle applicazioni per mezzo di API basate su eventi A-GPS Highest accuracy Highest power consumption Slow startup No Indoor Wi-Fi triangulation Accuracy: >cellular network <GPS Medium power consumption Medium startup speed Needs wifi networks Cell Tower triangulation Low accuracy Low power consumption Fast startup Needs coverage
  2. L’architettura di Windows phone per la geolocalizazione consiste di 3 strati: Uno hardware Uno di codice nativo Uno di codice gestito
  3. Se non c’è id_cap_location, all’utilizzo si scatena un’ AccessUnauthorizedException In ogni caso gestire la possibile eccezione, se l’utente è in modalità aereo. Per certificare un app bisogna chiedere il consenso all’utente, e salvarlo per esempio nell’isolated storage DesiredAccuracy Default High (favorisce gps e consuma di più) DesiredAccuracyInMeters MovementThreshold in meters (20 è un buon valore) StatusChanged scatenato quando cambia lo stato del componente che rileva la posizione.
  4. In wp 7.5, se l’app viene sospesa e va in dormant o tombstone, tutti i dati di location vengono buttati via. In WP8 è possibile avere una sola app in background, che effettua location tracking Se ci sono più app che vogliono registrarsi per il location tracking, la più recentemente aperta prende il comando, le altre vengono passate in stato dormant o tombstoned The app stops actively tracking location. An app stops tracking location by removing event handlers for the PositionChanged and StatusChanged events of the Geolocator class or by calling the Stop() method of the GeoCoordinateWatcher class. The app has run in the background for 4 hours without user interaction. Battery Saver is active. Device memory is low. The user disables Location Services on the phone. Another app begins running in the background.
  5. In wp 7.5, se l’app viene sospesa e va in dormant o tombstone, tutti i dati di location vengono buttati via. In WP8 è possibile avere una sola app in background, che effettua location tracking Se ci sono più app che vogliono registrarsi per il location tracking, la più recentemente aperta prende il comando, le altre vengono passate in stato dormant o tombstoned
  6. ContinuousLocation Demo
  7. Le proprietà vanno impostate dopo il caricamento del primo controllo Map dell’App E vengono mantenute dall’infrastruttura. Se tutte le mappe sono distrutte e viene creata una nuova istanza, bisogna reimpostarle
  8. Landmarks edifici 3d Pedestrian dettagli utili ai pedoni, come scali, passaggi,
  9. Maps Data shared between apps. MapDownloaderTask and MapUpdaterTask launch the default maps settings application, to provide consistent User Experience
  10. MapOverlay object has a generic Content property, For shapes, controls, images, video, ecc.
  11. MapExplorer
  12. HERE Drive+ Beta è un'applicazione gratuita per la navigazione contenente istruzioni guidate e supporto completo offline, oltre alle istruzioni vocali per guidare in modo più semplice e sicuro. Transit Visualizza tutte le opzioni per i trasporti pubblici: autobus, treno, metropolitana, tram. Accedi facilmente agli itinerari e alle indicazioni per raggiungere le stazioni. Ristoranti, negozi, musei e hotel: HERE City Lens ti svela tutto quello che c'è davanti ai tuoi occhi. L'applicazione è disponibile soltanto per gli smartphone Windows Phone 8 dotati di magnetometro.
  13. With Windows Phone 8, developers can launch other applications with URI schemes. It is possible for developers to launch HERE applications by utilising the URI schemes implemented in those applications; the documentation for these schemes can be found in the Windows Phone URI scheme protocol for HERE applications topic. Another way of launching other applications and using their services with Windows Phones is using the Launcher APIs (MSDN) which allow an application to integrate with common system tasks, such as taking a picture, finding a contact, making a call, or saving a ring tone with very little effort. Thus, for convenience, we provide you the HERE Launchers API that simplifies developer's life by providing an API surface very similar to the Windows Phone launchers.
  14. When launcher tasks are used, the application made for handling the use case will be launched and the parameters given to the launchers will be forwarded to the handler application via the URI scheme protocol. In case there is no handler application for the given protocol installed in the device, then the user will be given an option to open Marketplace application for automated search for applications which can handle the specified protocol. In case there are multiple handler applications for the given protocol installed in the device, then the user will be shown a selection dialog from which the desired handler application can be chosen.