SlideShare a Scribd company logo
1 of 27
Building a Better (Campus) Map
Better campus mapping - coming soon to a campus near you.
Aaron Knight • SUNY College of Environmental Science and Forestry • #heweb16 #dpa1 • @farktal
Building a Better Campus Map
Welcome!
Today’s Agenda:
Background
Fixing Data on Map
Services
Easy Interactive Maps
Some Background
2007
2008-2013
2013-Present
Perpetually in beta, Google style. Live: www.esf.edu/maps/beta/
Let’s Talk About Data
Let’s Talk About Data
Major services to worry about:
Google MapMaker (and Places, Plus,
and Maps)
OpenStreetMap
HERE
Each service has its… quirks.
Let’s Talk About Data
Data Overload
Major data sources have required a
great deal of cleanup.
Especially a problem with published
full directories.
Lots of Inputs
Some of them are even good.
Image from “Apple made a bad move replacing Google Maps on iOS 6” - It’s A Gadget. https://www.itsagadget.com/2012/09/apple-google-maps-ios-6.html
The Google-Sphere
Maps, Map Maker, Local, Plus, Oh My!
Google Logo from googleblog.blogspot.com/2015/09/google-update.html - Service screenshots from September 2015.
The Google-Sphere
You might have heard of Google Map Maker before…
Image from Ars Technica “Google temporarily shuts down Map Maker due to vandalism.” http://arstechnica.com/gadgets/2015/05/google-temporarily-shuts-down-map-maker-due-to-vandalism/
The Google-Sphere
Google Maps is fed by several sources:
Maps (user error reports)
Map Maker
Places
Plus
Internal staff
…the combination of which is far from
perfect.
Google Maps - iOS app icon. Map source: Google Maps
The Google-Sphere
Fastest way to fix map information?
Google Map Maker
Fastest way to fix POIs?
Google Local places (if claimed)
Google Map Maker if not.
The Google-Sphere
Setbacks may occur.
I wish I was kidding.
OpenStreetMap
Where the WikiPedia Model Meets Mapping
OpenStreetMap
OpenStreetMap is important because…
Used for Facebook, Apple Maps,
Foursquare, Craigslist
No real moderation.
It’s really easy to work with for your
own purposes.
www.openstreetmap.org
Now What?
This isn’t another of those “other duties as assigned,” is it?
Now What?
Stay on top of changes
Check in sporadically
Find out when data sources drop
Update as your campus changes
Let’s Build Something
Play with it: www.esf.edu/maps/beta/
Introducing Leaflet
Leaflet
leafletjs.com
Open-Source
Lightweight and Mobile Friendly
Extensible
Plugins
Leaflet-providers
Awesome-Markers
many, many more
Hello, World
Adapted from LeafletJS Quick Start (http://leafletjs.com/examples/quick-start.html)
<link rel="stylesheet"
href="https://unpkg.com/leaflet@1.0.0/dist/leaflet.css" />
<script
src="https://unpkg.com/leaflet@1.0.0/dist/leaflet.js"></script>
<div id="map" style="width: 100%; height: 500px"></div>
<script>
var map = L.map('map').setView([43.03467, -76.13754], 16);
L.tileLayer(‘https://api.mapbox.com/styles/v1/mapbox/stree
ts-v9/tiles/256/{z}/{x}/{y}?access_token=p{token}', {
attribution: ‘{attribution}’,
maxZoom: 18,
accessToken: ‘{token}’
}).addTo(map);
var popup = L.popup();
function onMapClick(e) {
popup
.setLatLng(e.latlng)
.setContent("You clicked the map at " +
e.latlng.toString())
.openOn(map);
}
map.on('click', onMapClick);
</script>
Using Providers
Full previews of available free* tile
layers:
http://leaflet-extras.github.io/leaflet-
providers/preview/index.html
<link rel="stylesheet"
href="https://unpkg.com/leaflet@1.0.0/dist/leaflet.css" />
<script
src="https://unpkg.com/leaflet@1.0.0/dist/leaflet.js"></script>
<div id="map" style="width: 100%; height: 500px"></div>
<script type="text/javascript" src="leaflet-
providers.js"></script>
<script>
var map = L.map('map').setView([43.03467, -76.13754], 16);
var tilelayer = new
L.TileLayer.Provider("OpenStreetMap.Mapnik");
map.addLayer(tilelayer);
</script>
* some require registration
Location Detection
Location detection works best on mobile.
<link rel="stylesheet"
href="https://unpkg.com/leaflet@1.0.0/dist/leaflet.css" />
<script
src="https://unpkg.com/leaflet@1.0.0/dist/leaflet.js"></script>
<div id="map" style="width: 100%; height: 500px"></div>
<script type="text/javascript" src="leaflet-
providers.js"></script>
<script>
var map = L.map('map').setView([43.03467, -76.13754], 16);
var tilelayer = new
L.TileLayer.Provider("OpenStreetMap.Mapnik");
map.addLayer(tilelayer);
function onLocationFound(e) {
var radius = e.accuracy / 2;
L.marker(e.latlng).addTo(map)
.bindPopup("You are (approximately)
here.").openPopup();
}
map.on('locationfound', onLocationFound);
map.locate({maxZoom: 16});
</script>
Polygons and Markers
var upgate = L.marker([43.0358, -76.13807], {icon:
L.AwesomeMarkers.icon({icon: 'icon-info-sign', color:
'blue'})}).bindPopup("<strong>ESF Campus
Entrance</strong><br>Visitor Entrance and Information");
var pois = L.layerGroup([upgate]);
var moon = L.polygon([
[43.03498, -76.13661],
[43.03498, -76.13609],
[43.03446, -76.13609],
[43.03446, -76.13661]
], {
color: buildingFill,
fillColor: buildingFill,
fillOpacity: 0.5,
weight: 0
})
.bindPopup("<strong>F. Franklin Moon
Library</strong><br><a target='_blank'
href='http://www.esf.edu/welcome/campus/moon.htm'>Campus
Tour</a>");
Finishing Touches
Find your best tile layer.
MapBox tiles are a great choice if you
have a budget
That’s All, Folks!
Questions?
Contact Information
Aaron Knight
Senior Programmer/Analyst
Information Systems, SUNY-ESF
@farktal on Twitter
acknight@esf.edu
Slides: www.acknight.com/speaking/
Also all of the code samples you saw
today.

More Related Content

Viewers also liked

That is Not My Job
That is Not My JobThat is Not My Job
That is Not My JobRobin Smail
 
Events in Stereo: How to help your events and campaigns succeed #heweb16 #mcs3
Events in Stereo: How to help your events and campaigns succeed #heweb16 #mcs3Events in Stereo: How to help your events and campaigns succeed #heweb16 #mcs3
Events in Stereo: How to help your events and campaigns succeed #heweb16 #mcs3Tiffany Beker
 
You Broke It, You Bought It
You Broke It, You Bought ItYou Broke It, You Bought It
You Broke It, You Bought ItTim Senft
 
S.I.F.T. Through Your Content For Accessibility
S.I.F.T. Through Your Content For AccessibilityS.I.F.T. Through Your Content For Accessibility
S.I.F.T. Through Your Content For AccessibilityJustin Gatewood
 
Nailing Pinterest: It's Not All Wedding Dresses and Desserts
Nailing Pinterest: It's Not All Wedding Dresses and DessertsNailing Pinterest: It's Not All Wedding Dresses and Desserts
Nailing Pinterest: It's Not All Wedding Dresses and DessertsJackie Vetrano
 
"No, YOU'RE Crying": How Two Schools Turned a Cinderella Experience into Soci...
"No, YOU'RE Crying": How Two Schools Turned a Cinderella Experience into Soci..."No, YOU'RE Crying": How Two Schools Turned a Cinderella Experience into Soci...
"No, YOU'RE Crying": How Two Schools Turned a Cinderella Experience into Soci...Chris D'Orso
 
Get Hooked on Integrations with GitHub
Get Hooked on Integrations with GitHubGet Hooked on Integrations with GitHub
Get Hooked on Integrations with GitHubChris Thomas
 
Higher Ed Governance for the Real World
Higher Ed Governance for the Real WorldHigher Ed Governance for the Real World
Higher Ed Governance for the Real WorldRachel DeLauder
 
Digital hoarding is driving away users and killing conversion
Digital hoarding is driving away users and killing conversionDigital hoarding is driving away users and killing conversion
Digital hoarding is driving away users and killing conversionKate Wehner
 
The New Analytics of Web Governance
The New Analytics of Web GovernanceThe New Analytics of Web Governance
The New Analytics of Web GovernanceShane Diffily
 
Web Governance in Higher Education
Web Governance in Higher EducationWeb Governance in Higher Education
Web Governance in Higher EducationShane Diffily
 
Using the Web Arms Race to your advantage - sell more via a better site :)
Using the Web Arms Race to your advantage - sell more via a better site :)Using the Web Arms Race to your advantage - sell more via a better site :)
Using the Web Arms Race to your advantage - sell more via a better site :)Shane Diffily
 
