- 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.
- Learning Selenium Testing Tools with Python
- arc42 by Example
- Web交互界面設計與制作(微課版)
- 編寫高質量代碼:改善Python程序的91個建議
- Java開發入行真功夫
- Spring Cloud、Nginx高并發核心編程
- Building a Recommendation Engine with Scala
- INSTANT Mercurial SCM Essentials How-to
- Node.js Design Patterns
- 組態軟件技術與應用
- 單片機C語言程序設計實訓100例
- MySQL入門很輕松(微課超值版)
- 移動增值應用開發技術導論
- Python從入門到精通(第3版)
- ASP.NET求職寶典