Home
last modified time | relevance | path

Searched refs:toCoordinate (Results 1 – 22 of 22) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/examples/location/planespotter/
H A Dmain.cpp94 toCoordinate = to; in setTo()
99 return toCoordinate; in to()
135 if (currentPosition == toCoordinate) { in swapDestinations()
137 toCoordinate = fromCoordinate; in swapDestinations()
176 fromCoordinate, toCoordinate, easingCurve.valueForProgress(progress))); in updatePosition()
185 QGeoCoordinate fromCoordinate, toCoordinate; member in PlaneController
/OK3568_Linux_fs/buildroot/dl/qt5location/git/examples/location/mapviewer/map/
H A DMapComponent.qml117 coord1 = map.toCoordinate(Qt.point(0,scale.y))
118 coord2 = map.toCoordinate(Qt.point(0+scaleImage.sourceSize.width,scale.y))
334 map.center = map.toCoordinate(mapCenterPoint);
472 lastCoordinate = map.toCoordinate(Qt.point(mouse.x, mouse.y))
538 lastCoordinate = map.toCoordinate(Qt.point(mouse.x, mouse.y))
545 map.toCoordinate(Qt.point(mouse.x, mouse.y)))
603 lastCoordinate = map.toCoordinate(Qt.point(mouse.x, mouse.y))
614 var mouseGeoPos = map.toCoordinate(Qt.point(mouse.x, mouse.y));
626 map.center = map.toCoordinate(mapCenterPoint);
H A DMarker.qml122 Component.onCompleted: coordinate = map.toCoordinate(Qt.point(markerMouseArea.mouseX,
/OK3568_Linux_fs/buildroot/dl/qt5location/git/examples/location/mapviewer/forms/
H A DRouteCoordinate.qml55 property variant toCoordinate
85 toLatitude.text = "" + toCoordinate.latitude
86 toLongitude.text = "" + toCoordinate.longitude
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/declarative_ui/
H A Dtst_map.qml232 … var center = mapPar.toCoordinate(Qt.point((mapPar.width - 1) / 2.0, (mapPar.height - 1) / 2.0))
242 …// Using toCoordinate, below, to verify the actual value of the center, and not what is in the map…
243 … center = mapPar.toCoordinate(Qt.point((mapPar.width - 1) / 2.0, (mapPar.height - 1) / 2.0))
253 … center = mapPar.toCoordinate(Qt.point((mapPar.width - 1) / 2.0, (mapPar.height - 1) / 2.0))
261 … center = mapPar.toCoordinate(Qt.point((mapPar.width - 1) / 2.0, (mapPar.height - 1) / 2.0))
267 … center = mapPar.toCoordinate(Qt.point((mapPar.width - 1) / 2.0, (mapPar.height - 1) / 2.0))
641 var coordAfter = mapTiltBearing.toCoordinate(point)
681 var coord = coordinateMap.toCoordinate(Qt.point(500,500))
685 coord = coordinateMap.toCoordinate(Qt.point(2000, 2000))
689 coord = coordinateMap.toCoordinate(Qt.point(-5, -6))
H A Dtst_map_error.qml150 compare(map_no_plugin.toCoordinate(Qt.point(50,50)).isValid,false)
152 compare(map_error_plugin.toCoordinate(Qt.point(50,50)).isValid,false)
H A Dtst_map_item_fit_viewport.qml592 itemBottomRight = map.toCoordinate(preMapQuickItemScreenPosition)
631 var itemTopLeft = map.toCoordinate(point)
634 var itemBottomRight = map.toCoordinate(point)
H A Dtst_map_item.qml424 var targetCoordinate = map.toCoordinate(51, 51)
446 targetCoordinate = map.toCoordinate(Qt.point(51, 51))
465 targetCoordinate = map.toCoordinate(51, 51)
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/declarativemaps/
H A Dqquickgeomapgesturearea.cpp1002 const QGeoCoordinate &wheelGeoPos = m_declarativeMap->toCoordinate(event->position(), false); in handleWheelEvent()
1166 m_touchCenterCoord = m_declarativeMap->toCoordinate(m_touchPointsCentroid, false); in touchPointStateMachine()
1175 m_touchCenterCoord = m_declarativeMap->toCoordinate(m_touchPointsCentroid, false); in touchPointStateMachine()
1203 QGeoCoordinate startCoord = m_declarativeMap->toCoordinate(m_sceneStartPoint1, false); in startOneTouchPoint()
1230 QGeoCoordinate startCoord = m_declarativeMap->toCoordinate(startPos, false); in startTwoTouchPoints()
1700 … QGeoCoordinate newStartCoord = m_declarativeMap->toCoordinate(m_touchPointsCentroid, false); in panStateMachine()
H A Dqdeclarativegeomap_p.h191 …Q_INVOKABLE QGeoCoordinate toCoordinate(const QPointF &position, bool clipToViewPort = true) const;
H A Dqdeclarativecirclemapitem_p_p.h430 const QGeoCoordinate crd = m->toCoordinate(m->mapFromItem(&m_circle, point)); in contains()
H A Dqdeclarativerectanglemapitem_p_p.h397 const QGeoCoordinate crd = m->toCoordinate(m->mapFromItem(&m_rect, point)); in contains()
H A Dqdeclarativepolygonmapitem_p_p.h653 const QGeoCoordinate crd = m->toCoordinate(m->mapFromItem(&m_poly, point)); in contains()
H A Dqdeclarativegeomap.cpp1542 QGeoCoordinate QDeclarativeGeoMap::toCoordinate(const QPointF &position, bool clipToViewPort) const in toCoordinate() function in QDeclarativeGeoMap
/OK3568_Linux_fs/buildroot/dl/qt5location/git/examples/location/places/items/
H A DMapComponent.qml66 coord1 = map.toCoordinate(Qt.point(0,scale.y))
67 coord2 = map.toCoordinate(Qt.point(0+scaleImage.sourceSize.width,scale.y))
/OK3568_Linux_fs/buildroot/dl/qt5location/git/examples/location/mapviewer/
H A Dmapviewer.qml68 property variant toCoordinate: QtPositioning.coordinate(59.9645, 10.671)
234 properties: { "toCoordinate": toCoordinate,
/OK3568_Linux_fs/buildroot/dl/qt5location/git/dist/
H A Dchanges-5.9.227 - [QTBUG-61813] Fixed Map.toCoordinate always clamping y values to 0
/OK3568_Linux_fs/buildroot/dl/qt5location/git/examples/location/itemview_transitions/
H A Dmain.qml91 var crd = map.toCoordinate(Qt.point(mouseX, mouseY))
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/manual/mappolyline_tester/
H A Dmain.qml106 var crd = map.toCoordinate(Qt.point(mouse.x, mouse.y))
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/manual/mapobjects_tester/
H A Dmain.qml112 var crd = map.toCoordinate(Qt.point(mouse.x, mouse.y))
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/manual/mapitems_backends/
H A Dmain.qml130 var crd = map.toCoordinate(Qt.point(mouse.x, mouse.y))
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/imports/location/
H A Dplugins.qmltypes574 name: "toCoordinate"
580 name: "toCoordinate"