A New Framework for Web Governance
A New Framework for Web GovernanceA New Framework for Web Governance
A New Framework for Web GovernanceShane Diffily
 
Hello from the Other Side: Painful Lessons Learned from a Website Redesign
Hello from the Other Side: Painful Lessons Learned from a Website RedesignHello from the Other Side: Painful Lessons Learned from a Website Redesign
Hello from the Other Side: Painful Lessons Learned from a Website Redesignlisacatto
 
Shall We Play a Game? Gaming the System, When the System Is Your Learning Man...
Shall We Play a Game? Gaming the System, When the System Is Your Learning Man...Shall We Play a Game? Gaming the System, When the System Is Your Learning Man...
Shall We Play a Game? Gaming the System, When the System Is Your Learning Man...Nikki Massaro Kauffman
 
Train the Trainer: Tips for Enhancing Employee Learning (Presented at HighEdW...
Train the Trainer: Tips for Enhancing Employee Learning (Presented at HighEdW...Train the Trainer: Tips for Enhancing Employee Learning (Presented at HighEdW...
Train the Trainer: Tips for Enhancing Employee Learning (Presented at HighEdW...Katie Santo
 
Getting it Right: What Really Matters to Students In Social Media Communities...
Getting it Right: What Really Matters to Students In Social Media Communities...Getting it Right: What Really Matters to Students In Social Media Communities...
Getting it Right: What Really Matters to Students In Social Media Communities...Corie Martin, Ed.D.
 
Managing Chaos - Digital Governance
Managing Chaos - Digital GovernanceManaging Chaos - Digital Governance
Managing Chaos - Digital GovernanceLisa Welchman
 

Viewers also liked (18)

That is Not My Job
That is Not My JobThat is Not My Job
That is Not My Job
 
Events in Stereo: How to help your events and campaigns succeed #heweb16 #mcs3
Events in Stereo: How to help your events and campaigns succeed #heweb16 #mcs3Events in Stereo: How to help your events and campaigns succeed #heweb16 #mcs3
Events in Stereo: How to help your events and campaigns succeed #heweb16 #mcs3
 
You Broke It, You Bought It
You Broke It, You Bought ItYou Broke It, You Bought It
You Broke It, You Bought It
 
S.I.F.T. Through Your Content For Accessibility
S.I.F.T. Through Your Content For AccessibilityS.I.F.T. Through Your Content For Accessibility
S.I.F.T. Through Your Content For Accessibility
 
Nailing Pinterest: It's Not All Wedding Dresses and Desserts
Nailing Pinterest: It's Not All Wedding Dresses and DessertsNailing Pinterest: It's Not All Wedding Dresses and Desserts
Nailing Pinterest: It's Not All Wedding Dresses and Desserts
 
"No, YOU'RE Crying": How Two Schools Turned a Cinderella Experience into Soci...
"No, YOU'RE Crying": How Two Schools Turned a Cinderella Experience into Soci..."No, YOU'RE Crying": How Two Schools Turned a Cinderella Experience into Soci...
"No, YOU'RE Crying": How Two Schools Turned a Cinderella Experience into Soci...
 
Get Hooked on Integrations with GitHub
Get Hooked on Integrations with GitHubGet Hooked on Integrations with GitHub
Get Hooked on Integrations with GitHub
 
Higher Ed Governance for the Real World
Higher Ed Governance for the Real WorldHigher Ed Governance for the Real World
Higher Ed Governance for the Real World
 
Digital hoarding is driving away users and killing conversion
Digital hoarding is driving away users and killing conversionDigital hoarding is driving away users and killing conversion
Digital hoarding is driving away users and killing conversion
 
The New Analytics of Web Governance
The New Analytics of Web GovernanceThe New Analytics of Web Governance
The New Analytics of Web Governance
 
Web Governance in Higher Education
Web Governance in Higher EducationWeb Governance in Higher Education
Web Governance in Higher Education
 
Using the Web Arms Race to your advantage - sell more via a better site :)
Using the Web Arms Race to your advantage - sell more via a better site :)Using the Web Arms Race to your advantage - sell more via a better site :)
Using the Web Arms Race to your advantage - sell more via a better site :)
 
