Using LDS XYZ Map Tile Services in Leaflet and Openlayers

Total Page:16

File Type:pdf, Size:1020Kb

Using LDS XYZ Map Tile Services in Leaflet and Openlayers Using LDS XYZ map tile services in Leaflet and OpenLayers February 2015 1 [Note: This guide is in a draft state and has been developed for the purpose of beta testing of the LINZ Data Service imagery tile services. This content will be updated in preparation for the full public release of this service.] Overview - LDS map tile services The LDS tile services makes access to data for base maps and visualisations that much easier. This service allows you to directly incorporate LINZ data into your web or mobile application via pre- rendered map tiles that provide better performance and easier integration. LDS provides an XYZ tile service. This service is compatible with the Google Map API and can be easily combined with other global map tile services such as Open Street Map (OSM) or Microsoft Bing Maps. Tile services can also be accessed via our WMTS tile service. This guide focuses on our XYZ tile service, our recommended web API for accessing our basemaps and other tiled map data. This guide provides help with using LDS XYZ tile services in Openlayers and Leaflet. While OpenLayers supports more GIS functions, Leaflet may be easier to use for making simple web maps. LDS XYZ tile services To access LDS tile services you need to create an API or web services key. See the Web services content on the LINZ website for instructions on creating a key. You can create multiple keys to use across this and other LDS web services. Once you have created your key, you can use it within any LDS web service or API URL endpoint request. If you are logged into LDS and select a web service URL, your web service key is automatically populated in the URL. Client-side authentication is not required, as LDS recognises you as a registered user of LDS tile services through the API key. Selecting a tiled layer To support beta testing, tile services have been exposed as a service and are visible through the ‘Service’ tab on layers that support tile services. Simply select the ‘Services’ tab of any National Imagery layer on LDS, or the Topo50 or Topo250 maps, or the Hydrographic chart images to view the available tile services and the request URLs. 2 If you are logged in to LDS and have already created an API key, your API key and the layer ID will be pre-populated in the URL for you. URL syntax LDS tile services support both HTTP and HTTPS. Individual Imagery layers To access our XYZ tile services for individual National Imagery layers you can use the following base URL in your application: http://tiles-{a-d}.data-cdn.linz.govt.nz/services;key=YOUR_API_KEY/tiles/v4/layer=LA YER_ID/EPSG:CRS/{z}/{x}/{y}.png {a-d} - to support a higher volume of requests, simultaneous calls can be made to multiple sub-domains: a, b, c and d YOUR_API_KEY - your LDS API key - see above for creating a key 3 LAYER_ID - the identifier of the LDS tiled layer. For example, West Coast 0.4m Rural Aerial Photos (2009 – 2011) is layer 1928: https://data.linz.govt.nz/layer/1928-west-coast-04m- rural-aerial-photos-2009-2011/ CRS – identifier of the coordinate reference system of the tile grid you are requesting. By default, LDS tile service URLs are provided as EPSG:3857 (WGS84 Web Mercator) Z, X, Y – z is zoom level, x tile column and y tile row but your client will substitute values here for you Imagery sets (base map) The base URL for the National Imagery basemap, once it is ready for testing, will follow a similar format: http://tiles-{a-d}.data-cdn.linz.govt.nz/services;key=YOUR_API_KEY/tiles/v4/set=SET_ ID/EPSG:CRS/{z}/{x}/{y}.png SET_ID is the identifier of the LDS tiled set and follows the same principle as above Domains To ensure the performance of LDS’s tile services and to cater for high volume requests from web applications, XYZ tile service requests are made to the LINZ Data Service CDN rather than LDS core infrastructure. The XYZ tile services domain is: http://tiles-{a-d}.data-cdn.linz.govt.nz To support a higher volume of requests, simultaneous calls can be made to multiple sub-domains: a, b, c and d. See the details for using LDS tile services with Leaflet and Openlayers for the specific URL syntax to use for these subdomains. Projections Most LINZ tiled imagery layers are published in two projections: WGS84 Web Mercator (EPSG:3857) This is most likely to fit the majority of your use cases. It is most suitable for web mapping applications, compatible with the Google Map, OSM and Bing Maps tiles without need for re- projection or scaling. Coverage – Global (includes NZ Mainland and offshore Islands) Unless specified, the examples in this guide are using the default WGS84 Web Mercator projection. NZTM2000 (EPSG:2193) This tile set is most useful for New Zealand geospatial professionals and can be used for desktop GIS mapping. It is also recommended for New Zealand mainland web applications when area and distances need to be well represented on the map. This guide includes help on using XYZ tile services in NZTM2000. 4 See the LDS tile services tile set definition document for more information on the specifications of these tile sets. Rate limiting To guarantee reasonable performance levels and to guard against overuse or abuse of LINZ’s free tile services, these services are rate limited. Rate limiting will not impact the use of tile services in small to medium volume web mapping applications. Rate limiting for LDS tile services apply at the API key and IP address level, and be measured by the hour and minute. We will provide further information on the request limits and how to avoid hitting them once LDS tile services are publically released. In the meantime, we will contact you if you reach the limits. Hiding your API key If you are integrating LDS tile services into a public map service, you will need to take steps to protect your API key from being exposed to anonymous users. Web Map Tile Service LDS also supports Open Geospatial Consortium compliant Web Map Tile Service style requests. API implementation LDS supports WMTS version 1.0.0. Visit the Open Geospatial Consortium website for more information about the standard. Requests LDS tile services support RESTful requests only. KVP and SOAP request interfaces are not supported. LDS tile services support the HTTP GET method only for retrieving tiles. The following requests are supported: GetCapabilities: returns metadata about the service GetTile: returns an individual map tile from the cache GetFeatureInfo: returns descriptive information for a given map location WMTS URL syntax If you prefer, you can use our OGC WMTS tile services and style URL requests to retrieve tiles. In this method, your web client will use the GetCapabilities request to determine the tilematrix definition meaning one more request for your client, but reduces the configuration client side. An example of using the LDS NZTM2000 tile set in OpenLayers via the WMTS Get Capabilities functionality is provided. The base URL for this request format is: https://data.linz.govt.nz/services;key=YOUR_API_KEY/wmts/1.0.0/WMTSCapabilities.xml 5 Responses Tile image requests are returned from the tile cache as compressed PNGs. See the Tile services tile set definition document for information on image resolution (pixel size). PNG format was chosen as it allows the quality of images to be maintained and supports making the tile background transparent which is important for overlaying datasets. Requested tiles are cached on a rolling basis. This means there may be some fluctuation in tile responses as tiles are cached, drop off the cache store and are re-cached. 6 Using LDS tile services in OpenLayers About this guide This guide provides hints and tips and notes issues to be aware of when using LDS tile services in OpenLayers 3. This document is not a guide to using OpenLayers and assumes a good understanding of JavaScript. Please refer to the official OpenLayers documentation for help. This guide focuses on use of the LDS XYZ tile service. An example of using the WMTS functionality is also included. This method means one more request for the web application (GetCapabilities request to determine the tilematrix definition), but reduces the configuration you need to undertake client side. Notes The code snippets in this guide and referenced examples use OpenLayers version 3.1.1 The majority of examples in this guide assume use of the LDS Web Mercator (EPSG:3857) tile set. Specific guidance is provided for utilising the NZTM tile set OpenLayers 3 does not yet support the Get FeatureInfo function for vector-based tile services OpenLayers 3 does not yet support OGC WMTS GetCapabilities requests. An example of a GetCapabilities request for LDS tile services is provided, using a patched OpenLayers library Adding a LDS tiled layer to your map To add a single LDS tiled layer the simple format is: new ol.layer.Tile({ source: new ol.source.XYZ({ url: ‘http://tiles-{a-d}.data-cdn.linz.govt.nz/services;key=YOUR_API_KEY/tiles /v4/layer=LAYER_ID/EPSG:3857/{z}/{x}/{y}.png') Please note the use of the syntax {a-d}. This will allow requests to use our a, b, c, d subdomains to support more simultaneous tile requests in your browser. Adding multiple tiled layers You can return multiple layers at once by compositing layers in a single request. The request is composited server-side then returned as a single image, reducing bandwidth and processing overhead.
Recommended publications
  • The Uch Enmek Example(Altai Republic,Siberia)
    Faculty of Environmental Sciences Institute for Cartography Master Thesis Concept and Implementation of a Contextualized Navigable 3D Landscape Model: The Uch Enmek Example(Altai Republic,Siberia). Mussab Mohamed Abuelhassan Abdalla Born on: 7th December 1983 in Khartoum Matriculation number: 4118733 Matriculation year: 2014 to achieve the academic degree Master of Science (M.Sc.) Supervisors Dr.Nikolas Prechtel Dr.Sander Münster Submitted on: 18th September 2017 Faculty of Environmental Sciences Institute for Cartography Task for the preparation of a Master Thesis Name: Mussab Mohamed Abuelhassan Abdalla Matriculation number: 4118733 Matriculation year: 2014 Title: Concept and Implementation of a Contextualized Navigable 3D Landscape Model: The Uch Enmek Example(Altai Republic,Siberia). Objectives of work Scope/Previous Results:Virtual Globes can attract and inform websites visitors on natural and cultural objects and sceneries.Geo-centered information transfer is suitable for majority of sites and artifacts. Virtual Globes have been tested with an involvement of TUD institutes: e.g. the GEPAM project (Weller,2013), and an archaeological excavation site in the Altai Mountains ("Uch enmek", c.f. Schmid 2012, Schubert 2014).Virtual Globes technology should be flexible in terms of the desired geo-data configuration. Research data should be controlled by the authors. Modes of linking geo-objects to different types of meta-information seems evenly important for a successful deployment. Motivation: For an archaeological conservation site ("Uch Enmek") effort has already been directed into data collection, model development and an initial web-based presentation.The present "Open Web Globe" technology is not developed any further, what calls for a migra- tion into a different web environment.
    [Show full text]
  • Development of a Web Mapping Application Using Open Source
    Centre National de l’énergie des sciences et techniques nucléaires (CNESTEN-Morocco) Implementation of information system to respond to a nuclear emergency affecting agriculture and food products - Case of Morocco Anis Zouagui1, A. Laissaoui1, M. Benmansour1, H. Hajji2, M. Zaryah1, H. Ghazlane1, F.Z. Cherkaoui3, M. Bounsir3, M.H. Lamarani3, T. El Khoukhi1, N. Amechmachi1, A. Benkdad1 1 Centre National de l’Énergie, des Sciences et des Techniques Nucléaires (CNESTEN), Morocco ; [email protected], 2 Institut Agronomique et Vétérinaire Hassan II (IAV), Morocco, 3 Office Régional de la Mise en Valeur Agricole du Gharb (ORMVAG), Morocco. INTERNATIONAL EXPERTS’ MEETING ON ASSESSMENT AND PROGNOSIS IN RESPONSE TO A NUCLEAR OR RADIOLOGICAL EMERGENCY (CN-256) IAEA Headquarters Vienna, Austria 20–24 April 2015 Context In nuclear disaster affecting agriculture, there is a need for rapid, reliable and practical tools and techniques to assess any release of radioactivity The research of hazards illustrates how geographic information is being integrated into solutions and the important role the Web now plays in communication and disseminating information to the public for mitigation, management, and recovery from a disaster. 2 Context Basically GIS is used to provide user with spatial information. In the case of the traditional GIS, these types of information are within the system or group of systems. Hence, this disadvantage of traditional GIS led to develop a solution of integrating GIS and Internet, which is called Web-GIS. 3 Project Goal CRP1.50.15: “ Response to Nuclear Emergency affecting Food and Agriculture” The specific objective of our contribution is to design a prototype of web based mapping application that should be able to: 1.
    [Show full text]
  • I Work for Natural Resources Canada in the Canada Centre for Mapping
    I work for Natural Resources Canada in the Canada Centre for Mapping and Earth Observation, where as a technologist and developer, I have been supporting the development of geo-standards, spatial data infrastructure, or “SDI”, and open spatial data for about 10 years. 1 Today, I’m going to talk about the community, concepts and technology of the Maps for HTML Community Group. The objective of the Maps for HTML initiative is straightforward: to extend HTML to include Web map semantics and behaviour, such as users have come to expect of Web maps. 2 Before getting in to the technology discussions, I think it’s really important to back up and take stock of the situation facing mapping professionals today. 3 Paul Ramsey is a leader in the open source geospatial software development community who currently works for the CartoDB consumer web mapping platform. In a recent presentation to a meeting of Canadian government mapping executives, Paul told us that government mapping programs were no longer relevant. In fairness, Paul did say sorry for having to say that. You know, sometimes it is hard to hear the truth, and I would have to say that Paul wasn’t completely wrong, so what I really want to say in response to Paul is ‘thank you’. 4 Thank you for the opportunity to talk about a subject that has been in the back of my mind not just since I began promoting standards for geospatial information and Spatial Data Infrastructure, and open spatial data, but since the first day I did ‘View Source’ on an HTML page containing a Web map and did not see anything that could possibly produce a map.
    [Show full text]
  • Web Map Tile Services Tiny Tile Server Bachelor Thesis
    Web Map Tile Services Tiny Tile Server Bachelor Thesis Department of Computer Science University of Applied Science Rapperswil Spring Term 2013 Author: Carmen Campos Bordons Advisor: Prof. Stefan Keller, HSR Project Partner: Klokan Technologies, Baar External Co-Examiner: Claude Eisenhut, Burgdorf Internal Co-Examiner: Prof. Dr. Andreas Rinkel, HSR Abstract Tiny Tile Server is a Python server that permits the user to display local MBTiles maps on the internet. It extracts the data from the SQLite database where the map information is stored in tables containing all the tiles, UTFGrid and metadata. The tiles are the map images, smaller than the screen for better performance. The UTFGrid is some extra information related with points in the map that appears in an infobox when the user interact with these points. The metadata is the information about the map: name, description, bounds, legend, center, minzoom, maxzoom. Tiny Tile Server shows the tiles composing the map on a website and the UTFGrid data on top of the tiles. It can also be used to show the getCapabilities information from Web Map Tile Service in XML format extracted by the metadata table. Tiny Tile Server supports two protocols to access the tiles: direct access with XYZ tile request to tiles in a directory or to MBTiles database; or Web Map Tile Service from a MBTiles database. The server is a part in a website whose purpose is to show how it works and provide templates for the user who wants to employ it, so he will not need to have programming knowledge in order to use Tiny Tile Server, just to follow a simple installation tutorial.
    [Show full text]
  • L6-Geospatial Technologies and Web Applications-Mr.Arulraj NRSC
    GeoSpatial Technologies and Web Applications M. Arulraj Sci/Engr – SF Manager, Bhuvan Web Services Development [email protected] GIS Activities in Problem Solving Environment Empowering Human Take to Activities Action Plan Complex Data Modeling Analyze Interactive Mapping Integration Measure Observe Visualization Modeling . Application of this science is multi-disciplinary Major Components of GIS and Role of open source s/w Data Creations Vector, Raster & attribute Data organizations & Management Complete GIS Data query, processing, Solutions analysis and modeling Data presentations and visualizations OpenLayers Data sharing and disseminations Tools and technologies • Quantum GIS • Open Jump • SAGA, MapWindow GIS • OpenLayer API Desktop GIS • Mapfish, • Geoeditor, • GRASS Geoweb Remote • Geexplorer • OSIM 2.0 Sensing • SAGA • Geonetwork Catalogue Statistical Server • R Geo-spatial DomainGn Geo- GPS • Gpsbabel RDBMS • POSTGIS+ POSTGRESQL • Gpsdrive • TerrLib GIS s/w GIS Servers developme nt • GDAL/OGR • Osgeo MapServer • Geotool • Geoserver • OpenLayer API What is open source? Open source software is software where the source code is made available under a license that allows the modification, and re-distribution of the software at will. The distribution terms of open-source software must comply with the following criteria: Free redistribution; Source code; Derived works; Integrity of the author's source code; No discrimination against persons or groups; No discrimination against fields of endeavor; Distribution of license; License must not be specific to a product; License must not restrict other software; License must be technology-neutral. What is open source? 1. Free Redistribution The license shall not restrict any party from selling or giving away the software as a component of an aggregate software distribution containing programs from several different sources.
    [Show full text]
  • Geographical Information System in Web Applica- Tion
    Zhipeng Jiang GEOGRAPHICAL INFORMATION SYSTEM IN WEB APPLICA- TION Developing Web Application to Serve Spatial Data to Users Thesis CENTRIA UNIVERSITY OF APPLIED SCIENCES Information Technology January 2020 ABSTRACT Centria University Date Author of Applied Sciences January 2020 Zhipeng Jiang Degree programme Information Technology Name of thesis GEOGRAPHICAL INFORMATION SYSTEM IN WEB APPLICATION. Developing Web Applica- tion to serve spatial data to users Instructor Pages Jari Isohanni 29 + 7 Supervisor Jari Isohanni This study is aimed to give a basic understanding of web GIS from a technological point of view. Also, how the approach is useable for other technologies. The technologies including JavaScript API for Google Maps and ArcGIS were tested with demonstration. Additionally, the open-sourced solu- tions are discussed with the self-hosted server, PostgreSQL database. And with Openlayers as the front-end JavaScript library to present the geospatial data. During the study, in the Google Maps API demonstration, the GeoJson data is made by geojson.io and attitude data of the spatial data is called with the API method, to create popup windows for each city area. Another layer that represents specific location for the school, park, and hospital at Kokkola area is marked out with Google Maps API marker and it is overlaid, on top of that city area layer. The same spatial data and its related attribute data are implemented once more with ArcGIS JavaScript API to find out what is the difference between these two technologies. The result is that the Google Maps JavaScript API does not need to have a popup template to have the popup functionality working, instead of popup template, in the Google Maps JavaScript API, the click event listener is created to handle the popup event.
    [Show full text]
  • Package 'Leaflet.Extras'
    Package ‘leaflet.extras’ April 21, 2018 Type Package Title Extra Functionality for 'leaflet' Package Version 1.0.0 Description The 'leaflet' JavaScript library provides many plugins some of which are available in the core 'leaflet' package, but there are many more. It is not possible to support them all in the core 'leaflet' package. This package serves as an add-on to the 'leaflet' package by providing extra functionality via 'leaflet' plugins. License GPL-3 | file LICENSE Encoding UTF-8 LazyData true Depends R (>= 3.1.0), leaflet (>= 2.0.0) Imports htmlwidgets, htmltools, stringr, magrittr Suggests jsonlite, readr URL https://github.com/bhaskarvk/leaflet.extras, https://bhaskarvk.github.io/leaflet.extras/ BugReports https://github.com/bhaskarvk/leaflet.extras/issues RoxygenNote 6.0.1 NeedsCompilation no Author Bhaskar Karambelkar [aut, cre], Barret Schloerke [aut], Bangyou Zheng [ctb] (Leaflet-search and Leaflet-GPS plugin integration), Robin Cura [ctb] (Fixes for Draw Options), Markus Voge [ctb] (Enhancements for Draw Options), Markus Dumke [ctb] (Bounce Marker addition), Mapbox [ctb, cph] (leaflet-omnivore, csv2geojson, and togeojson libraries), Henry Thasler [ctb, cph] (Leaflet.Geodesic library), Dennis Wilhelm [ctb, cph] (Leaflet.StyleEditor library), Kirollos Risk [ctb, cph] (fuse.js library), Tim Wisniewski [ctb, cph] (leaflet-choropleth library), 1 2 R topics documented: Leaflet [ctb, cph] (leaflet-draw library), Alexander Milevski [ctb, cph] (leaflet-draw-drag library), John Firebaugh [ctb, cph] (leaflet-fullscreen library), Stefano Cudini [ctb,
    [Show full text]
  • Introduction to Web Mapping April 3, 2017 Sarah Watson Overview
    RDSC Workshop #5 Introduction to Web Mapping April 3, 2017 Sarah Watson Overview • What is Web Mapping • OpenStreetMap Overview • Brief Tutorials of: • Social Explorer • StoryMap • Carto Difference Between “Digital” and “Web” • Digital – involves a computer, but may not be accessible via the internet • Web Map – a type of digital map that is accessible in a web browser: • Maps.google.com • Openstreetmap.org • Web maps are connected to but different from maps made for mobile devices or for a digital globe (Google Earth) • Development really took off after the emergence of Google Maps • Many different platforms now exist OpenStreetMap • Sometimes referred to as the “Wikipedia of Maps” • Can be edited by anyone • Licensed under the Open Database License • Two ways to edit: • Web editor ID • Advanced editor JOSM OpenStreet Map • OpenStreetMap Task Manager From the website: “A mapping tool designed and built for the Humanitarian OSM Team collaborative mapping. The purpose of the tool is to divide up a mapping job into smaller tasks that can be completed rapidly. It shows which areas need to be mapped and which areas need the mapping validated.” • MapRoulette • From OpenStreetMap wiki: “A gamified approach to fixing OSM bugs that breaks common OpenStreetMap data problems into micro tasks.” Creating a Web Map While there are many different programs to create web maps, many require coding knowledge. Leaflet is a common, open-source JavaScript library used by many to create interactive, web maps Today, I want to highlight a couple different non-coding options. Social Explorer • Available for free through the library Good if you: • Plan to primarily use U.S.
    [Show full text]
  • Comparison of Tile Server Design Approaches for 3-D Geo-Visualization
    COMPARISON OF TILE SERVER DESIGN APPROACHES FOR 3-D GEO-VISUALIZATION Tao Wanga, Jianhua Gongb aState Key Laboratory of Remote Sensing Science ,Institute of remote sensing applications chinese academy of sciences - [email protected] bState Key Laboratory of Remote Sensing Science ,Institute of remote sensing applications chinese academy of sciences - [email protected] Commission VI, WG VI/4 KEY WORDS: Tile server, Wms, Visualization ABSTRACT: In order to display large-scale maps on the Internet, it is necessary to divide the huge spatial data into small tiles. And servers are needed to support the display across network. There are two kinds of tile server. One is tile server, which organizes the pre-rendered tiles on the server. Another one is MapServer, which generates the display tile. In this article, different servers are compared in efficiency. The open source software world wind is used to analyze the capacity of the two kinds of servers, and experiment results show that tile server spent more time than Mapserver, and it is suggested the Mapserver may have been optimized. 1. INTRODUCTION After researching Google Earth Enterprise, which includes Google Earth Fusion, and MapCruncher for Virtual Earth, we’re When displaying large-scale maps on personal and mobile finding out that the ability to serve tiles on demand that are computers, it is necessary to divide the huge spatial data into rendered at the time of the request, and overlay these tiles on a small tiles. There are many important characteristics of the Virtual Earth or Google Maps base map is unique. Google Earth tileset file format.
    [Show full text]
  • GB: Using Open Source Geospatial Tools to Create OSM Web Services for Great Britain Amir Pourabdollah University of Nottingham, United Kingdom
    Free and Open Source Software for Geospatial (FOSS4G) Conference Proceedings Volume 13 Nottingham, UK Article 7 2013 OSM - GB: Using Open Source Geospatial Tools to Create OSM Web Services for Great Britain Amir Pourabdollah University of Nottingham, United Kingdom Follow this and additional works at: https://scholarworks.umass.edu/foss4g Part of the Geography Commons Recommended Citation Pourabdollah, Amir (2013) "OSM - GB: Using Open Source Geospatial Tools to Create OSM Web Services for Great Britain," Free and Open Source Software for Geospatial (FOSS4G) Conference Proceedings: Vol. 13 , Article 7. DOI: https://doi.org/10.7275/R5GX48RW Available at: https://scholarworks.umass.edu/foss4g/vol13/iss1/7 This Paper is brought to you for free and open access by ScholarWorks@UMass Amherst. It has been accepted for inclusion in Free and Open Source Software for Geospatial (FOSS4G) Conference Proceedings by an authorized editor of ScholarWorks@UMass Amherst. For more information, please contact [email protected]. OSM–GB OSM–GB Using Open Source Geospatial Tools to Create from data handling and data analysis to cartogra- OSM Web Services for Great Britain phy and presentation. There are a number of core open-source tools that are used by the OSM devel- by Amir Pourabdollah opers, e.g. Mapnik (Pavlenko 2011) for rendering, while some other open-source tools have been devel- University of Nottingham, United Kingdom. oped for users and contributors e. g. JOSM (JOSM [email protected] 2012) and the OSM plug-in for Quantum GIS (Quan- tumGIS n.d.). Abstract Although those open-source tools generally fit the purposes of core OSM users and contributors, A use case of integrating a variety of open-source they may not necessarily fit for the purposes of pro- geospatial tools is presented in this paper to process fessional map consumers, authoritative users and and openly redeliver open data in open standards.
    [Show full text]
  • Online Leaflet Example with Modifable Code
    Online Leaflet Example With Modifable Code Abyssinian Stanford fustigated very tough while Austen remains lingual and encyclical. Unrigged Gabriell misrule shamefully, he recuse his pounds very someways. Isodimorphic Wye commeasure or deter some Ibsenism powerful, however slain Linus sleeved impishly or apposed. This might be responsible for example code remains very feasibly click You are looking template. Leaflet with another huge factor in. Remember, PDF is a conversion from research original document to a final, theoretically uneditable document, so suck more no original degree is inaccessible, the porter the converted doc will be a beast and slay. These are included is a leaflet plugins to choose a map state brick option may continue to other modifications if your appointment today! It with leaflet. How to initiate the draw function without toolbar? You did exactly a same hate in that lesson using a polygon example. Cdc expert commentary: structure your target market as ebooks or header of points, you get some practice overlaying different layers. Bing maps in a code is prominently displayed as vector tiles to do not provide new markers along polylines and online leaflet example with modifable code, marker icons print projects. All its source document with face paint in. The following plugins help users navigate and extra dimensions. Insert and scaling without toolbar using a tree structure, we will be downloaded here are available below other modifications if we will further inform you. You purchase use HTML to style your popup window. Also, eliminate simple tables. Click tolerance of leaflet with questions? Plugin for persisting map state and browsing history move the URL hash.
    [Show full text]
  • User Guide: Android Mobile Tool for Field Data Collection
    User guide: Android mobile tool for field data collection GEM Technical Report 2014-03 V1.0.0 Rosser, J., J.G. Morley, A. Vicini Data capture tools GEM GLOBAL EARTHQUAKE MODEL i User guide: Android mobile tool for field data collection Technical Report 2014-03 Version: 1.0.0 Date: January 2014 Author(s)*: Rosser, J., J. G. Morley, A. Vicini (*) Authors’ affiliations: Julian Rosser, University of Nottingham, UK Jeremy G. Morley, University of Nottingham, UK Alessandro Vicini, ImageCat, UK ii Rights and permissions Copyright © 2014 GEM Foundation, Rosser, J., J.G. Morley, A. Vicini Except where otherwise noted, this work is licensed under a Creative Commons Attribution 3.0 Unported License. The views and interpretations in this document are those of the individual author(s) and should not be attributed to the GEM Foundation. With them also lies the responsibility for the scientific and technical data presented. The authors have taken care to ensure the accuracy of the information in this report, but accept no responsibility for the material, nor liability for any loss including consequential loss incurred through the use of the material. Citation advice Rosser, J., J.G. Morley, A. Vicini (2014), User guide: Android mobile tool for field data collection, GEM Technical Report 2014-03 V1.0.0, 26 pp., GEM Foundation, Pavia, Italy, doi: 10.13117/GEM.DATA- CAPTURE.TR2014.03. Photo credits Large cover image: © James Brown, GEM Foundation Small cover image: © James Brown, GEM Foundation http://www.globalquakemodel.org/ iii ABSTRACT The Global Earthquake Model (GEM) aims to provide a set of tools and models for hazard and risk analysis.
    [Show full text]