- OpenLayers 3.x Cookbook(Second Edition)
- Peter J. Langley Antonio Santiago Perez
- 331字
- 2021-07-16 12:37:26
Introduction
Imagery is one of the most important kinds of data to work with in a GIS system. An eye-catching map with beautiful cartography can make an immediate difference to the appeal of a mapping application.
This chapter is all about working with different types of raster layers. We have tried to summarize, with a set of recipes, the most common and important use cases you can find day to day when working with OpenLayers and third-party layer providers.
OpenLayers offers several classes to integrate with different imagery providers, from proprietary providers, such as Bing Maps, and MapQuest, to open source ones, such as OpenStreetMap, and Stamen, or even any Web Map Service (WMS) service provider.
The base class for any layer type is ol.layer.Base, which offers a set of common properties and defines the common behavior for other layer classes. The ol.layer.Layer class further extends the base class with some extra methods and creates sub-classes, such as ol.layer.Tile, which we'll frequently use during this chapter.
The layer itself is decoupled from the layer source. The base class for any layer source is ol.source.Source. This class is extended through other sub-classes, such as ol.source.Tile, and furthermore with ol.source.TileImage, which offers many sub-classes that lay the foundations for the raster layer sources that we'll be using in this chapter later on.
In addition to this, many layer sources inherit from the ol.source.XYZ class, which pides the layer into zoom levels. This way, each zoom level covers the same area but uses a greater set of tiles. For example, at level zero, a grid with one tile covers the whole world; at level one, a grid with four tiles covers the whole world; and so on. As we can see, on each level, the number of tiles and their resolution increases.
This chapter introduces you to some of the built in raster layers from OpenLayers, as well as taking a look at arbitrary WMS layers, and how to manage some common layer properties.
- SPSS數據挖掘與案例分析應用實踐
- Progressive Web Apps with React
- Learning PostgreSQL
- The Modern C++ Challenge
- GeoServer Cookbook
- C# 2012程序設計實踐教程 (清華電腦學堂)
- Visual Basic程序設計(第3版):學習指導與練習
- C語言從入門到精通(第4版)
- Windows Forensics Cookbook
- MATLAB 2020從入門到精通
- Building RESTful Python Web Services
- C語言程序設計上機指導與習題解答(第2版)
- SwiftUI極簡開發
- CodeIgniter Web Application Blueprints
- Julia High Performance(Second Edition)