OpenLayers: Open Source Map Browser

Size: px
Start display at page:

Download "OpenLayers: Open Source Map Browser"

Transcription

1 OpenLayers: Open Source Map Browser July 12, 2008 Introduction Outline OpenLayers Features, history, components Code example Types and integration of data layers Conclusion 1

2 History! "! )./ - DE #! $ # % &' ( ' ) * +, -! "! 1 = 0 MN OPQ5 X]^_VZ` 789 :9;< 2345.,,6 C JKL \ FGHII AB V WXYZ[ +R5, 5 6STTU abbc Introduction: The Web 2.0 idea d an emerging change in paradigm in what the World Wide Web is and how it works -> Participation. d implies conceptual, technical and social aspects. Web as platform Participation Content syndication Web services Geoweb Conceptual & social Web 2.0 XML RSS JavaScript AJAX API Technical 2

3 GeoWeb the Geo part of Web 2.0 d merging of geographical (location-based) information with the abstract information of traditional web sites. d Huge amount of data available d High interest on tools like Google Map API d Geotagging: d On the Flickr photo-sharing service users have geotagged more than 25 million pictures, providing location data that allows them to be viewed on a map or through 3-D visualization software like Google Earth. 1 effghiijjjklmfnopqkrsoituuviuvitvifprelswsxmitvoygqkefowz { } ~s p } qwsxnl What is OpenLayers? d an API for building web mapping applications, d pure client-side object-oriented JavaScript, using components from Prototype.js and the Rico library d AJAX (Asynchronous JavaScript and XML) d supports open and proprietary data standards / sources d efficient tiling d BSD licensed (standard licence for open source software, see 3

4 History of the Project Started after Where 2.0 conference in 2005 Motivated also by MetaCarta's business needs released before Where 2.0 conference in 2006 already a large user base has already graduated Open Source Geospatial Foundation incubation. ƒ ˆ Š ˆ Š Œ Š Ž ƒ Š ˆ Š ƒ Ž Œ ˆ Š ƒ Šš ƒ ƒ Š OpenLayers - Intro Details d library for web mapping applications d pure client-side JavaScript d supports open standards d plays well with others 4

5 Creating the Map Viewer <html> <head> <title>openlayers Example</title> <script src=" </script> <script defer="defer" type="text/javascript"> function init() { } </script> </head> <body onload=init()> <div style="width: 800px; height: 475px" id="map">hello My Map</div> </body> </html> example1 Creating the Map Viewer var map = new OpenLayers.Map('map'); var wms = new OpenLayers.Layer.WMS("OpenLayers WMS"," ); map.addlayer(wms); map.zoomtomaxextent(); Example2 5

6 Customize your Map var lon = ; var lat = 34.7; var zoom = 5; map.setcenter(new OpenLayers.LonLat(lon, lat), zoom); * Remark Please remove map.zoomtomaxextent(); if it is exists. Example3 Add Layer Switcher Control map.addcontrol( new OpenLayers.Control.LayerSwitcher() ); Example4 6

7 Access to spatial data using Web Services œ ž ª «œ ž œ ž Ÿ œ ž Adding an Overlay WMS var osaka = new OpenLayers.Layer.WMS( "Osaka", " { layers: 'mizu,tatemono', transparent: 'true', format: 'png'} ); map.addlayer(osaka); Example5 7

8 What is GML? Scope ± The Geography Markup Language is ² a modeling language for geographic information ² an encoding for geographic information ² designed for the web and web-based services Bridge Feature GML Example Span = 100 Height =500 <Bridge> <span>100</span> x=100,y=200 <height>500</height> <gml:centerlineof> <gml:linestring> <gml:pos> </gml:pos> <gml:pos> </gml:pos> </gml:linestring> </gml:centerlineof> </Bridge> x=200,y=200 8

9 Add GML data Add Drawing tools var gml = new OpenLayers.Layer.GML("GML", "pop.gml"); map.addlayer(gml); vlayer = new OpenLayers.Layer.Vector( "Editable" ); map.addlayer(vlayer); map.addcontrol(new OpenLayers.Control.EditingToolbar(vlayer)); Example7 Add Point feature from text file lon lat title description icon Kobe <font color='red'>kobe city</font> Temple Temple in Kyoto <img src=' var pointtxt = new OpenLayers.Layer.Text( "text", {location: "./textfile.txt"} ); map.addlayer(pointtxt); Example8 9

10 Add Overview Map Adjust Zoom tool bar map.addcontrol(new OpenLayers.Control.OverviewMap()); map.addcontrol(new OpenLayers.Control.PanZoomBar()); *Remark Please change var map = new OpenLayers.Map('map'); To var map = new OpenLayers.Map('map', { controls: [new OpenLayers.Control.MouseDefaults()], 'numzoomlevels':20}); Example9 Add Google Map Data <script src=" _L2MHeCbWWKoMeLmohSrkdqoP7G5FXyU4DCLKkbXsj6a0RRi18hXfffzn 32qIMH0OMdfFQ7A3w" type="text/javascript"></script> var satellite = new OpenLayers.Layer.Google( "Google Satellite", {type: G_SATELLITE_MAP, 'maxzoomlevel':18} ); map.addlayers([satellite]); Example10 10

11 Conclusion ³ GeoWeb merges locational with other web content. ³ Driven by users. ³ Several emerging geo-standards developed by general IT stakeholders (GeoRSS, KML). ³ OpenLayers is a promising Open Source web mapping client API.. ³ OpenLayers is capable to integrate many data resources and formats. ³ Powerful, easy to understand and to use. OpenLayers Download and Tutorial OpenLayers Download Tutorial More Examples 11

X Slippy Maps. (...and Scott Davis)

X Slippy Maps. (...and Scott Davis) X Slippy Maps (...and Scott Davis) 1 2 Scott Davis 3 4 It was the best of times, it was the worst of times... 5 6 Ajax 7 Static Maps vs. Slippy Maps 8 9 10 Who is the OGC? The Open Geospatial Consortium

More information

GeoNURIS WebGIS Tutorial Cooperation & Communication International

GeoNURIS WebGIS Tutorial Cooperation & Communication International GeoNURIS WebGIS Tutorial 2011-11-07 by Cooperation & Communication International Table of Contents Foreword Part I Document Introduction 0 5 1 Terms... 5 2 Conventions... 5 3 Prerequisite... 6 Part II

More information

Lake Superior MapBuilder Demo Mapping Mashup Workshop Minnesota GIS/LIS Conference Duluth, Minnesota October 21, 2009

Lake Superior MapBuilder Demo Mapping Mashup Workshop Minnesota GIS/LIS Conference Duluth, Minnesota October 21, 2009 Lake Superior MapBuilder Demo Mapping Mashup Workshop Minnesota GIS/LIS Conference Duluth, Minnesota October 21, 2009 Background The purpose of this exercise is to build a web mapping site that integrates

More information

Extending the Functionality of the Client

Extending the Functionality of the Client Stefanakis, E., 2015. Web Mapping and Geospatial Web Services. CreateSpace Independent Publ. [In English], pp.168. Get a copy from Amazon Chapter 5 Extending the Functionality of the Client Emmanuel Stefanakis

More information

OpenLayers Workshop. Follow along with the demos at Thomas Wood OpenLayers User & Contributor

OpenLayers Workshop. Follow along with the demos at  Thomas Wood OpenLayers User & Contributor OpenLayers Workshop Follow along with the demos at http://sn.im/soc-ol-demos Thomas Wood OpenLayers User & Contributor SoC Summer School 09 Southampton Tuesday, 8th September What is OpenLayers? an Open

More information

Getting Started with the ArcGIS Server JavaScript API

Getting Started with the ArcGIS Server JavaScript API Getting Started with the ArcGIS Server JavaScript API Agenda Introduction ArcGIS Server services and mashups REST API Services Directory JavaScript API ArcGIS Server Resource Center Dojo Maps, layers,

More information

Upper Lake Michigan MapBuilder Demo GLOS Mapping Workshop Traverse City, Michigan November 11, 2009

Upper Lake Michigan MapBuilder Demo GLOS Mapping Workshop Traverse City, Michigan November 11, 2009 Upper Lake Michigan MapBuilder Demo GLOS Mapping Workshop Traverse City, Michigan November 11, 2009 Background The purpose of this exercise is to build a web mapping site that integrates different sources/formats

More information

Leveraging OGC Services in ArcGIS Server. Satish Sankaran, Esri Yingqi Tang, Esri

Leveraging OGC Services in ArcGIS Server. Satish Sankaran, Esri Yingqi Tang, Esri Leveraging OGC Services in ArcGIS Server Satish Sankaran, Esri Yingqi Tang, Esri GIS Creating and Managing Geo Information Products - Proprietary - Open Specifications - Standards Dissemination of Geo

More information

Delivering mapping solutions: the open source advantage

Delivering mapping solutions: the open source advantage Health and Mapping Delivering mapping solutions: the open source advantage Barry Rowlingson School of Health and Medicine, Lancaster University Note This PDF document is a conversion of the original animated

More information

BROWSER. LuciadRIA DATA SHEET

BROWSER. LuciadRIA DATA SHEET BROWSER LuciadRIA DATA SHEET V2017 V2017.0 DATA SHEET LuciadRIA is the answer to today s demands for powerful, lightweight applications in the browser. Driven by today s most advanced web technologies,

More information

Client-side Web Engineering 2 From XML to Client-side Mashups. SWE 642, Spring 2008 Nick Duan. February 6, What is XML?

Client-side Web Engineering 2 From XML to Client-side Mashups. SWE 642, Spring 2008 Nick Duan. February 6, What is XML? Client-side Web Engineering 2 From XML to Client-side Mashups SWE 642, Spring 2008 Nick Duan February 6, 2008 1 What is XML? XML extensible Markup Language Definition: XML is a markup language for documents

More information

Open Source Cloud Map User Guide

Open Source Cloud Map User Guide Open Source Cloud Map User Guide Table of Contents Map Page... 1 Static Mercator Map... 1 Customizable Map... 1 Title Bar... 2 Toolbar... 2 Non Toolbar Navigation... 3 Map Window... 3 Layers / Legend Window...

More information

Data Acquisition using Mashup and 3-D Technology. Matt Rahr College of Agriculture and Life Sciences University of Arizona

Data Acquisition using Mashup and 3-D Technology. Matt Rahr College of Agriculture and Life Sciences University of Arizona Data Acquisition using Mashup and 3-D Technology Matt Rahr College of Agriculture and Life Sciences University of Arizona Let s Do It! What is a Mashup? + Your Data A hybrid website or web application

More information

A ONE-STOP SERVICE HUB INTEGRATING ESSENTIAL WEATHER AND GEOPHYSICAL INFORMATION ON A GIS PLATFORM. Hong Kong Observatory

A ONE-STOP SERVICE HUB INTEGRATING ESSENTIAL WEATHER AND GEOPHYSICAL INFORMATION ON A GIS PLATFORM. Hong Kong Observatory A ONE-STOP SERVICE HUB INTEGRATING ESSENTIAL WEATHER AND GEOPHYSICAL INFORMATION ON A GIS PLATFORM Hong Kong Observatory Mission HONG KONG OBSERVATORY To provide people-oriented quality services in meteorology

More information

Mapping in the Cloud: Working with Google Maps and other Mapping Services. Michael P. Peterson University of Nebraska at Omaha

Mapping in the Cloud: Working with Google Maps and other Mapping Services. Michael P. Peterson University of Nebraska at Omaha Mapping in the Cloud: Working with Google Maps and other Mapping Services Michael P. Peterson University of Nebraska at Omaha Outline 1. Coding as Literacy 2. Cloud 3. Cloud Maps 4. Education 5. Future

More information

Road maps. Introduction. Structure

Road maps. Introduction. Structure Road maps Introduction This service let you embed interactive maps in your website (à la Google maps). You can customize map by displaying data in overlays You can create your own overlays. Structure To

More information

Sergio Luján Mora Department of Software and Computing Systems

Sergio Luján Mora Department of Software and Computing Systems Sergio Luján Mora Department of Software and Computing Systems Embedding Google Maps in web pages GOOGLE MAPS Google Maps Documentation Simple Map Markers Info Window Index Google Maps GM is a geospatial

More information

MAP SCRIPTING 101. AH Example-Driven Guide to Building Interactive MapA with Sing, Yahoo!, and Google MapA. by Adam DuVander.

MAP SCRIPTING 101. AH Example-Driven Guide to Building Interactive MapA with Sing, Yahoo!, and Google MapA. by Adam DuVander. MAP SCRIPTING 101 AH Example-Driven Guide to Building Interactive MapA with Sing, Yahoo!, and Google MapA by Adam DuVander no starch press San Francisco CONTENTS IN DETAIL ACKNOWLEDGMENTS INTRODUCTION

More information

SEXTANT 1. Purpose of the Application

SEXTANT 1. Purpose of the Application SEXTANT 1. Purpose of the Application Sextant has been used in the domains of Earth Observation and Environment by presenting its browsing and visualization capabilities using a number of link geospatial

More information

Implementing Web GIS Solutions

Implementing Web GIS Solutions Implementing Web GIS Solutions using open source software Karsten Vennemann Seattle Talk Overview Talk Overview Why and What What is Open Source (GIS)? Why use it? Application Components Overview of Web

More information

Mash Something. Purdue e-pubs. Purdue University. Christopher C. Miller Purdue University,

Mash Something. Purdue e-pubs. Purdue University. Christopher C. Miller Purdue University, Purdue University Purdue e-pubs GIS Day GIS, Geoinformatics, and Remote Sensing at Purdue 11-18-2008 Mash Something Christopher C. Miller Purdue University, ccmiller@purdue.edu Follow this and additional

More information

Making Your Own Maps PGCon 2012

Making Your Own Maps PGCon 2012 Making Your Own Maps PGCon 2012 http://8bitcity.com/map CC-BY-SA OpenStreetMap & Contributors Steve Singer steve@ssinger.info Steve Singer Amateur Cartographer http://www.flickr.com/photos/tinker-tailor/4284883477/

More information

Interactive Web Mapping: Overview

Interactive Web Mapping: Overview Interactive Web Mapping: Overview Overview of how geospatial data is formatted requested supplied consumed by/for web technologies 2 Definitions Analysis exploring and modeling geospatial phenomena Mapping

More information

Developing a Free and Open Source Software based Spatial Data Infrastructure. Jeroen Ticheler

Developing a Free and Open Source Software based Spatial Data Infrastructure. Jeroen Ticheler Developing a Free and Open Source Software based Spatial Data Infrastructure Jeroen Ticheler 1 License This work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 2.5 License.

More information

Leveraging OGC Services in ArcGIS Server

Leveraging OGC Services in ArcGIS Server Esri International User Conference San Diego, CA Technical Workshops Jul.14 th 2011 Leveraging OGC Services in ArcGIS Server Satish Sankaran Yingqi Tang Agenda Interoperability

More information

ASTROWEB ASTROINFORMATICS PROJECT AND COMPARISON OF THE WEB-GIS PROTOCOL STANDARDS

ASTROWEB ASTROINFORMATICS PROJECT AND COMPARISON OF THE WEB-GIS PROTOCOL STANDARDS Proceedings of the IX Bulgarian-Serbian Astronomical Conference: Astroinformatics (IX BSACA) Sofia, Bulgaria, July 2-4, 2014, Editors: M. K. Tsvetkov, M. S. Dimitrijević, O. Kounchev, D. Jevremović and

More information

ARDF Telemetry By. Julie VK3FOWL and Joe VK3YSP

ARDF Telemetry By. Julie VK3FOWL and Joe VK3YSP 2017 ARDF Telemetry By Julie VK3FOWL and Joe VK3YSP SARC Search and Rescue Missions SAR Operation ARDF BEACON 1 145.300MHz ARDF BEACON 2 145.700MHz SEARCH AND RESCUE TEAM 1 SEARCH AND RESCUE TEAM 2 SEARCH

More information

map1.html 1/1 lectures/8/src/

map1.html 1/1 lectures/8/src/ map1.html 1/1 3: map1.html 5: Demonstrates a "hello, world" of maps. 7: Computer Science E-75 8: David J. Malan 9: 10: --> 1 13:

More information

GIS Data Preparation and Conversion for the Web

GIS Data Preparation and Conversion for the Web Institute of Cartography GIS Data Preparation and Conversion for the Web Ionuț Iosifescu 17/02/2016 1 Data Preparation Workflow Data Collection Data Check Convert Data Visualize Data - Data Sources - GIS

More information

EDINA Workshop: Creating a Campus Map and Displaying it in OpenLayers

EDINA Workshop: Creating a Campus Map and Displaying it in OpenLayers Contents Introduction... 2 What steps are involved?... 3 Before you start... 4 Create your campus map... 5 1. Load the basemap data into ArcMap... 5 2. Set up Symbology and Labels of Layers... 6 Improve

More information

Deliverable D3.12. Contract number: OJEU 2010/S Deliverable: D3.12 Author: Igor Antolovic Date: Version: Final

Deliverable D3.12. Contract number: OJEU 2010/S Deliverable: D3.12 Author: Igor Antolovic Date: Version: Final Deliverable D3.12 Final and public version of the implemented web site with full functionality that hosts all relevant information on the Climate Atlas of the Carpathian Region, including a public download

More information

fpafi/tl open source OpenLayers 2.10 Beginner s Guide Create, optimize, and deploy stunning cross-browser web

fpafi/tl open source OpenLayers 2.10 Beginner s Guide Create, optimize, and deploy stunning cross-browser web OpenLayers 2.10 Beginner s Guide Create, optimize, and deploy stunning crossbrowser web maps with the OpenLayers JavaScript webmapping library Erik Hazzard fpafi/tl open source I I 11%, IV I I community

More information

Viewer Features. DataBC Mashup Framework (DMF)

Viewer Features. DataBC Mashup Framework (DMF) Viewer Features DataBC Mashup Framework (DMF) Copyright 2014 Ministry of Labour, Citizens' Services and Open Government All Rights Reserved. Printed in Canada The information contained in this document

More information

OPEN SOURCE SOLUTIONS FOR SURVEYORS

OPEN SOURCE SOLUTIONS FOR SURVEYORS 2 nd Sabah International Surveyors Congress 11 th 12 th March 2014 OPEN SOURCE SOLUTIONS FOR SURVEYORS Presented By : Sr Alexander Chong Director, Jurukur Antarabangsa The Benefits Of Closed Proprietary

More information

Introduction to Autodesk MapGuide EnterpriseChapter1:

Introduction to Autodesk MapGuide EnterpriseChapter1: Chapter 1 Introduction to Autodesk MapGuide EnterpriseChapter1: In this chapter, you review the high-level key components that comprise Autodesk MapGuide Enterprise. The Autodesk MapGuide Studio, an integral

More information

Caching Tile Cache Creation & Management

Caching Tile Cache Creation & Management Exploring Options for Map Caching Tile Cache Creation & Management Presented By: Todd Wascher, Business Development Manager 04.21.2011 We Visualize Your World Whachutalkinbout? What we ll cover with this

More information

Using an ArcGIS Server.Net version 10

Using an ArcGIS Server.Net version 10 Using an ArcGIS Server.Net version 10 Created by Vince DiNoto Vince.dinoto@kctcs.edu Contents Concept... 2 Prerequisites... 2 Data... 2 Process... 3 Creating a Service... 3 Down Loading Shapefiles... 3

More information

GIS Sys tem. Images. Image Processing. Statistical Reports. System. Maps. Map Digitizing. Statistical. Analysis System Spatial Data Base.

GIS Sys tem. Images. Image Processing. Statistical Reports. System. Maps. Map Digitizing. Statistical. Analysis System Spatial Data Base. Images Maps Map Digitizing System Image Processing System Statistical Analysis System Statistical Reports Geographic Analysis System Spatial Data Base Attribute Data Base Database Management System GIS

More information

user manual GeoViewer DB Netze Fahrweg

user manual GeoViewer DB Netze Fahrweg user manual GeoViewer DB Netze Fahrweg Register of Infrastructure Updated: Juli 2018 Release: 1.11.0 Page 1 von 32 Content 1 List of illustrations 3 2 Basics 4 2.1 Components 4 2.1.1 Interfaces 4 2.1.2

More information

Getting Started with ArcGIS for Server. Charmel Menzel and Ken Gorton

Getting Started with ArcGIS for Server. Charmel Menzel and Ken Gorton Getting Started with ArcGIS for Server Charmel Menzel and Ken Gorton Agenda What is ArcGIS for Server? Types of Web services Publishing resources onto the Web Clients to ArcGIS for Server Editions and

More information

Working with the ArcGIS Viewer for Flex Application Builder

Working with the ArcGIS Viewer for Flex Application Builder Working with the ArcGIS Viewer for Flex Application Builder Esri Canada User Conference St. John s November 15, 2012 Presented By: Greg Yetman gyetman@esri.ca Agenda This seminar is designed to help you

More information

_ LUCIADRIA V PRODUCT DATA SHEET _ LUCIADRIA PRODUCT DATA SHEET

_ LUCIADRIA V PRODUCT DATA SHEET _ LUCIADRIA PRODUCT DATA SHEET _ LUCIADRIA PRODUCT DATA SHEET V2016 LuciadRIA offers browser-based geospatial situational awareness with the fluidity and speed of a desktop application. The software components of LuciadRIA have been

More information

Web Architecture Review Sheet

Web Architecture Review Sheet Erik Wilde (School of Information, UC Berkeley) INFO 190-02 (CCN 42509) Spring 2009 May 11, 2009 Available at http://dret.net/lectures/web-spring09/ Contents 1 Introduction 2 1.1 Setup.................................................

More information

WebGIS exercise Land Change Viewer. Elisabeth Weinke Department of Geoinformatics University of Salzburg

WebGIS exercise Land Change Viewer. Elisabeth Weinke Department of Geoinformatics University of Salzburg WebGIS exercise Land Change Viewer Elisabeth Weinke Department of Geoinformatics University of Salzburg Overview Client Application OpenLayers Google Maps Interface WMS WFS Server GeoServer Data management

More information

Mapping GeoRSS Feeds and the Shift from KML to GeoJSON. Michael P. Peterson

Mapping GeoRSS Feeds and the Shift from KML to GeoJSON. Michael P. Peterson Mapping GeoRSS Feeds and the Shift from KML to GeoJSON Michael P. Peterson ABSTRACT: A primary benefit of cloud-based mapping is the presentation of updated maps. Data can be made available through a data

More information

IIPIMAGE AND THE OLDMAPSONLINE.ORG PROJECT

IIPIMAGE AND THE OLDMAPSONLINE.ORG PROJECT IIPIMAGE AND THE OLDMAPSONLINE.ORG PROJECT Petr Žabička Petr Přidal Moravian Library Brno: OldMapsOnline.org R&D grant of the Czech Ministry of Culture (DC08P02OUK006)

More information

WEB MAPPING WITH GOOGLE MAPS MASHUPS: OVERLAYING GEODATA

WEB MAPPING WITH GOOGLE MAPS MASHUPS: OVERLAYING GEODATA WEB MAPPING WITH GOOGLE MAPS MASHUPS: OVERLAYING GEODATA I. O. Bildirici a, *, N.N. Ulugtekin b a Selcuk University, Faculty of Eng., Dept. of Geomatic Engineering, 42079 Selcuklu Konya, Turkey bildirici@selcuk.edu.tr

More information

INSPIRE Conference Automatic metadata generation for the Web geo-resources

INSPIRE Conference Automatic metadata generation for the Web geo-resources INSPIRE Conference 2011 Automatic metadata generation for the Web geo-resources B. Borjas, A.J. Florczyk, F.J. López-Pellicer, J. Nogueras-Iso, F.J. Zarazaga-Soria June 28, 2011. Edinburgh Advanced Information

More information

Introduction to Autodesk MapGuide EnterpriseChapter1:

Introduction to Autodesk MapGuide EnterpriseChapter1: Chapter 1 Introduction to Autodesk MapGuide EnterpriseChapter1: In this chapter, you review the high-level key components that make up Autodesk MapGuide Enterprise. The Autodesk MapGuide Studio, an integral

More information

Google Maps Mashups WORKSHOP. Jeff Blossom, Senior GIS Specialist Center for Geographic Analysis. Harvard University gis.harvard.

Google Maps Mashups WORKSHOP. Jeff Blossom, Senior GIS Specialist Center for Geographic Analysis. Harvard University gis.harvard. Google Maps Mashups WORKSHOP Jeff Blossom, Senior GIS Specialist Center for Geographic Analysis Harvard University gis.harvard.edu Fall, 2012 Objectives: Workshop objectives and flow 1) In 2 hour, hands

More information

Lecture note on the history and principles of geo-webservices

Lecture note on the history and principles of geo-webservices A SHORT INTRODUCTION TO GEO-WEBSERVICES Lecture note on the history and principles of geo-webservices Barend Köbben Version 1.0 February 24, 2010 Contents 1 From monolithic to distributed GIS architectures

More information

Web Map Servers. Mark de Blois. Septembre 2016

Web Map Servers. Mark de Blois. Septembre 2016 Web Map Servers Mark de Blois Septembre 2016 Learning Objectives After this lecture you will be able to understand web map servers as used in Web-GIS applications Introduction A Web Map Server is a computer

More information

Getting started with Franson GpsGate 2.0

Getting started with Franson GpsGate 2.0 Franson GpsGate http://franson.com/gpsgate 2004-2006 Franson Technology AB, All rights reserved User's Guide Franson GpsGate v2.0 for Windows Getting started with Franson GpsGate 2.0 How you install GpsGate.

More information

Design Document V2 ThingLink Startup

Design Document V2 ThingLink Startup Design Document V2 ThingLink Startup Yon Corp Andy Chen Ashton Yon Eric Ouyang Giovanni Tenorio Table of Contents 1. Technology Background.. 2 2. Design Goal...3 3. Architectural Choices and Corresponding

More information

OpenLayers Beginner's Guide. Create, optimize, and deploy stunning cross-browser web maps with the OpenLayers JavaScript web-mapping library

OpenLayers Beginner's Guide. Create, optimize, and deploy stunning cross-browser web maps with the OpenLayers JavaScript web-mapping library OpenLayers 2.10 Beginner's Guide Create, optimize, and deploy stunning cross-browser web maps with the OpenLayers JavaScript web-mapping library Erik Hazzard BIRMINGHAM - MUMBAI OpenLayers 2.10 Beginner's

More information

Introduction to WEB PROGRAMMING

Introduction to WEB PROGRAMMING Introduction to WEB PROGRAMMING Web Languages: Overview HTML CSS JavaScript content structure look & feel transitions/animation s (CSS3) interaction animation server communication Full-Stack Web Frameworks

More information

Introduction THE OPENGEO ARCHITECTURE

Introduction THE OPENGEO ARCHITECTURE Introduction Putting maps on the web used to be very very difficult. It required specialized software, and more important, specialized knowledge about the kinds of data and processes used to create cartographic

More information

Mobile Systeme Grundlagen und Anwendungen standortbezogener Dienste. Location Based Services in the Context of Web 2.0

Mobile Systeme Grundlagen und Anwendungen standortbezogener Dienste. Location Based Services in the Context of Web 2.0 Mobile Systeme Grundlagen und Anwendungen standortbezogener Dienste Location Based Services in the Context of Web 2.0 Department of Informatics - MIN Faculty - University of Hamburg Lecture Summer Term

More information

Help Documentation. Copyright 2007 WebAssist.com Corporation All rights reserved.

Help Documentation. Copyright 2007 WebAssist.com Corporation All rights reserved. Help Documentation Copyright 2007 WebAssist.com Corporation All rights reserved. Using Pro Maps for Google This wizard adds a Pro Map for Google to your web page, allowing you to configure and specify

More information

Beginning Google Maps Mashups with Mapplets, KML, and GeoRSS

Beginning Google Maps Mashups with Mapplets, KML, and GeoRSS Beginning Google Maps Mashups with Mapplets, KML, and GeoRSS From Novice to Professional ш я т Sterling Udell Apress" Contents About the Author About the Technical Reviewer Acknowledgments Introduction

More information

Schenker AB. Interface documentation Map integration

Schenker AB. Interface documentation Map integration Schenker AB Interface documentation Map integration Index 1 General information... 1 1.1 Getting started...1 1.2 Authentication...1 2 Website Map... 2 2.1 Information...2 2.2 Methods...2 2.3 Parameters...2

More information

Leveraging OGC Services in ArcGIS Server. Satish Sankaran Yingqi Tang

Leveraging OGC Services in ArcGIS Server. Satish Sankaran Yingqi Tang Leveraging OGC Services in ArcGIS Server Satish Sankaran ssankaran@esri.com Yingqi Tang ytang@esri.com Agenda Interoperability Enablers OGC and esri OGC Web Services ArcGIS and OGC Web Services - @ version

More information

Development of Java Plug-In for Geoserver to Read GeoRaster Data. 1. Baskar Dhanapal CoreLogic Global Services Private Limited, Bangalore

Development of Java Plug-In for Geoserver to Read GeoRaster Data. 1. Baskar Dhanapal CoreLogic Global Services Private Limited, Bangalore Development of Java Plug-In for Geoserver to Read GeoRaster Data 1. Baskar Dhanapal CoreLogic Global Services Private Limited, Bangalore 2. Bruce Thelen CoreLogic Spatial Solutions, Austin, USA 3. Perumal

More information

New Features in TNTmips 2010

New Features in TNTmips 2010 61st Release February 2010 New Features in TNTmips 2010 A tileset is a collection of small image files called tiles in a predefined file size, format, and directory structure. It is designed for efficient

More information

INTERRACTION COMPONENT STATE-OF-THE-ART

INTERRACTION COMPONENT STATE-OF-THE-ART INTERRACTION COMPONENT STATE-OF-THE-ART DELIVERABLE D6.1.1 By C2TECH Due date of deliverable : t0+ 6 Actual submission date: t0+ xxx Version :01 State : Draft/For approval/approved/obsolete Dissemination

More information

Genealogical Searching the World Wide Web. July 2015 Slides at:

Genealogical Searching the World Wide Web. July 2015 Slides at: Genealogical Searching the World Wide Web July 2015 Slides at: http://www.colket.org/genealogy/usf/ Google Earth Overview Use of Google Earth for Genealogy: Get Directions to Research Locations Plan a

More information

GPS Essentials. This guide may be downloaded as gps-essentials_en.odt or gps-essentials_en.pdf Reviewed

GPS Essentials. This guide may be downloaded as gps-essentials_en.odt or gps-essentials_en.pdf Reviewed GPS Essentials GPS Essentials This guide may be downloaded as gps-essentials_en.odt or gps-essentials_en.pdf Reviewed 2015-05-24 Installation of GPS Essentials 1. Tap the Google Play Store app icon on

More information

Google Earth: Significant Places in Your Life Got Maps? Workshop June 17, 2013

Google Earth: Significant Places in Your Life Got Maps? Workshop June 17, 2013 Google Earth: Significant Places in Your Life Got Maps? Workshop June 17, 2013 1. Open Google Earth. 2. Familiarize yourself with Google Earth s navigational features by zooming into Furman s campus, your

More information

May 22, 2013 Ronald Reagan Building and International Trade Center Washington, DC USA

May 22, 2013 Ronald Reagan Building and International Trade Center Washington, DC USA May 22, 2013 Ronald Reagan Building and International Trade Center Washington, DC USA 1 Introduction to MapViewer & Tools for Your Business Apps and Mobile Devices Albert Godfrind Oracle Spatial Architect

More information

FROM CONCEPT TO REALISATION OF AN ISPRS RELATED LBS COMPETITION

FROM CONCEPT TO REALISATION OF AN ISPRS RELATED LBS COMPETITION FROM CONCEPT TO REALISATION OF AN ISPRS RELATED LBS COMPETITION M. Hahn*, F. J. Behr Dept. of Geomatics, Computer Science and Mathematics, Stuttgart University of Applied Sciences, Stuttgart, Germany (michael.hahn)(franz-josef.behr)@hft-stuttgart.de

More information

Regarding the quality attributes, the architecture of the system must be:

Regarding the quality attributes, the architecture of the system must be: The SDSS System Overview This chapter gives an overview of the software architecture of the RiskChanges SDSS system. One of the objectives within the project is the development of a SDSS system for probabilistic

More information

[ ]..,ru. GeoServer Beginner's Guide. open source^ software server. Share and edit geospatial data with this open source.

[ ]..,ru. GeoServer Beginner's Guide. open source^ software server. Share and edit geospatial data with this open source. GeoServer Beginner's Guide Share and edit geospatial data with this open source software server Stefano lacovella Brian Youngblood [ ]..,ru open source^ PUBLISHING community experience distilled BIRMINGHAMMUMBAI

More information

Building Mashups Using the ArcGIS APIs for FLEX and JavaScript. Shannon Brown Lee Bock

Building Mashups Using the ArcGIS APIs for FLEX and JavaScript. Shannon Brown Lee Bock Building Mashups Using the ArcGIS APIs for FLEX and JavaScript Shannon Brown Lee Bock Agenda Introduction Mashups State of the Web Client ArcGIS Javascript API ArcGIS API for FLEX What is a mashup? What

More information

Flash Image Enhancer Manual DMXzone.com Flash Image Enhancer Manual

Flash Image Enhancer Manual DMXzone.com Flash Image Enhancer Manual Flash Image Enhancer Manual Copyright 2009 All Rights Reserved Page 1 of 62 Index Flash Image Enhancer Manual... 1 Index... 2 About Flash Image Enhancer... 3 Features in Detail... 3 Before you begin...

More information

ERDAS Image Web Server Datasheet

ERDAS Image Web Server Datasheet ERDAS Image Web Server Datasheet age 1 of 10 ERDAS Image Web Server Image serving protocols Multi-protocol support Expose images with different protocols. ERDAS Compressed Wavelet Protocol (ECWP) image

More information

OL3 - JavaScript library for 3D scenes

OL3 - JavaScript library for 3D scenes University of Minho Informatics Department Master in Informatics OL3 - JavaScript library for 3D scenes Bruno Gustavo Rego Amaral da Costa Supervised by: Professor Doutor Jorge Gustavo Rocha Braga, October

More information

The GeoPortal Cookbook Tutorial

The GeoPortal Cookbook Tutorial The GeoPortal Cookbook Tutorial Wim Hugo SAEON/ SAEOS SCOPE OF DISCUSSION Background and Additional Resources Context and Concepts The Main Components of a GeoPortal Architecture Implementation Options

More information

ACTIVE Event App Configuration Guide

ACTIVE Event App Configuration Guide ACTIVE Event App Configuration Guide ACTIVE Network, LLC 2017 Active Network, LLC, and/or its affiliates and licensors. All rights reserved. No part of this publication may be reproduced, transmitted,

More information

Web Services for Geospatial Mobile AR

Web Services for Geospatial Mobile AR Web Services for Geospatial Mobile AR Introduction Christine Perey PEREY Research & Consulting cperey@perey.com Many popular mobile applications already use the smartphone s built-in sensors and receivers

More information

Yandex.Maps API Background theory

Yandex.Maps API Background theory 8.02.2018 .. Version 1.0 Document build date: 8.02.2018. This volume is a part of Yandex technical documentation. Yandex helpdesk site: http://help.yandex.ru 2008 2018 Yandex LLC. All rights reserved.

More information

New Features in TNTmips 2010

New Features in TNTmips 2010 61st Release February 2010 New Features in TNTmips 2010 A tileset is a collection of small image files called tiles in a predefined file size, format, and directory structure. It is designed for efficient

More information

Juniata County, Pennsylvania

Juniata County, Pennsylvania GIS Parcel Viewer Web Mapping Application Functional Documentation June 21, 2017 Juniata County, Pennsylvania Presented by www.worldviewsolutions.com (804) 767-1870 (phone) (804) 545-0792 (fax) 115 South

More information

Tutorial for PGIS in Accra, Ghana

Tutorial for PGIS in Accra, Ghana Tutorial for PGIS in Accra, Ghana Chung-Rui Lee 1, Ick Hoi Kim 2, and Jayesh Patel 3 Welcome to Participatory GIS (PGIS) in Accra, Ghana (access to the PGIS website). This project is funded by NICHD Grant

More information

WebGL Seminar: O3D. Alexander Lokhman Tampere University of Technology

WebGL Seminar: O3D. Alexander Lokhman Tampere University of Technology WebGL Seminar: O3D Alexander Lokhman Tampere University of Technology What is O3D? O3D is an open source JavaScript API for creating rich, interactive 3D applications in the browser Created by Google and

More information

Augmented Reality, Google Earth and Tcl/Tk. Steve Landers and David Roseman. Abstract

Augmented Reality, Google Earth and Tcl/Tk. Steve Landers and David Roseman.  Abstract Augmented Reality, Google Earth and Tcl/Tk Steve Landers and David Roseman steve@digitalsmarties.com dlr@eolas.com Abstract This paper will describe the implementation of an augmented reality simulation

More information

6 New Approaches for Integrating GIS layers and Remote Sensing Imagery for Online Mapping Services

6 New Approaches for Integrating GIS layers and Remote Sensing Imagery for Online Mapping Services 6 New Approaches for Integrating GIS layers and Remote Sensing Imagery for Online Mapping Services Harry Kuo-Chen Chang*, Ming-Hsiang Tsou ** * Department of Geography, National Taiwan Normal University,

More information

Tileset Concepts and Terminology

Tileset Concepts and Terminology Tileset Concepts and Terminology Bing Maps Your Geodata raster Bing Maps vector shape CAD Google Maps Google Maps NASA World Wind Google Earth Google Earth MicroImages, Inc. 11th Floor - Sharp Tower 206

More information

Embracing HTML5 CSS </> JS javascript AJAX. A Piece of the Document Viewing Puzzle

Embracing HTML5 CSS </> JS javascript AJAX. A Piece of the Document Viewing Puzzle Embracing HTML5 AJAX CSS JS javascript A Piece of the Document Viewing Puzzle Embracing HTML5: A Piece of the Document Viewing Puzzle For businesses and organizations across the globe, being able to

More information

Data Visualization Techniques with Google Earth

Data Visualization Techniques with Google Earth Data Visualization Techniques with Google Earth E-Learning for the GIS Professional Any Time, Any Place! geospatialtraining.com Course Outline Module 1: Google Earth Pro Fundamentals Module 2: Adding Features

More information

ThingLink User Guide. Andy Chen Eric Ouyang Giovanni Tenorio Ashton Yon

ThingLink User Guide. Andy Chen Eric Ouyang Giovanni Tenorio Ashton Yon ThingLink User Guide Yon Corp Andy Chen Eric Ouyang Giovanni Tenorio Ashton Yon Index Preface.. 2 Overview... 3 Installation. 4 Functionality. 5 Troubleshooting... 6 FAQ... 7 Contact Information. 8 Appendix...

More information

Training Workshop Developing Rich Web mapping Applications Tunis, May 2016

Training Workshop Developing Rich Web mapping Applications Tunis, May 2016 Training Workshop Developing Rich Web mapping Applications Tunis, 10 12 May 2016 1 Introduction With the advance of web mapping services and web technology, creating and publishing high-performing, modern-looking

More information

Interoperability and Standards Supports in ArcGIS

Interoperability and Standards Supports in ArcGIS Esri International User Conference San Diego, California Technical Workshops July 26, 2012 Interoperability and Standards Supports in ArcGIS Satish Sankaran, Esri Yingqi Tang, Esri Agenda Esri s participation

More information

Simple Carpool Application using SAP NetWeaver Portal, KM, XML Forms, and Google Maps

Simple Carpool Application using SAP NetWeaver Portal, KM, XML Forms, and Google Maps Simple Carpool Application using SAP NetWeaver Portal, KM, XML Forms, and Google Maps Applies to: SAP NetWeaver Portal 6.x\7.x, Knowledge Management (KM), and Google Maps. For more information, visit the

More information

Designing for diverse devices. Dr. Andres Baravalle

Designing for diverse devices. Dr. Andres Baravalle Designing for diverse devices Dr. Andres Baravalle 1 Outline Web 2.0 Designing for diverse devices 2 Web 2.0 Web 2.0 Web 2.0 is one of neologisms commonly in use in the Web community According to Tim O

More information

A Framework of Information Technology for Water Resources Management

A Framework of Information Technology for Water Resources Management A Framework of Information Technology for Water Resources Management P.S.V.S. Sridhar T. N. Jowhar Wadia Institute of Himalyan Geology, Anant Bhaskar Garg U. Kedareswarudu ABSTRACT The use of the information

More information

Features and Benefits

Features and Benefits AUTODESK MAPGUIDE ENTERPRISE 2010 Features and Benefits Extend the reach and value of your spatial information using Autodesk MapGuide Enterprise 2010 software. Access design and spatial data from a variety

More information

Visualization with ArcGlobe. Brady Hoak

Visualization with ArcGlobe. Brady Hoak Visualization with ArcGlobe Brady Hoak Contents What is ArcGlobe? 3D Mapping and ArcGlobe Displaying data in ArcGlobe ArcGlobe tools Tips for constructing ArcGlobe documents New at ArcGIS 9.3 ArcGIS integration

More information

Web Viewer Guide. HiPER LOOK Version Copyright 2016 PIXIA Corp. All Rights Reserved.

Web Viewer Guide. HiPER LOOK Version Copyright 2016 PIXIA Corp. All Rights Reserved. Web Viewer Guide 2016 HiPER LOOK Version 1.4.16.0 Copyright 2016 PIXIA Corp. All Rights Reserved. Table of Contents 1 System Requirements... 5 1.1 Prerequisites... 5 1.2 Web Browser... 5 2 HiPER LOOK Web

More information

Slug: HTML5 for Mobile Web Applications, ISBN number, 23! kyrnin hour23-code.doc

Slug: HTML5 for Mobile Web Applications, ISBN number, 23! kyrnin hour23-code.doc Slug: HTML5 for Mobile Web Applications, ISBN number, 23! kyrnin hour23-code.doc Hour 23 Code to detect support for GeoLocation, simply detect if the browser has that object: function supports_geolocation()

More information

Google Earth. Tutorials. Tutorial 2: Annotating Google Earth

Google Earth. Tutorials. Tutorial 2: Annotating Google Earth Google Earth Tutorials Tutorial 2: Annotating Google Earth Google Earth makes it easy to create a map with annotations - you can add placemarks (points), paths (lines), polygons in Google Earth, and add

More information