我是cordova的初學者。 我有一個問題,顯示谷歌地圖。
我可以使用JavaScript在網站上顯示谷歌地圖。 另外我可以使用java和xcode顯示谷歌地圖。如何獲得cordova的googlemap api密鑰
但不知道如何顯示使用科爾多瓦。因爲它是javascript + html。
所以我可以使代碼如下代碼。
<!DOCTYPE html>
<html>
<head>
<title>Simple Map</title>
<meta name="viewport" content="initial-scale=1.0">
<meta charset="utf-8">
<style>
/* Always set the map height explicitly to define the size of the div
* element that contains the map. */
#map {
height: 100%;
}
/* Optional: Makes the sample page fill the window. */
html, body {
height: 100%;
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<div id="map"></div>
<script>
var map;
function initMap() {
map = new google.maps.Map(document.getElementById('map'), {
center: {lat: -34.397, lng: 150.644},
zoom: 8
});
}
</script>
<script src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&callback=initMap"
async defer></script>
</body>
</html>
它當然在web瀏覽器上運行良好。我的問題是,我應該使用什麼樣的密鑰?
我第一次使用javascript鍵。但它不適用於iOS和Android。我想在android上運行我應該使用andorid鍵。但如果是的話我怎麼才能得到沙足跡的關鍵。在iOS上也是如此。沒有這個我不能得到Android谷歌地圖API密鑰。我試圖找到解決方案,但很多視頻和文檔,如果我使用JavaScript API鍵,它運作良好。但事實並非如此。我確定。如果是,我們如何才能獲得鑰匙?第二是它的權利插入到JavaScript代碼的Android和iOS的關鍵?
請幫幫我。謝謝。
https://github.com/mapsplugin/cordova-plugin-googlemaps/wiki/Installation –