mapwidget.qml: simplify the map type enumeration into "mapType"

Make the "enumeration" local to the Map object for now.
This will possibly break if another plugin is used in place of the
ESRI plugin, but it will simplify the map toggle button which is about
to be implemented next.

If support for multiple plugins is added on runtime a simple
helper function will be needed that will check the current plugin "name".
And return the appropriate supportedMapTypes[X] for e.g. STREET of that
plugin.

Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
This commit is contained in:
Lubomir I. Ivanov 2017-07-20 02:51:34 +03:00 committed by Dirk Hohndel
parent 8b22435809
commit 468f3b57c0

View file

@ -5,8 +5,6 @@ import QtPositioning 5.3
import org.subsurfacedivelog.mobile 1.0
Item {
readonly property var esriMapTypeIndexes: { "STREET": 0, "SATELLITE": 1 }
Plugin {
id: mapPlugin
name: "esri"
@ -23,6 +21,7 @@ Item {
plugin: mapPlugin
zoomLevel: 1
readonly property var mapType: { "STREET": supportedMapTypes[0], "SATELLITE": supportedMapTypes[1] }
readonly property var defaultCenter: QtPositioning.coordinate(0, 0)
readonly property var defaultZoomIn: 17.0
readonly property var defaultZoomOut: 1.0
@ -30,7 +29,7 @@ Item {
property var newZoom: 1.0
Component.onCompleted: {
activeMapType = supportedMapTypes[esriMapTypeIndexes.SATELLITE]
activeMapType = mapType.SATELLITE
}
MapItemView {