summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--examples/location/mapviewer/doc/src/mapviewer.qdoc6
-rw-r--r--src/location/doc/src/qml-maps.qdoc4
2 files changed, 5 insertions, 5 deletions
diff --git a/examples/location/mapviewer/doc/src/mapviewer.qdoc b/examples/location/mapviewer/doc/src/mapviewer.qdoc
index e0c320c8..1fe0411c 100644
--- a/examples/location/mapviewer/doc/src/mapviewer.qdoc
+++ b/examples/location/mapviewer/doc/src/mapviewer.qdoc
@@ -52,7 +52,7 @@
\list
\li \l{QtLocation::Map}{Map}
\li \l{QtLocation::MapGestureArea}{MapGestureArea}
- \li \l[QML]{Coordinate}
+ \li \l[QML]{coordinate}
\endlist
\li Finding an address
\list
@@ -76,7 +76,7 @@
\snippet mapviewer/map/MapComponent.qml coord
\snippet mapviewer/map/MapComponent.qml end
- In this example, we give the map an initial center \l [QML]{Coordinate}{coordinate}
+ In this example, we give the map an initial center \l [QML]{coordinate}
with a set latitude and longitude. We also set the initial zoom level to 50% (halfway between
the maximum and minimum).
@@ -140,7 +140,7 @@
With the model, view and delegate now complete, the only missing component
is some kind of control over the model to begin the Route request process.
In the simplest case, we can fill out a Route request using two already
- available \l [QML]{Coordinate}{coordinates}:
+ available \l [QML]{coordinate}{coordinates}:
\snippet mapviewer/mapviewer.qml routecoordinate
diff --git a/src/location/doc/src/qml-maps.qdoc b/src/location/doc/src/qml-maps.qdoc
index 9b6232f5..ecc21672 100644
--- a/src/location/doc/src/qml-maps.qdoc
+++ b/src/location/doc/src/qml-maps.qdoc
@@ -47,7 +47,7 @@ Map item you can center the map, zoom, pinch and make the item flickable.
The places to be added to the map are
\l {Maps and Navigation (QML)#Putting Objects on a Map (Map Overlay Objects)}{MapItems}. The item's
-position is defined by a \l {coordinate}{coordinate} which includes latitude,
+position is defined by a \l {coordinate} which includes latitude,
longitude and altitude. The item is then displayed automatically after it is added to the \l Map.
\section2 Position on map
@@ -112,7 +112,7 @@ snippet we see an \l [QML]{Address} object filled with the desired parameters.
\snippet mapviewer/mapviewer.qml geocode0
The \l [QML]{Address} is later used in a query for the \l GeocodeModel to
-process and determine the geographical \l [QML]{Coordinate}{coordinates}.
+process and determine the geographical \l [QML]{coordinate}{coordinates}.
\snippet mapviewer/map/MapComponent.qml geocode1