A New Framework for Web Governance
A New Framework for Web GovernanceA New Framework for Web Governance
A New Framework for Web Governance
 
Hello from the Other Side: Painful Lessons Learned from a Website Redesign
Hello from the Other Side: Painful Lessons Learned from a Website RedesignHello from the Other Side: Painful Lessons Learned from a Website Redesign
Hello from the Other Side: Painful Lessons Learned from a Website Redesign
 
Shall We Play a Game? Gaming the System, When the System Is Your Learning Man...
Shall We Play a Game? Gaming the System, When the System Is Your Learning Man...Shall We Play a Game? Gaming the System, When the System Is Your Learning Man...
Shall We Play a Game? Gaming the System, When the System Is Your Learning Man...
 
Train the Trainer: Tips for Enhancing Employee Learning (Presented at HighEdW...
Train the Trainer: Tips for Enhancing Employee Learning (Presented at HighEdW...Train the Trainer: Tips for Enhancing Employee Learning (Presented at HighEdW...
Train the Trainer: Tips for Enhancing Employee Learning (Presented at HighEdW...
 
Getting it Right: What Really Matters to Students In Social Media Communities...
Getting it Right: What Really Matters to Students In Social Media Communities...Getting it Right: What Really Matters to Students In Social Media Communities...
Getting it Right: What Really Matters to Students In Social Media Communities...
 
Managing Chaos - Digital Governance
Managing Chaos - Digital GovernanceManaging Chaos - Digital Governance
Managing Chaos - Digital Governance
 

More from farktal

Finding Your Way - Campus Mapping and Big Data - #econfpsu16
Finding Your Way - Campus Mapping and Big Data - #econfpsu16Finding Your Way - Campus Mapping and Big Data - #econfpsu16
Finding Your Way - Campus Mapping and Big Data - #econfpsu16farktal
 
Finding Your Way - Big Data vs. Wayfinding On Your Campus - #heweb15 #aim7
Finding Your Way - Big Data vs. Wayfinding On Your Campus - #heweb15 #aim7Finding Your Way - Big Data vs. Wayfinding On Your Campus - #heweb15 #aim7
Finding Your Way - Big Data vs. Wayfinding On Your Campus - #heweb15 #aim7farktal
 
Finding Your Way (WRK6) - Post-Conference Workshop at HighEdWeb 2014
Finding Your Way (WRK6) - Post-Conference Workshop at HighEdWeb 2014Finding Your Way (WRK6) - Post-Conference Workshop at HighEdWeb 2014
Finding Your Way (WRK6) - Post-Conference Workshop at HighEdWeb 2014farktal
 
Fix All The (Map) Data - DPA4 at HighEdWeb 2014
Fix All The (Map) Data - DPA4 at HighEdWeb 2014Fix All The (Map) Data - DPA4 at HighEdWeb 2014
Fix All The (Map) Data - DPA4 at HighEdWeb 2014farktal
 
Managing Chapter Growth - Alpha Phi Omega Region I/II Conference Winter 2014
Managing Chapter Growth - Alpha Phi Omega Region I/II Conference Winter 2014Managing Chapter Growth - Alpha Phi Omega Region I/II Conference Winter 2014
Managing Chapter Growth - Alpha Phi Omega Region I/II Conference Winter 2014farktal
 
Adventures in campus mapping - HighEdWeb Florida 2013
Adventures in campus mapping - HighEdWeb Florida 2013Adventures in campus mapping - HighEdWeb Florida 2013
Adventures in campus mapping - HighEdWeb Florida 2013farktal
 
Fix All The (Map) Data! - HighEdWeb 2013 Workshop
Fix All The (Map) Data! - HighEdWeb 2013 WorkshopFix All The (Map) Data! - HighEdWeb 2013 Workshop
Fix All The (Map) Data! - HighEdWeb 2013 Workshopfarktal
 

More from farktal (7)

Finding Your Way - Campus Mapping and Big Data - #econfpsu16
Finding Your Way - Campus Mapping and Big Data - #econfpsu16Finding Your Way - Campus Mapping and Big Data - #econfpsu16
Finding Your Way - Campus Mapping and Big Data - #econfpsu16
 
Finding Your Way - Big Data vs. Wayfinding On Your Campus - #heweb15 #aim7
Finding Your Way - Big Data vs. Wayfinding On Your Campus - #heweb15 #aim7Finding Your Way - Big Data vs. Wayfinding On Your Campus - #heweb15 #aim7
Finding Your Way - Big Data vs. Wayfinding On Your Campus - #heweb15 #aim7
 
Finding Your Way (WRK6) - Post-Conference Workshop at HighEdWeb 2014
Finding Your Way (WRK6) - Post-Conference Workshop at HighEdWeb 2014Finding Your Way (WRK6) - Post-Conference Workshop at HighEdWeb 2014
Finding Your Way (WRK6) - Post-Conference Workshop at HighEdWeb 2014
 
Fix All The (Map) Data - DPA4 at HighEdWeb 2014
Fix All The (Map) Data - DPA4 at HighEdWeb 2014Fix All The (Map) Data - DPA4 at HighEdWeb 2014
Fix All The (Map) Data - DPA4 at HighEdWeb 2014
 
Managing Chapter Growth - Alpha Phi Omega Region I/II Conference Winter 2014
Managing Chapter Growth - Alpha Phi Omega Region I/II Conference Winter 2014Managing Chapter Growth - Alpha Phi Omega Region I/II Conference Winter 2014
Managing Chapter Growth - Alpha Phi Omega Region I/II Conference Winter 2014
 
Adventures in campus mapping - HighEdWeb Florida 2013
Adventures in campus mapping - HighEdWeb Florida 2013Adventures in campus mapping - HighEdWeb Florida 2013
Adventures in campus mapping - HighEdWeb Florida 2013
 
Fix All The (Map) Data! - HighEdWeb 2013 Workshop
Fix All The (Map) Data! - HighEdWeb 2013 WorkshopFix All The (Map) Data! - HighEdWeb 2013 Workshop
Fix All The (Map) Data! - HighEdWeb 2013 Workshop
 

Recently uploaded

Introduction to Artificial intelligence.
Introduction to Artificial intelligence.Introduction to Artificial intelligence.
Introduction to Artificial intelligence.thamaeteboho94
 
Dreaming Marissa Sánchez Music Video Treatment
Dreaming Marissa Sánchez Music Video TreatmentDreaming Marissa Sánchez Music Video Treatment
Dreaming Marissa Sánchez Music Video Treatmentnswingard
 
Proofreading- Basics to Artificial Intelligence Integration - Presentation:Sl...
Proofreading- Basics to Artificial Intelligence Integration - Presentation:Sl...Proofreading- Basics to Artificial Intelligence Integration - Presentation:Sl...
Proofreading- Basics to Artificial Intelligence Integration - Presentation:Sl...David Celestin
 
SOLID WASTE MANAGEMENT SYSTEM OF FENI PAURASHAVA, BANGLADESH.pdf
SOLID WASTE MANAGEMENT SYSTEM OF FENI PAURASHAVA, BANGLADESH.pdfSOLID WASTE MANAGEMENT SYSTEM OF FENI PAURASHAVA, BANGLADESH.pdf
SOLID WASTE MANAGEMENT SYSTEM OF FENI PAURASHAVA, BANGLADESH.pdfMahamudul Hasan
 
Jual obat aborsi Jakarta 085657271886 Cytote pil telat bulan penggugur kandun...
Jual obat aborsi Jakarta 085657271886 Cytote pil telat bulan penggugur kandun...Jual obat aborsi Jakarta 085657271886 Cytote pil telat bulan penggugur kandun...
Jual obat aborsi Jakarta 085657271886 Cytote pil telat bulan penggugur kandun...ZurliaSoop
 
Zone Chairperson Role and Responsibilities New updated.pptx
Zone Chairperson Role and Responsibilities New updated.pptxZone Chairperson Role and Responsibilities New updated.pptx
Zone Chairperson Role and Responsibilities New updated.pptxlionnarsimharajumjf
 
Dreaming Music Video Treatment _ Project & Portfolio III
Dreaming Music Video Treatment _ Project & Portfolio IIIDreaming Music Video Treatment _ Project & Portfolio III
Dreaming Music Video Treatment _ Project & Portfolio IIINhPhngng3
 
Bring back lost lover in USA, Canada ,Uk ,Australia ,London Lost Love Spell C...
Bring back lost lover in USA, Canada ,Uk ,Australia ,London Lost Love Spell C...Bring back lost lover in USA, Canada ,Uk ,Australia ,London Lost Love Spell C...
Bring back lost lover in USA, Canada ,Uk ,Australia ,London Lost Love Spell C...amilabibi1
 
Report Writing Webinar Training
Report Writing Webinar TrainingReport Writing Webinar Training
Report Writing Webinar TrainingKylaCullinane
 
lONG QUESTION ANSWER PAKISTAN STUDIES10.
lONG QUESTION ANSWER PAKISTAN STUDIES10.lONG QUESTION ANSWER PAKISTAN STUDIES10.
lONG QUESTION ANSWER PAKISTAN STUDIES10.lodhisaajjda
 
My Presentation "In Your Hands" by Halle Bailey
My Presentation "In Your Hands" by Halle BaileyMy Presentation "In Your Hands" by Halle Bailey
My Presentation "In Your Hands" by Halle Baileyhlharris
 
Unlocking Exploration: Self-Motivated Agents Thrive on Memory-Driven Curiosity
Unlocking Exploration: Self-Motivated Agents Thrive on Memory-Driven CuriosityUnlocking Exploration: Self-Motivated Agents Thrive on Memory-Driven Curiosity
Unlocking Exploration: Self-Motivated Agents Thrive on Memory-Driven CuriosityHung Le
 
Uncommon Grace The Autobiography of Isaac Folorunso
Uncommon Grace The Autobiography of Isaac FolorunsoUncommon Grace The Autobiography of Isaac Folorunso
Uncommon Grace The Autobiography of Isaac FolorunsoKayode Fayemi
 
AWS Data Engineer Associate (DEA-C01) Exam Dumps 2024.pdf
AWS Data Engineer Associate (DEA-C01) Exam Dumps 2024.pdfAWS Data Engineer Associate (DEA-C01) Exam Dumps 2024.pdf
AWS Data Engineer Associate (DEA-C01) Exam Dumps 2024.pdfSkillCertProExams
 
Digital collaboration with Microsoft 365 as extension of Drupal
Digital collaboration with Microsoft 365 as extension of DrupalDigital collaboration with Microsoft 365 as extension of Drupal
Digital collaboration with Microsoft 365 as extension of DrupalFabian de Rijk
 

Recently uploaded (17)

Introduction to Artificial intelligence.
Introduction to Artificial intelligence.Introduction to Artificial intelligence.
Introduction to Artificial intelligence.
 
ICT role in 21st century education and it's challenges.pdf
ICT role in 21st century education and it's challenges.pdfICT role in 21st century education and it's challenges.pdf
ICT role in 21st century education and it's challenges.pdf
 
Dreaming Marissa Sánchez Music Video Treatment
Dreaming Marissa Sánchez Music Video TreatmentDreaming Marissa Sánchez Music Video Treatment
Dreaming Marissa Sánchez Music Video Treatment
 
Proofreading- Basics to Artificial Intelligence Integration - Presentation:Sl...
Proofreading- Basics to Artificial Intelligence Integration - Presentation:Sl...Proofreading- Basics to Artificial Intelligence Integration - Presentation:Sl...
Proofreading- Basics to Artificial Intelligence Integration - Presentation:Sl...
 
SOLID WASTE MANAGEMENT SYSTEM OF FENI PAURASHAVA, BANGLADESH.pdf
SOLID WASTE MANAGEMENT SYSTEM OF FENI PAURASHAVA, BANGLADESH.pdfSOLID WASTE MANAGEMENT SYSTEM OF FENI PAURASHAVA, BANGLADESH.pdf
SOLID WASTE MANAGEMENT SYSTEM OF FENI PAURASHAVA, BANGLADESH.pdf
 
Jual obat aborsi Jakarta 085657271886 Cytote pil telat bulan penggugur kandun...
Jual obat aborsi Jakarta 085657271886 Cytote pil telat bulan penggugur kandun...Jual obat aborsi Jakarta 085657271886 Cytote pil telat bulan penggugur kandun...
Jual obat aborsi Jakarta 085657271886 Cytote pil telat bulan penggugur kandun...
 
Zone Chairperson Role and Responsibilities New updated.pptx
Zone Chairperson Role and Responsibilities New updated.pptxZone Chairperson Role and Responsibilities New updated.pptx
Zone Chairperson Role and Responsibilities New updated.pptx
 
Dreaming Music Video Treatment _ Project & Portfolio III
Dreaming Music Video Treatment _ Project & Portfolio IIIDreaming Music Video Treatment _ Project & Portfolio III
Dreaming Music Video Treatment _ Project & Portfolio III
 
Bring back lost lover in USA, Canada ,Uk ,Australia ,London Lost Love Spell C...
Bring back lost lover in USA, Canada ,Uk ,Australia ,London Lost Love Spell C...Bring back lost lover in USA, Canada ,Uk ,Australia ,London Lost Love Spell C...
Bring back lost lover in USA, Canada ,Uk ,Australia ,London Lost Love Spell C...
 
Report Writing Webinar Training
Report Writing Webinar TrainingReport Writing Webinar Training
Report Writing Webinar Training
 
lONG QUESTION ANSWER PAKISTAN STUDIES10.
lONG QUESTION ANSWER PAKISTAN STUDIES10.lONG QUESTION ANSWER PAKISTAN STUDIES10.
lONG QUESTION ANSWER PAKISTAN STUDIES10.
 
My Presentation "In Your Hands" by Halle Bailey
My Presentation "In Your Hands" by Halle BaileyMy Presentation "In Your Hands" by Halle Bailey
My Presentation "In Your Hands" by Halle Bailey
 
Unlocking Exploration: Self-Motivated Agents Thrive on Memory-Driven Curiosity
Unlocking Exploration: Self-Motivated Agents Thrive on Memory-Driven CuriosityUnlocking Exploration: Self-Motivated Agents Thrive on Memory-Driven Curiosity
Unlocking Exploration: Self-Motivated Agents Thrive on Memory-Driven Curiosity
 
Uncommon Grace The Autobiography of Isaac Folorunso
Uncommon Grace The Autobiography of Isaac FolorunsoUncommon Grace The Autobiography of Isaac Folorunso
Uncommon Grace The Autobiography of Isaac Folorunso
 
in kuwait௹+918133066128....) @abortion pills for sale in Kuwait City
in kuwait௹+918133066128....) @abortion pills for sale in Kuwait Cityin kuwait௹+918133066128....) @abortion pills for sale in Kuwait City
in kuwait௹+918133066128....) @abortion pills for sale in Kuwait City
 
