31 lines
995 B
C++
31 lines
995 B
C++
// Copyright (C) 2023 MapLibre contributors
|
|
// Copyright (C) 2019 Mapbox, Inc.
|
|
|
|
// SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
#pragma once
|
|
|
|
#include "types.hpp"
|
|
|
|
#include <mapbox/geojson.hpp>
|
|
#include <mbgl/util/feature.hpp>
|
|
#include <mbgl/util/geometry.hpp>
|
|
|
|
#include <QtCore/QVariant>
|
|
|
|
#include <string>
|
|
|
|
namespace QMapLibre::GeoJSON {
|
|
|
|
mbgl::Point<double> asPoint(const Coordinate &coordinate);
|
|
mbgl::MultiPoint<double> asMultiPoint(const Coordinates &multiPoint);
|
|
mbgl::LineString<double> asLineString(const Coordinates &lineString);
|
|
mbgl::MultiLineString<double> asMultiLineString(const CoordinatesCollection &multiLineString);
|
|
mbgl::Polygon<double> asPolygon(const CoordinatesCollection &polygon);
|
|
mbgl::MultiPolygon<double> asMultiPolygon(const CoordinatesCollections &multiPolygon);
|
|
mbgl::Value asPropertyValue(const QVariant &value);
|
|
mbgl::FeatureIdentifier asFeatureIdentifier(const QVariant &id);
|
|
mbgl::GeoJSONFeature asFeature(const Feature &feature);
|
|
|
|
} // namespace QMapLibre::GeoJSON
|