maplibre_native 0.7.0

Rust bindings to the MapLibre Native map rendering engine
Documentation
1
2
3
4
5
6
7
#include "util.h"

namespace mln::bridge {
std::string rustSliceToString(const rust::Slice<const uint8_t>& slice) {
    return std::string(reinterpret_cast<const char*>(slice.data()), slice.size());
}
}