diff options
Diffstat (limited to 'tests/auto/declarative_ui')
-rw-r--r-- | tests/auto/declarative_ui/tst_map.qml | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/tests/auto/declarative_ui/tst_map.qml b/tests/auto/declarative_ui/tst_map.qml index 52dcac11..8b101bf1 100644 --- a/tests/auto/declarative_ui/tst_map.qml +++ b/tests/auto/declarative_ui/tst_map.qml @@ -38,18 +38,6 @@ Item { // General-purpose elements for the test: Plugin { id: testPlugin; name: "qmlgeo.test.plugin"; allowExperimental: true } Plugin { id: testPlugin2; name: "gmlgeo.test.plugin"; allowExperimental: true } - Plugin { id: herePlugin; name: "here"; - parameters: [ - PluginParameter { - name: "here.app_id" - value: "stub" - }, - PluginParameter { - name: "here.token" - value: "stub" - } - ] - } Plugin { id: testPluginLazyParameter; name: "qmlgeo.test.plugin" @@ -111,13 +99,13 @@ Item { Map {id: mapPar; plugin: testPlugin; center: coordinate1; width: 512; height: 512} - Map {id: coordinateMap; plugin: herePlugin; center: coordinate3; + Map {id: coordinateMap; plugin: testPlugin; center: coordinate3; width: 1000; height: 1000; zoomLevel: 15 } Map {id: mapTiltBearing; plugin: testPlugin; center: coordinate1; width: 1000; height: 1000; zoomLevel: 4; bearing: 45.0; tilt: 25.0 } - Map {id: mapTiltBearingHere; plugin: herePlugin; center: coordinate1; + Map {id: mapTiltBearingHere; plugin: testPlugin; center: coordinate1; width: 1000; height: 1000; zoomLevel: 4; bearing: 45.0; tilt: 25.0 } Map { |