- Mastering OpenLayers 3
- Gábor Farkas
- 327字
- 2021-07-16 09:33:50
Before getting started
Before moving on and customizing the default appearance, we should talk about its rendering process. OpenLayers 3 is a canvas-based web mapping library, which means that it draws everything it can on a single canvas
element. This not only makes the rendering process faster, but also prevents direct styling with CSS. However, there are some parts rendered as pure DOM elements. These parts, specifically the controls, overlays, and drag boxes, can be styled directly. For the other parts, like vector data, the capabilities of the canvas
element can be used for styling, mostly with inner methods. We will discuss rendering in a later chapter in more detail. For now, keeping this nature of the library in mind should be enough.
Tip
Using the DOM renderer opens up new possibilities in CSS styling. However, it cannot render vector data in SVG format; therefore, you can only style image layers directly. The library also loses performance; thus, using the DOM renderer should be considered as a generally bad practice. Renderers in OpenLayers 3 will be discussed in more detail in Chapter 7, Mastering the Renderers.
Basic considerations
From now on, step by step, we will make a simple WebGIS application with OpenLayers 3. In most of the chapters, we will extend the code created in the previous one. To make it clear, we will consider the current goal at the beginning of every chapter.
In this chapter, after a few warm-up examples, we will make the layout of our application. We will make a highly adaptable full-screen application; therefore, we will use relative units whenever it is possible. We will also make sure that our design does not prevent the usage of the default one. For now, the application will have three parts. The map canvas will display the map, the toolbar will contain the control buttons (the tools), and the notification bar will inform the user about the state of our application in various ways.
- Mastering NetBeans
- Hands-On Machine Learning with scikit:learn and Scientific Python Toolkits
- SOA實踐
- 深入淺出WPF
- iOS應用逆向工程(第2版)
- C語言實驗指導及習題解析
- 用戶體驗增長:數字化·智能化·綠色化
- Getting Started with Laravel 4
- 常用工具軟件立體化教程(微課版)
- Test-Driven Development with Django
- Node.js 12實戰
- 深度學習入門:基于Python的理論與實現
- Drupal Search Engine Optimization
- C# 7 and .NET Core 2.0 Blueprints
- HTML5+CSS3+JavaScript案例實戰