- support gis (datum wgs84)
- support glob 3d earth
- map tms wms(local vector maps raster)
- train hight (tms wms)
- gis basic tools (ppi los roller)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
width : 100, text: 'Greetings', color: '#FF0000' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Text { | |
// (1) identifier | |
id: thisLabel | |
// (2) set x- and y-position | |
x: 24; y: 16 | |
// (3) bind height to 2 * width | |
height: 2 * width |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// RectangleExample.qml | |
import QtQuick 2.5 | |
// The root element is the Rectangle | |
Rectangle { | |
// name this element root | |
id: root | |
// properties: <name>: <value> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iomanip> | |
#include <iostream> | |
#include <mutex> | |
#include <numeric> | |
#include <thread> | |
#include <vector> | |
class dynamic_range | |
{ | |
public: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iomanip> | |
#include <iostream> | |
#include <numeric> | |
#include <thread> | |
#include <vector> | |
int main() | |
{ | |
std::vector<std::thread> thread_list; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <atomic> | |
#include <iomanip> | |
#include <iostream> | |
#include <numeric> | |
#include <thread> | |
#include <vector> | |
int main() | |
{ | |
std::atomic_int32_t counter{0}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*************************************************** | |
* File %{Cpp:License:FileName} | |
* Copyright (C) 2021-7-21 ModernCpp.ir . All Rights Reserved. * | |
***************************************************/ | |
#include <QCoreApplication> | |
#include <QFile> | |
#include <QNetworkAccessManager> | |
#include <QNetworkReply> | |
#include <QTextCodec> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*************************************************** | |
* File add_static_make.h | |
* Copyright (C) 2021-6-19 ModernCpp.ir . All Rights Reserved. * | |
***************************************************/ | |
#ifndef ADD_STATIC_MAKE_H | |
#define ADD_STATIC_MAKE_H | |
#include <memory> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class NormalPoint; | |
class LoiterPoint; | |
class ExporterInterface | |
{ | |
public: | |
virtual void exportNormalPoint(const NormalPoint* element) const = 0; | |
virtual void exportLoiterPoint(const LoiterPoint* element) const = 0; | |
}; |