forked from organicmaps/organicmaps
[qt][editor] Display copyable coordinates for convenience.
This commit is contained in:
parent
89a7e22666
commit
cb2d67f229
1 changed files with 11 additions and 0 deletions
|
@ -6,6 +6,7 @@
|
|||
|
||||
#include "indexer/classificator.hpp"
|
||||
#include "indexer/feature.hpp"
|
||||
#include "indexer/feature_algo.hpp"
|
||||
#include "indexer/osm_editor.hpp"
|
||||
|
||||
#include "base/collection_cast.hpp"
|
||||
|
@ -34,6 +35,16 @@ EditorDialog::EditorDialog(QWidget * parent, FeatureType const & feature, Framew
|
|||
|
||||
QVBoxLayout * vLayout = new QVBoxLayout();
|
||||
|
||||
// Zero uneditable row: coordinates.
|
||||
ms::LatLon const ll = MercatorBounds::ToLatLon(feature::GetCenter(feature));
|
||||
QHBoxLayout * coordinatesRow = new QHBoxLayout();
|
||||
coordinatesRow->addWidget(new QLabel("Latitude, Longitude:"));
|
||||
QLabel * coords = new QLabel(QString::fromStdString(strings::to_string_dac(ll.lat, 6) +
|
||||
"," + strings::to_string_dac(ll.lon, 6)));
|
||||
coords->setTextInteractionFlags(Qt::TextSelectableByMouse);
|
||||
coordinatesRow->addWidget(coords);
|
||||
vLayout->addLayout(coordinatesRow);
|
||||
|
||||
// First uneditable row: feature types.
|
||||
string strTypes;
|
||||
feature.ForEachType([&strTypes](uint32_t type)
|
||||
|
|
Loading…
Add table
Reference in a new issue