galileo 0.2.1

Cross-platform general purpose map rendering engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
use galileo_mvt::MvtTile;

use crate::render::PackedBundle;

/// Decoded and packed vector tile.
pub struct VectorTile {
    /// Original MVT tile.
    pub mvt_tile: MvtTile,
    /// Packed render bundle to draw this tile.
    pub bundle: Box<dyn PackedBundle>,
}