SlideShare a Scribd company logo
Using SharePoint’s Geolocation Field 
Mark Stokes – SharePoint Saturday UK 2014
Mark Stokes [MVP] 
 Red Plane 
 Microsoft Partner in North West UK 
 www.redplane.co.uk 
 @FlyRedPlane 
 Office 365, SharePoint, Azure, nopCommerce, 
Windows 8 Apps, Windows Phone Apps, iOS Apps, 
.Net 
 mark.stokes@redplane.co.uk 
 @MarkStokes 
 Interests: Travel, Technology, Photography, 
Raspberry Pi, Snowboarding, Wakeboaring, Running, 
Tough Mudder, My Dog - Hugo
Agenda 
 What is the Geolocation Field? 
 Adding Geolocation Field 
 Bing Maps License 
 Creating a Map view 
 Geolocation field example scenarios
What is the Geolocation Field? 
 SharePoint 2013 introduced a new field type named Geolocation that enables you 
to annotate SharePoint lists with location information. 
 In columns of type Geolocation, you can enter location information as a pair of 
latitude and longitude coordinates in decimal degrees or retrieve the coordinates 
of the user’s current location from the browser if it implements the W3C 
Geolocation API. 
 In the list, SharePoint 2013 displays the location on a map powered by Bing Maps. 
 A new view named Map View displays the list items as pushpins on a Bing Maps 
Ajax control V7 with the list items as cards on the left pane. 
 Together, the Geolocation field and the Map View enable you to give a spatial 
context to any information by integrating data from SharePoint into a mapping 
experience, and let your users engage in new ways in your web and mobile apps 
and solutions.
SP2013 On-Premises – Pre-Requisites 
 An MSI package named SQLSysClrTypes.msi must be installed on every 
SharePoint front-end web server to view the geolocation field value or data in 
a list. 
 This package installs components that implement the new geometry, 
geography, and hierarchy ID types in SQL Server 2008. 
 By default, this file is installed for SharePoint Online. However, it is not for an 
on-premises deployment of SharePoint Server 2013. 
 You must be a member of the Farm Administrators group to perform this 
operation. 
 http://msdn.microsoft.com/en-us/library/office/jj163135(v=office.15).aspx
Enabling the Geolocation Field 
 Bing Maps License Key - https://www.bingmapsportal.com 
 To set the Bing Maps key at the farm level using Windows PowerShell 
 Set-SPBingMapsKey –BingKey "<Enter a valid Bing Maps key>” 
 When you use Windows PowerShell, the Bing Maps key can be set only at the 
