Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases now! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Expert GeoServer
Expert GeoServer

Expert GeoServer: Build and secure advanced interfaces and interactive maps

eBook
$17.99 $25.99
Paperback
$32.99
Subscription
Free Trial
Renews at $19.99p/m

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
Table of content icon View table of contents Preview book icon Preview Book

Expert GeoServer

Speed Up Your App with Tile Caching

In this chapter, we will use tiles, pre-rendered portions of a map, to allow your app to load more rapidly. While the subject of tile caching can get pretty complex, I'll be covering the material you need to know to get your tile cache up and running and fix any issues that may occur.

First, we'll cover the tile caching basics. Then, you'll learn how to configure tile caching and GeoServer. Next, you'll create a tile-backed web map app, you'll learn to use the tile cache, and finally we'll explore methods for solving problems with tile caching.

In this chapter, we will cover the following topics:

  • Tile caching basics
  • Configure tile caching in GeoServer
  • Creating a tile-backed OL app
  • Using the tile cache
  • Resolving problems with tile caching

Tile caching basics

In this section, you'll learn key concepts for tile caching, including tile caching schemes. We'll look at some software options for tile caching, and finally you'll learn about the process associated with the GeoServer tile caching stack that we'll be using in this section.

Tile caching is very useful when you are working with background maps, or for static content that does not change very often or involve much interaction. An example of tile caching is OpenStreetMap (https://www.openstreetmap.org/#map=10/21.2516/86.7343), and you can see tile caching at work as we zoom in and out of the map; portions of the map are pre-rendered as tiles, little images, and then they're stitched together by the frontend OpenLayers client, as shown in the following screenshot:

This allows very complex cartography to be delivered very quickly to our...

Configuring tile caching in GeoServer

In the last section, you learned the fundamentals of tile caching. In this section, you'll learn the ins and outs of setting up tile caching in GeoServer. First, you'll learn all the global and layer options for tile caching in the GeoServer web administration interface. Then, we'll look at these settings in the XML files under the GeoServer directory. Finally, you'll learn about gridsets and why these are important in building your tile-cache-backed app.

We disabled all of these other services in the previous section, as shown in the following screenshot, since we'll be using WMST, which is enabled in the Services portion of the sidebar:

You can set a number of global options that will be available on all new layers or layer groups that will be tiled. Let's look at a couple of these options:

The metatile size...

Creating a tile-backed OL app

In the previous section, you learned how to configure GeoServer for tile caching. In this section, you will learn how to create a tile-backed OpenLayers app using the WMTS tile scheme. First, we'll look at a WMTS example in more detail. We'll examine the CapabilitiesResponse from our GeoServer endpoint, and finally we'll walk through the frontend code. WMTS is the current best practice for tile caching in GeoServer. You can think of it as the best of WMS and TMS, providing WMS-like syntax and capabilities with the tile grid coordinate performance of TMS. As with other OGC standards, the list of parameters for WMTS is available in the implementation standard document. The tile matrix set is based on pixel size, zoom levels, scale denominators, and bounding boxes. Essentially, more tiles will need to be generated at larger scales. You...

Using the tile cache

In the previous section, you learned how to create a tile-backed app using OpenLayers. In this section, we'll take a deeper dive into using the tile cache. We'll start by viewing the app we created in the last section in the browser. Next, we'll send a request for a tile generated by the app, but this time with the command-line utility curl. Finally, you'll learn about seeding and rendering the tile cache.

Here is the OpenLayers app that we created in the previous section:

We'll use Developer tools from the browser again to see a URL for a particular tile, and then see what that looks like in curl. You can see we have tile requests here to OpenStreetMap, and also to our GeoServer instance:

I'll just grab one of these link addresses, URLs, and then, moving over into the command line, if we already have curl installed, we can...

Resolving problems with tile caching

In the previous section, you learned how to use the GeoServer tile cache. In this section, you'll learn about resolving issues that may arise with tile caching. First, you'll learn how to resolve the most common source of tile caching errors: parameters. Next, you'll learn about issues arising from rendering tiles. Finally, we'll review some other issues that may occur. The following example is showing a particular URL that includes parameters running through curl, which you saw in the previous section:

I changed a parameter in this URL; the tile matrix is changed to be 28, 3857 :28. This is not a tile matrix parameter that exists in the gridset, so we get an error back: InvalidParameterValue, related to TILEMATRIX.

So, to resolve an error of this sort, you would need to add 385728 to the gridset for this layer. The general...

Summary

This concludes the chapter on using tile caching to make your app faster. This was a challenging chapter, so give yourself a pat on the back for getting through it. In this chapter, we used tiles, pre-rendered portions of a map, to allow your app to load more rapidly. I covered the material you need to know to get your tile cache up and running, and fix any issues that may occur. In the next chapter, you'll learn how to enable additional GeoServer capabilities and tune your GeoServer instance for even better performance.

Left arrow icon Right arrow icon
Download code icon Download Code

Key benefits

  • Resolve bottlenecks, optimize data stores, and cluster server resources
  • Use identity management and authentication for a user-specific, secure web application
  • Go beyond traditional web hosting to explore the full range of hosting options in the cloud

Description

GeoServer is open source, server-side software written in Java that allows users to share and edit geospatial data. In this book, you'll start by learning how to develop a spatial analysis platform with web processing services. Then you'll see how to develop an algorithm by chaining together geospatial analysis processes, which you can share with anyone in the world. Next you'll delve into a very important technique to improve the speed of your map application—tile caching. Here, you'll understand how tile caching works, how to develop an effective tile cache-supported web service, and how to leverage tile caching in your OpenLayers web application. Further on, you'll explore important tweaks to produce a performant GeoServer-backed web mapping application. Moving on, you'll enable authentication on the frontend and backend to protect sensitive map data, and deliver sensitive data to your end user. Finally, you'll see how to put your web application into production in a secure and user-friendly way. You'll go beyond traditional web hosting to explore the full range of hosting options in the cloud, and maintain a reliable server instance.

Who is this book for?

This book is for anyone who wants to learn about advanced interfaces, security, and troubleshooting techniques in GeoServer. A basic understanding of GeoServer is required

What you will learn

  • Develop a WPS-processing service to allow web-based geospatial data processing
  • Get to know important techniques to improve the speed of your web map application—tile caching, raster data optimization, and server clustering
  • Find out which GeoServer settings resolve bottlenecks
  • Develop an algorithm by chaining geospatial analysis processes together
  • Put your application into production with hosting, monitoring, and automated backup and recovery
  • Understand how to develop an effective tile cache-supported web service
  • Master techniques that ensure resilient server deployment

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Jul 31, 2018
Length: 134 pages
Edition : 1st
Language : English
ISBN-13 : 9781789535983
Category :
Languages :
Tools :

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want

Product Details

Publication date : Jul 31, 2018
Length: 134 pages
Edition : 1st
Language : English
ISBN-13 : 9781789535983
Category :
Languages :
Tools :

Packt Subscriptions

See our plans and pricing
Modal Close icon
$19.99 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
$199.99 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just $5 each
Feature tick icon Exclusive print discounts
$279.99 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just $5 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total $ 142.97
PostGIS Cookbook
$54.99
GeoServer Beginner's Guide
$54.99
Expert GeoServer
$32.99
Total $ 142.97 Stars icon

Table of Contents

6 Chapters
Developing a Spatial Analysis Platform with WPS Chevron down icon Chevron up icon
Speed Up Your App with Tile Caching Chevron down icon Chevron up icon
Optimizing GeoServer Chevron down icon Chevron up icon
Secure Authentication Chevron down icon Chevron up icon
Putting it into Production Chevron down icon Chevron up icon
Other Books You May Enjoy Chevron down icon Chevron up icon

Customer reviews

Rating distribution
Full star icon Empty star icon Empty star icon Empty star icon Empty star icon 1
(1 Ratings)
5 star 0%
4 star 0%
3 star 0%
2 star 0%
1 star 100%
R. L. Hore Oct 13, 2018
Full star icon Empty star icon Empty star icon Empty star icon Empty star icon 1
I was expecting more from this book than I can find easily on the web with a simple search. Very dissapointing
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

How do I buy and download an eBook? Chevron down icon Chevron up icon

Where there is an eBook version of a title available, you can buy it from the book details for that title. Add either the standalone eBook or the eBook and print book bundle to your shopping cart. Your eBook will show in your cart as a product on its own. After completing checkout and payment in the normal way, you will receive your receipt on the screen containing a link to a personalised PDF download file. This link will remain active for 30 days. You can download backup copies of the file by logging in to your account at any time.

If you already have Adobe reader installed, then clicking on the link will download and open the PDF file directly. If you don't, then save the PDF file on your machine and download the Reader to view it.

Please Note: Packt eBooks are non-returnable and non-refundable.

Packt eBook and Licensing When you buy an eBook from Packt Publishing, completing your purchase means you accept the terms of our licence agreement. Please read the full text of the agreement. In it we have tried to balance the need for the ebook to be usable for you the reader with our needs to protect the rights of us as Publishers and of our authors. In summary, the agreement says:

  • You may make copies of your eBook for your own use onto any machine
  • You may not pass copies of the eBook on to anyone else
How can I make a purchase on your website? Chevron down icon Chevron up icon

If you want to purchase a video course, eBook or Bundle (Print+eBook) please follow below steps:

  1. Register on our website using your email address and the password.
  2. Search for the title by name or ISBN using the search option.
  3. Select the title you want to purchase.
  4. Choose the format you wish to purchase the title in; if you order the Print Book, you get a free eBook copy of the same title. 
  5. Proceed with the checkout process (payment to be made using Credit Card, Debit Cart, or PayPal)
Where can I access support around an eBook? Chevron down icon Chevron up icon
  • If you experience a problem with using or installing Adobe Reader, the contact Adobe directly.
  • To view the errata for the book, see www.packtpub.com/support and view the pages for the title you have.
  • To view your account details or to download a new copy of the book go to www.packtpub.com/account
  • To contact us directly if a problem is not resolved, use www.packtpub.com/contact-us
What eBook formats do Packt support? Chevron down icon Chevron up icon

Our eBooks are currently available in a variety of formats such as PDF and ePubs. In the future, this may well change with trends and development in technology, but please note that our PDFs are not Adobe eBook Reader format, which has greater restrictions on security.

You will need to use Adobe Reader v9 or later in order to read Packt's PDF eBooks.

What are the benefits of eBooks? Chevron down icon Chevron up icon
  • You can get the information you need immediately
  • You can easily take them with you on a laptop
  • You can download them an unlimited number of times
  • You can print them out
  • They are copy-paste enabled
  • They are searchable
  • There is no password protection
  • They are lower price than print
  • They save resources and space
What is an eBook? Chevron down icon Chevron up icon

Packt eBooks are a complete electronic version of the print edition, available in PDF and ePub formats. Every piece of content down to the page numbering is the same. Because we save the costs of printing and shipping the book to you, we are able to offer eBooks at a lower cost than print editions.

When you have purchased an eBook, simply login to your account and click on the link in Your Download Area. We recommend you saving the file to your hard drive before opening it.

For optimal viewing of our eBooks, we recommend you download and install the free Adobe Reader version 9.