我想在由Cordova構建的應用程序中添加Google或Bing地圖 我也想添加Facebook like box。 我該怎麼做。如何在Apache Cordova中添加Google或Bing地圖應用
-3
A
回答
0
嘗試在HTML頁面上運行您的地圖例如:map.html 並將該地圖頁加載到您的div。 (它適用於我使用WinJS)。
<div data-win-control="WinJS.UI.HtmlControl" data-win-options="{uri: './map.html'}"></div>
+0
中使用此地圖,並且如何加載bing/google api?據我所知,只要你不從iframe/ms-webview中取出它,你就無法從cdn中取出它!! – belzebu 2015-10-01 04:52:11
0
<div id="map" style="width:100%; height:500px;"></div>
<script>
$(document).ready(function() {
var geocoder;
var map;
function initialize()
{
geocoder = new google.maps.Geocoder();
var mapOptions = {
zoom: 12
};
map = new google.maps.Map(document.getElementById('map'), mapOptions);
codeAddress();
}
google.maps.event.addDomListener(window, 'load', initialize);
if (navigator.geolocation)
{
navigator.geolocation.getCurrentPosition(function (position) {
initialLocation = new google.maps.LatLng(position.coords.latitude, position.coords.longitude);
map.setCenter(initialLocation);
});
}
});
</script>
// and Include
<script src="js/jquery.js"></script>
<script type="text/javascript" src="//www.google.in/jsapi"></script>
<script type="text/javascript" src="js/jquery.googlemap.js"></script>
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp"></script>
相關問題
- 1. 在Bing地圖中添加圖釘
- 2. 在ArcGIS API中添加Google地圖或bing作爲基礎圖層android
- 3. 如何在Google地圖中實現Bing地圖,如InfoWindow?
- 4. 如何在Qt中的應用程序中添加Google地圖?
- 5. 適用於理想Bing地圖或Google地圖的JavaScript UI?
- 6. 如何在一個應用程序中結合Google地圖API和其他地圖(maps.andex.ru或Bing)
- 7. 如何在Bing地圖控件中添加信息框?
- 8. 如何將wms圖層添加到使用javascript的bing地圖?
- 9. Bing地圖SDK Win8.1 - 添加圖層
- 10. 從Bing地圖切換到Google地圖
- 11. 如何在默認Google地圖上添加疊加地圖?
- 12. 對於Bing地圖或Google地圖或ArcGIS - C#中的Solar Teminator(太陽腳印)#
- 13. 在ASP.net中添加圖釘到bing地圖視圖MVC3
- 14. 如何將信息框添加到bing地圖中的航點
- 15. 如何在Android應用程序中保存添加的Google地圖覆蓋圖?
- 16. 如何將圖像添加到信息框? - Bing地圖V8
- 17. 我如何着手在Google地圖中添加地點?
- 18. 如何在Google地圖中添加建議的地點?
- 19. 谷歌地圖或Bing地圖API?
- 20. Bing地圖無法從本地應用數據加載圖塊
- 21. Google或Bing地圖API - 創建和使用您自己的地圖
- 22. 無法在Android應用中添加Google地圖
- 23. 如何通過在Google地圖上添加疊加圖像來隱藏Google地圖中的Google徽標?
- 24. 使用bing地圖在Windows應用商店的x86或x64?
- 25. 在Windows窗體應用程序的Bing地圖上添加圖釘
- 26. 在wordpress中添加google地圖
- 27. 在Google地圖中添加InfoWindow
- 28. 如何將標記添加到地圖(Google JS api,Leaflet或Mapbox)?
- 29. 如何在兩個jQuery應用程序選項卡中添加Google地圖
- 30. 如何在ios應用程序中添加Google地圖方向API?
作爲設立在網頁中的地圖很簡單。 – 2015-02-07 13:04:26
是在apache cordova應用中支持iframe標籤..? – 2015-02-08 17:46:32
只需轉到此https://developers.google.com/maps/documentation/javascript/。您可以在您的項目 – 2015-02-08 17:49:21