AWS Data Engineer Associate (DEA-C01) Exam Dumps 2024.pdf
AWS Data Engineer Associate (DEA-C01) Exam Dumps 2024.pdfAWS Data Engineer Associate (DEA-C01) Exam Dumps 2024.pdf
AWS Data Engineer Associate (DEA-C01) Exam Dumps 2024.pdf
 
Digital collaboration with Microsoft 365 as extension of Drupal
Digital collaboration with Microsoft 365 as extension of DrupalDigital collaboration with Microsoft 365 as extension of Drupal
Digital collaboration with Microsoft 365 as extension of Drupal
 

Building a Better (Campus) Map - #DPA1 at #heweb16

  • 1. Building a Better (Campus) Map Better campus mapping - coming soon to a campus near you. Aaron Knight • SUNY College of Environmental Science and Forestry • #heweb16 #dpa1 • @farktal
  • 2. Building a Better Campus Map Welcome! Today’s Agenda: Background Fixing Data on Map Services Easy Interactive Maps
  • 6. 2013-Present Perpetually in beta, Google style. Live: www.esf.edu/maps/beta/
  • 8. Let’s Talk About Data Major services to worry about: Google MapMaker (and Places, Plus, and Maps) OpenStreetMap HERE Each service has its… quirks.
  • 9. Let’s Talk About Data Data Overload Major data sources have required a great deal of cleanup. Especially a problem with published full directories. Lots of Inputs Some of them are even good. Image from “Apple made a bad move replacing Google Maps on iOS 6” - It’s A Gadget. https://www.itsagadget.com/2012/09/apple-google-maps-ios-6.html
  • 10. The Google-Sphere Maps, Map Maker, Local, Plus, Oh My! Google Logo from googleblog.blogspot.com/2015/09/google-update.html - Service screenshots from September 2015.
  • 11. The Google-Sphere You might have heard of Google Map Maker before… Image from Ars Technica “Google temporarily shuts down Map Maker due to vandalism.” http://arstechnica.com/gadgets/2015/05/google-temporarily-shuts-down-map-maker-due-to-vandalism/
  • 12. The Google-Sphere Google Maps is fed by several sources: Maps (user error reports) Map Maker Places Plus Internal staff …the combination of which is far from perfect. Google Maps - iOS app icon. Map source: Google Maps
  • 13. The Google-Sphere Fastest way to fix map information? Google Map Maker Fastest way to fix POIs? Google Local places (if claimed) Google Map Maker if not.
  • 14. The Google-Sphere Setbacks may occur. I wish I was kidding.
  • 15. OpenStreetMap Where the WikiPedia Model Meets Mapping
  • 16. OpenStreetMap OpenStreetMap is important because… Used for Facebook, Apple Maps, Foursquare, Craigslist No real moderation. It’s really easy to work with for your own purposes. www.openstreetmap.org
  • 17. Now What? This isn’t another of those “other duties as assigned,” is it?
  • 18. Now What? Stay on top of changes Check in sporadically Find out when data sources drop Update as your campus changes
  • 20. Play with it: www.esf.edu/maps/beta/
  • 21. Introducing Leaflet Leaflet leafletjs.com Open-Source Lightweight and Mobile Friendly Extensible Plugins Leaflet-providers Awesome-Markers many, many more
  • 22. Hello, World Adapted from LeafletJS Quick Start (http://leafletjs.com/examples/quick-start.html) <link rel="stylesheet" href="https://unpkg.com/leaflet@1.0.0/dist/leaflet.css" /> <script src="https://unpkg.com/leaflet@1.0.0/dist/leaflet.js"></script> <div id="map" style="width: 100%; height: 500px"></div> <script> var map = L.map('map').setView([43.03467, -76.13754], 16); L.tileLayer(‘https://api.mapbox.com/styles/v1/mapbox/stree ts-v9/tiles/256/{z}/{x}/{y}?access_token=p{token}', { attribution: ‘{attribution}’, maxZoom: 18, accessToken: ‘{token}’ }).addTo(map); var popup = L.popup(); function onMapClick(e) { popup .setLatLng(e.latlng) .setContent("You clicked the map at " + e.latlng.toString()) .openOn(map); } map.on('click', onMapClick); </script>
  • 23. Using Providers Full previews of available free* tile layers: http://leaflet-extras.github.io/leaflet- providers/preview/index.html <link rel="stylesheet" href="https://unpkg.com/leaflet@1.0.0/dist/leaflet.css" /> <script src="https://unpkg.com/leaflet@1.0.0/dist/leaflet.js"></script> <div id="map" style="width: 100%; height: 500px"></div> <script type="text/javascript" src="leaflet- providers.js"></script> <script> var map = L.map('map').setView([43.03467, -76.13754], 16); var tilelayer = new L.TileLayer.Provider("OpenStreetMap.Mapnik"); map.addLayer(tilelayer); </script> * some require registration
  • 24. Location Detection Location detection works best on mobile. <link rel="stylesheet" href="https://unpkg.com/leaflet@1.0.0/dist/leaflet.css" /> <script src="https://unpkg.com/leaflet@1.0.0/dist/leaflet.js"></script> <div id="map" style="width: 100%; height: 500px"></div> <script type="text/javascript" src="leaflet- providers.js"></script> <script> var map = L.map('map').setView([43.03467, -76.13754], 16); var tilelayer = new L.TileLayer.Provider("OpenStreetMap.Mapnik"); map.addLayer(tilelayer); function onLocationFound(e) { var radius = e.accuracy / 2; L.marker(e.latlng).addTo(map) .bindPopup("You are (approximately) here.").openPopup(); } map.on('locationfound', onLocationFound); map.locate({maxZoom: 16}); </script>
  • 25. Polygons and Markers var upgate = L.marker([43.0358, -76.13807], {icon: L.AwesomeMarkers.icon({icon: 'icon-info-sign', color: 'blue'})}).bindPopup("<strong>ESF Campus Entrance</strong><br>Visitor Entrance and Information"); var pois = L.layerGroup([upgate]); var moon = L.polygon([ [43.03498, -76.13661], [43.03498, -76.13609], [43.03446, -76.13609], [43.03446, -76.13661] ], { color: buildingFill, fillColor: buildingFill, fillOpacity: 0.5, weight: 0 }) .bindPopup("<strong>F. Franklin Moon Library</strong><br><a target='_blank' href='http://www.esf.edu/welcome/campus/moon.htm'>Campus Tour</a>");
  • 26. Finishing Touches Find your best tile layer. MapBox tiles are a great choice if you have a budget
  • 27. That’s All, Folks! Questions? Contact Information Aaron Knight Senior Programmer/Analyst Information Systems, SUNY-ESF @farktal on Twitter acknight@esf.edu Slides: www.acknight.com/speaking/ Also all of the code samples you saw today.

Editor's Notes

  1. There are plugins to improve accuracy. SetView:false broken in 1.0 Some browsers now require this to be hosted over SSL to work.
  2. MapBox tiles - free for 50k views/month, inexpensive beyond that