1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
#include <mbgl/map/view.hpp> #include <mbgl/map/map.hpp> #include <cassert> namespace mbgl { void View::initialize(Map *map_) { assert(map_); map = map_; } PremultipliedImage View::readStillImage() { return {}; } void View::notifyMapChange(MapChange) { // no-op } } // namespace mbgl