From 3dfe1debacab663ee61a67b98e928fdb67f43778 Mon Sep 17 00:00:00 2001 From: Damien Date: Mon, 14 Oct 2013 07:49:05 +0200 Subject: [PATCH] GoogleMap: Little fix --- src/GoogleMapControl.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/GoogleMapControl.cpp b/src/GoogleMapControl.cpp index e9cb71def..9c74c76c0 100644 --- a/src/GoogleMapControl.cpp +++ b/src/GoogleMapControl.cpp @@ -231,7 +231,7 @@ void GoogleMapControl::createHtml() " };\n" // setup the map, and fit to contain the limits of the route - " map = new google.maps.Map(document.getElementById('map_canvas'), myOptions);\n" + " map = new google.maps.Map(document.getElementById('map-canvas'), myOptions);\n" " var sw = new google.maps.LatLng(%1,%2);\n" // .ARG 1, 2 " var ne = new google.maps.LatLng(%3,%4);\n" // .ARG 3, 4 " var bounds = new google.maps.LatLngBounds(sw,ne);\n" @@ -268,7 +268,7 @@ void GoogleMapControl::createHtml() // the main page is rather trivial currentPage += QString("\n" "\n" - "
\n" + "
\n" "\n" "\n"); }