farm level. If you want to set the Bing Maps key at the web level, you can set 
the key programmatically.
Enabling the Geolocation Field 
 To set the Bing Maps key at the web level using custom code (C#) 
class Program 
{ 
static void Main(string[] args) 
{ 
SetBingMapsKey(); 
Console.WriteLine("Bing Maps set successfully"); 
} 
static private void SetBingMapsKey() 
{ 
ClientContext context = new ClientContext("<Site Url>"); 
Web web = context.Web; 
web.AllProperties["BING_MAPS_KEY"] = "<Valid Bing Maps Key>” 
web.Update(); 
context.ExecuteQuery(); 
} 
}
Enabling the Geolocation Field 
 To set the Bing Maps key at the web level using custom code (JavaScript) 
function SetBingKey() { 
clientContext = new SP.ClientContext([Relative Web Address]); 
var web = clientContext.get_web(); 
var webProperties = web.get_allProperties(); 
webProperties.set_item("BING_MAPS_KEY", “[Enter Bing Maps Key here]”); 
web.update(); 
clientContext.load(web); 
clientContext.executeQueryAsync(function (sender, args) { 
alert("You have successfully entered BING map key on "+ web.get_title() + " site”); 
}, function (sender, args) { 
alert("Error: ” + args.get_message()); 
}); 
}
Map View 
 A Map View is a SharePoint view that 
displays a map (with data obtained from 
the Bing Maps service), using longitude and 
latitude entries from the Geolocation field 
type. 
 When the Geolocation field type is 
available on the SharePoint list, a map view 
can be created wither programmatically or 
from the SharePoint UI. 
 In the list, SharePoint 2013 displays the 
location on a map powered by Bing Maps. 
 In additions, a new view type named Map 
View displays the list items as pushpins on 
a Bing Maps Ajax control V7 with the list 
items as card on the left pane.
Map View 
 A map view provides three colors of pushpins, each of which provides a 
difference user experience. A pushpin on the map has the same color as the 
pushpin of the matching item in the left pane. 
 Orange Indicates that the Geolocation field for the item is mapped with the Bing 
Maps services. 
 Grey Indicates that the Geolocation field for the item is empty. The item cannot 
be mapped with Bing Maps services, so no pushpin for this item appears on the 
map. 
 Blue When a user hovers over a list item, the pushpin color changes from orange 
to blue. Both the pushpin in the left pane and the matching pushpin on the map 
change color
Create a Map View Programmatically 
class Program 
{ 
static void Main(string[] args) 
{ 
CreateMapView (); 
Console.WriteLine("A map view is created successfully"); 
} 
private static void CreateMapView() 
{ 
// Replace <Site URL> and <List Title> with valid values. 
ClientContext context = new ClientContext("<Site Url>"); 
List oList = context.Web.Lists.GetByTitle("<List Title>"); 
ViewCreationInformation viewCreationinfo = new ViewCreationInformation(); 
// Replace <View Name> with the name you want for your map view. 
viewCreationinfo.Title = "<View Name>"; 
viewCreationinfo.ViewTypeKind = ViewType.Html; 
View oView = oList.Views.Add(viewCreationinfo); 
oView.JSLink = "mapviewtemplate.js"; 
oView.Update(); 
context.ExecuteQuery(); 
} 
}
Extending the Geoloaction field in a Content 
Query Webpart 
 Shows how to show the Map in a Content Query Web Part 
 Gives some good examples on changing the format of the Map View, such as 
zoom level 
http://pafederwitz.wordpress.com/2014/08/19/using-cqwp-to-display-sharepoint- 
geolocation-field/
Geolocation field example scenarios 
 Councils - Pot Hole reporting 
 Construction company / Oil rig – Health and Safety reporting 
 Logistics – vehicle tracking 
 Customer location heat maps 
 Statistical Reporting 
 Photo location Tagging 
 Office Locations 
 Power BI?
Power Map 
 Excel Formulas: 
 Lattitude: =MID(F2,FIND(" ",F2,10), FIND(")",F2) - FIND(" ",F2,10)) 
 Longitude: =MID(F2,8,FIND(" ",F2,10)-8)
Geolocation “niggly” bits 
 Field is not indexed by search 
 Cannot “paste” list data into Quick Edit mode 
 Bing Maps only 
 You have to pay for a Bing Maps license
Links 
 Integrating location and map functionality in SharePoint 2013 
 http://msdn.microsoft.com/en-us/library/office/jj163135(v=office.15).aspx 
 Create a map view for the Geolocation field in SharePoint 2013 
 http://msdn.microsoft.com/en-us/library/office/jj656773(v=office.15).aspx 
 Getting started with the new Geolocation field in SharePoint 2013 
 http://zimmergren.net/technical/sp-2013-getting-started-with-the-new-geolocation-field-in-sharepoint-2013 
 Add a GeoLocation Field to SharePoint Online using PowerShell 
 http://sharepointryan.com/2013/08/12/add-a-geolocation-field-to-sharepoint-online-using-powershell/ 
 Geolocation field in SharePoint 2013 
 http://www.sharepoint2013.me/Blog/Post/146/Geolocation-field-in-SharePoint-2013 
 Using Content Query Web Part to display SharePoint Geolocation Field 
 http://pafederwitz.wordpress.com/2014/08/19/using-cqwp-to-display-sharepoint-geolocation-field/
Thank You to Our Sponsors!

More Related Content

PPTX
GIS and CAD Integration: The Bentley Perspective
PDF
Arcgis for Server
PDF
MicroStation Product Datasheet
PPTX
FOSS4G 2011: Mixing It Up with OpenLayers, ArcGIS Server and JavaScript Widgets
PPTX
Field Activity Planner for Oil & Gas
PDF
Extension arc gis
PDF
Super map gis 8c
PPT
Internet-enabled GIS for Planners
GIS and CAD Integration: The Bentley Perspective
Arcgis for Server
MicroStation Product Datasheet
FOSS4G 2011: Mixing It Up with OpenLayers, ArcGIS Server and JavaScript Widgets
Field Activity Planner for Oil & Gas
Extension arc gis
Super map gis 8c
Internet-enabled GIS for Planners

What's hot (19)

PPTX
Internet-enabled GIS - Spring 2011
PDF
Concepts and Methods of Embedding Statistical Data into Maps
PDF
Google Maps API 101
PPTX
Leveraging GIS with AutoCAD
PPT
Google Maps API
PDF
Geographic Information Systems Based Quantity Takeoffs in Buildings Construction
PDF
StreetMap Premium for ArcGIS
PPT
ArcGIS JavaScript API (build a web layer-based map application with html5 and...
PPTX
Field Activity Planner 2018 Digital Energy Platform
PPT
The 21st Century Harvard Map
PDF
Day4_WebGIS
PDF
Visualize Your Data
PDF
Geo spatial analytics using Microsoft BI
PDF
CARTO BUILDER: from visualization to geospatial analysis
PDF
Online mapping with_the_google_maps_api
PPTX
Getting your Data Out There: An Introduction to Distributed GIS
PDF
Data Visualization with Microsoft Reporting Services
PPTX
Geospatial Product Watch 2015
PPTX
Smarter data analysis with JavaScript and Azure ML functions in Excel
Internet-enabled GIS - Spring 2011
Concepts and Methods of Embedding Statistical Data into Maps
Google Maps API 101
Leveraging GIS with AutoCAD
Google Maps API
Geographic Information Systems Based Quantity Takeoffs in Buildings Construction
StreetMap Premium for ArcGIS
ArcGIS JavaScript API (build a web layer-based map application with html5 and...
Field Activity Planner 2018 Digital Energy Platform
The 21st Century Harvard Map
Day4_WebGIS
Visualize Your Data
Geo spatial analytics using Microsoft BI
CARTO BUILDER: from visualization to geospatial analysis
Online mapping with_the_google_maps_api
Getting your Data Out There: An Introduction to Distributed GIS
Data Visualization with Microsoft Reporting Services
Geospatial Product Watch 2015
Smarter data analysis with JavaScript and Azure ML functions in Excel
Ad

Viewers also liked (19)

PPTX
Kanban Task Manager for SharePoint
PPTX
SharePoint User Group UK #FutureOfSharePoint 11 May 2016
PPTX
Keynote: 6 Steps to Big Data Success for Digital Marketing
PPTX
To Folder or Not to Folder in modern SharePoint
PPTX
Big Data Testing: Ensuring MongoDB Data Quality
PPTX
Chris O'Brien - Modern SharePoint sites and the SharePoint Framework - reference
PDF
Facebooks Petabyte Scale Data Warehouse using Hive and Hadoop
PPTX
Pig, Making Hadoop Easy
PDF
introduction to data processing using Hadoop and Pig
PDF
Practical Problem Solving with Apache Hadoop & Pig
PPT
HIVE: Data Warehousing & Analytics on Hadoop
PDF
Hive Quick Start Tutorial
PDF
Integration of Hive and HBase
KEY
Hadoop, Pig, and Twitter (NoSQL East 2009)
PPTX
Testing Big Data: Automated Testing of Hadoop with QuerySurge
PPT
Introduction To Map Reduce
PPTX
Big Data & Hadoop Tutorial
PPTX
Big Data Analytics with Hadoop
PPTX
Big data ppt
Kanban Task Manager for SharePoint
SharePoint User Group UK #FutureOfSharePoint 11 May 2016
Keynote: 6 Steps to Big Data Success for Digital Marketing
To Folder or Not to Folder in modern SharePoint
Big Data Testing: Ensuring MongoDB Data Quality
Chris O'Brien - Modern SharePoint sites and the SharePoint Framework - reference
Facebooks Petabyte Scale Data Warehouse using Hive and Hadoop
Pig, Making Hadoop Easy
introduction to data processing using Hadoop and Pig
Practical Problem Solving with Apache Hadoop & Pig
HIVE: Data Warehousing & Analytics on Hadoop
Hive Quick Start Tutorial
Integration of Hive and HBase
Hadoop, Pig, and Twitter (NoSQL East 2009)
Testing Big Data: Automated Testing of Hadoop with QuerySurge
Introduction To Map Reduce
Big Data & Hadoop Tutorial
Big Data Analytics with Hadoop
Big data ppt
Ad

Similar to Using SharePoint's Geolocation Field - SPSUK 2014 (20)

PPTX
Geolocation: Improving our BI solutions with SharePoint
PDF
Ky3618721875
PPTX
What are customers building with new Bing Maps capabilities
PDF
Hawaii Pacific GIS Conference 2012: Application Development - Using GIS Data ...
PPTX
Bing & Silverlight: Perfect Together
PDF
Vikas Arora - Microsoft Bing Maps - Locate. Integrate. Innovate. - Geomob May...
PPT
How to load geocoded points to Mappler
PPTX
Bing Maps for app developer
PPTX
Hacking location aware apps
PDF
Programming Mappoint In Net 1st Edition Chandu Thota
PDF
Introduction to Geo hacking with (amongst others) Yahoo Technology.
PPTX
Hacking location aware hacks HackU IIT Bombay
PPTX
Locate your hacks
ODP
Zoom in on Mapping and Location
PDF
Working with ArcGIS Online
PPT
Web enabling your survey business
PDF
Introduction to Geo Technologies
PPTX
Hacking up location aware apps
PDF
Bing Maps Developer Data Sheet
PDF
Web Mashup Slides For Lesson 1
Geolocation: Improving our BI solutions with SharePoint
Ky3618721875
What are customers building with new Bing Maps capabilities
Hawaii Pacific GIS Conference 2012: Application Development - Using GIS Data ...
Bing & Silverlight: Perfect Together
Vikas Arora - Microsoft Bing Maps - Locate. Integrate. Innovate. - Geomob May...
How to load geocoded points to Mappler
Bing Maps for app developer
Hacking location aware apps
Programming Mappoint In Net 1st Edition Chandu Thota
Introduction to Geo hacking with (amongst others) Yahoo Technology.
Hacking location aware hacks HackU IIT Bombay
Locate your hacks
Zoom in on Mapping and Location
Working with ArcGIS Online
Web enabling your survey business
Introduction to Geo Technologies
Hacking up location aware apps
Bing Maps Developer Data Sheet
Web Mashup Slides For Lesson 1

More from Mark Stokes (11)

PPTX
SUGUK - Manchester - Ignite 2017 update
PPTX
AvePoint Cloud Series - When do you decide to go to Office 365?
PPTX
SUG - Singapore - Use of Social communication in the next generation of business
PPTX
Evo conf - SharePoint for the first time
PPTX
Evo conf - Designing SharePoint Solutions
PPTX
Sharepoint User Group Geneva - Introduction to Office 365
PPTX
SUGUK - News - 2013-12
PPTX
SPSUK - When do you decide to go to the cloud?
PPTX
SUGUK NW - 130430 - SharePoint Social
PPTX
SPEvo13 - COM701 - The full story of a large scale SharePoint upgrade
PPTX
SharePoint 2013 Search - Whats new for End Users
SUGUK - Manchester - Ignite 2017 update
AvePoint Cloud Series - When do you decide to go to Office 365?
SUG - Singapore - Use of Social communication in the next generation of business
Evo conf - SharePoint for the first time
Evo conf - Designing SharePoint Solutions
Sharepoint User Group Geneva - Introduction to Office 365
SUGUK - News - 2013-12
SPSUK - When do you decide to go to the cloud?
SUGUK NW - 130430 - SharePoint Social
SPEvo13 - COM701 - The full story of a large scale SharePoint upgrade
SharePoint 2013 Search - Whats new for End Users

Recently uploaded (20)

PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PPTX
SOPHOS-XG Firewall Administrator PPT.pptx
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PDF
Getting Started with Data Integration: FME Form 101
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PDF
MIND Revenue Release Quarter 2 2025 Press Release
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PPTX
1. Introduction to Computer Programming.pptx
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PPTX
Tartificialntelligence_presentation.pptx
PDF
A comparative analysis of optical character recognition models for extracting...
PPTX
Spectroscopy.pptx food analysis technology
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PDF
Approach and Philosophy of On baking technology
PDF
Spectral efficient network and resource selection model in 5G networks
PPTX
Group 1 Presentation -Planning and Decision Making .pptx
PDF
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
Dropbox Q2 2025 Financial Results & Investor Presentation
SOPHOS-XG Firewall Administrator PPT.pptx
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
Getting Started with Data Integration: FME Form 101
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
Reach Out and Touch Someone: Haptics and Empathic Computing
Diabetes mellitus diagnosis method based random forest with bat algorithm
MIND Revenue Release Quarter 2 2025 Press Release
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
1. Introduction to Computer Programming.pptx
Mobile App Security Testing_ A Comprehensive Guide.pdf
Tartificialntelligence_presentation.pptx
A comparative analysis of optical character recognition models for extracting...
Spectroscopy.pptx food analysis technology
Digital-Transformation-Roadmap-for-Companies.pptx
Approach and Philosophy of On baking technology
Spectral efficient network and resource selection model in 5G networks
Group 1 Presentation -Planning and Decision Making .pptx
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
The Rise and Fall of 3GPP – Time for a Sabbatical?

Using SharePoint's Geolocation Field - SPSUK 2014

  • 1. Using SharePoint’s Geolocation Field Mark Stokes – SharePoint Saturday UK 2014
  • 2. Mark Stokes [MVP]  Red Plane  Microsoft Partner in North West UK  www.redplane.co.uk  @FlyRedPlane  Office 365, SharePoint, Azure, nopCommerce, Windows 8 Apps, Windows Phone Apps, iOS Apps, .Net  mark.stokes@redplane.co.uk  @MarkStokes  Interests: Travel, Technology, Photography, Raspberry Pi, Snowboarding, Wakeboaring, Running, Tough Mudder, My Dog - Hugo
  • 3. Agenda  What is the Geolocation Field?  Adding Geolocation Field  Bing Maps License  Creating a Map view  Geolocation field example scenarios
  • 4. What is the Geolocation Field?  SharePoint 2013 introduced a new field type named Geolocation that enables you to annotate SharePoint lists with location information.  In columns of type Geolocation, you can enter location information as a pair of latitude and longitude coordinates in decimal degrees or retrieve the coordinates of the user’s current location from the browser if it implements the W3C Geolocation API.  In the list, SharePoint 2013 displays the location on a map powered by Bing Maps.  A new view named Map View displays the list items as pushpins on a Bing Maps Ajax control V7 with the list items as cards on the left pane.  Together, the Geolocation field and the Map View enable you to give a spatial context to any information by integrating data from SharePoint into a mapping experience, and let your users engage in new ways in your web and mobile apps and solutions.
  • 5. SP2013 On-Premises – Pre-Requisites  An MSI package named SQLSysClrTypes.msi must be installed on every SharePoint front-end web server to view the geolocation field value or data in a list.  This package installs components that implement the new geometry, geography, and hierarchy ID types in SQL Server 2008.  By default, this file is installed for SharePoint Online. However, it is not for an on-premises deployment of SharePoint Server 2013.  You must be a member of the Farm Administrators group to perform this operation.  http://msdn.microsoft.com/en-us/library/office/jj163135(v=office.15).aspx
  • 6. Enabling the Geolocation Field  Bing Maps License Key - https://www.bingmapsportal.com  To set the Bing Maps key at the farm level using Windows PowerShell  Set-SPBingMapsKey –BingKey "<Enter a valid Bing Maps key>”  When you use Windows PowerShell, the Bing Maps key can be set only at the farm level. If you want to set the Bing Maps key at the web level, you can set the key programmatically.
  • 7. Enabling the Geolocation Field  To set the Bing Maps key at the web level using custom code (C#) class Program { static void Main(string[] args) { SetBingMapsKey(); Console.WriteLine("Bing Maps set successfully"); } static private void SetBingMapsKey() { ClientContext context = new ClientContext("<Site Url>"); Web web = context.Web; web.AllProperties["BING_MAPS_KEY"] = "<Valid Bing Maps Key>” web.Update(); context.ExecuteQuery(); } }
  • 8. Enabling the Geolocation Field  To set the Bing Maps key at the web level using custom code (JavaScript) function SetBingKey() { clientContext = new SP.ClientContext([Relative Web Address]); var web = clientContext.get_web(); var webProperties = web.get_allProperties(); webProperties.set_item("BING_MAPS_KEY", “[Enter Bing Maps Key here]”); web.update(); clientContext.load(web); clientContext.executeQueryAsync(function (sender, args) { alert("You have successfully entered BING map key on "+ web.get_title() + " site”); }, function (sender, args) { alert("Error: ” + args.get_message()); }); }
  • 9. Map View  A Map View is a SharePoint view that displays a map (with data obtained from the Bing Maps service), using longitude and latitude entries from the Geolocation field type.  When the Geolocation field type is available on the SharePoint list, a map view can be created wither programmatically or from the SharePoint UI.  In the list, SharePoint 2013 displays the location on a map powered by Bing Maps.  In additions, a new view type named Map View displays the list items as pushpins on a Bing Maps Ajax control V7 with the list items as card on the left pane.
  • 10. Map View  A map view provides three colors of pushpins, each of which provides a difference user experience. A pushpin on the map has the same color as the pushpin of the matching item in the left pane.  Orange Indicates that the Geolocation field for the item is mapped with the Bing Maps services.  Grey Indicates that the Geolocation field for the item is empty. The item cannot be mapped with Bing Maps services, so no pushpin for this item appears on the map.  Blue When a user hovers over a list item, the pushpin color changes from orange to blue. Both the pushpin in the left pane and the matching pushpin on the map change color
  • 11. Create a Map View Programmatically class Program { static void Main(string[] args) { CreateMapView (); Console.WriteLine("A map view is created successfully"); } private static void CreateMapView() { // Replace <Site URL> and <List Title> with valid values. ClientContext context = new ClientContext("<Site Url>"); List oList = context.Web.Lists.GetByTitle("<List Title>"); ViewCreationInformation viewCreationinfo = new ViewCreationInformation(); // Replace <View Name> with the name you want for your map view. viewCreationinfo.Title = "<View Name>"; viewCreationinfo.ViewTypeKind = ViewType.Html; View oView = oList.Views.Add(viewCreationinfo); oView.JSLink = "mapviewtemplate.js"; oView.Update(); context.ExecuteQuery(); } }
  • 12. Extending the Geoloaction field in a Content Query Webpart  Shows how to show the Map in a Content Query Web Part  Gives some good examples on changing the format of the Map View, such as zoom level http://pafederwitz.wordpress.com/2014/08/19/using-cqwp-to-display-sharepoint- geolocation-field/
  • 13. Geolocation field example scenarios  Councils - Pot Hole reporting  Construction company / Oil rig – Health and Safety reporting  Logistics – vehicle tracking  Customer location heat maps  Statistical Reporting  Photo location Tagging  Office Locations  Power BI?
  • 14. Power Map  Excel Formulas:  Lattitude: =MID(F2,FIND(" ",F2,10), FIND(")",F2) - FIND(" ",F2,10))  Longitude: =MID(F2,8,FIND(" ",F2,10)-8)
  • 15. Geolocation “niggly” bits  Field is not indexed by search  Cannot “paste” list data into Quick Edit mode  Bing Maps only  You have to pay for a Bing Maps license
  • 16. Links  Integrating location and map functionality in SharePoint 2013  http://msdn.microsoft.com/en-us/library/office/jj163135(v=office.15).aspx  Create a map view for the Geolocation field in SharePoint 2013  http://msdn.microsoft.com/en-us/library/office/jj656773(v=office.15).aspx  Getting started with the new Geolocation field in SharePoint 2013  http://zimmergren.net/technical/sp-2013-getting-started-with-the-new-geolocation-field-in-sharepoint-2013  Add a GeoLocation Field to SharePoint Online using PowerShell  http://sharepointryan.com/2013/08/12/add-a-geolocation-field-to-sharepoint-online-using-powershell/  Geolocation field in SharePoint 2013  http://www.sharepoint2013.me/Blog/Post/146/Geolocation-field-in-SharePoint-2013  Using Content Query Web Part to display SharePoint Geolocation Field  http://pafederwitz.wordpress.com/2014/08/19/using-cqwp-to-display-sharepoint-geolocation-field/
  • 17. Thank You to Our Sponsors!