Ich versuche Cordova Google Map in Framework7 HTML zu integrieren, aber es zeigt keine Karte dort, obwohl ich ähnliche Code für normale HTML-Seite schreiben und seine Arbeit dort. Jede Hilfe wird sehr geschätzt.Cordova Karte nicht geladen in Framework7
// Wait for device API libraries to load
//
document.addEventListener("deviceready", onDeviceReady, false);
// device APIs are available
//
function onDeviceReady() {
//navigator.geolocation.getCurrentPosition(onSuccess, onError);
var mapDiv = document.getElementById('map_canvas');
var GOOGLE = new plugin.google.maps.LatLng(37.422858, -122.085065);
var map = plugin.google.maps.Map.getMap(mapDiv);
map.addEventListener(plugin.google.maps.event.MAP_READY, function() {
map.setCenter(GOOGLE);
});
}
</script>