1
如何在地圖中包含路線?獲取離子框架中的方向谷歌地圖
我的工作離子的框架,這是我的JS是指ionic.html文件(HTML指數只包括腳本和離子視圖的位置)。我已經安裝了地圖和地理位置科爾多瓦插件。
app.controller('MapController', function($scope, $ionicLoading) {
// var myLatlng = new google.maps.LatLng(37.3000, -120.4833);
var mapOptions = {
//center: myLatlng,
zoom: 16,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
var map = new google.maps.Map(document.getElementById("map"), mapOptions);
navigator.geolocation.getCurrentPosition(function(pos) {
map.setCenter(new google.maps.LatLng(pos.coords.latitude, pos.coords.longitude));
var myLocation = new google.maps.Marker({
position: new google.maps.LatLng(pos.coords.latitude, pos.coords.longitude),
map: map,
title: "My Location"
});
// var newLatlng = new google.maps.LatLng(37.3000, -120.4833);
var torriLocation = new google.maps.Marker({
position: new google.maps.LatLng(44.823889, 10.335894000000053),
map: map,
title: "My Location"
});
});
$scope.map = map;
});
有關說明我的意思是:「我如何能達到藉助車的具體位置,步行或公交車?」
沒有對不起...我的意思,我想知道,例如,我可以如何到達特定的位置(通過汽車,步行,公共汽車......) – Jamil89
使用旅行模式選項爲此..請檢查此示例https://jsfiddle.net/api/post/library/pu回覆/ – Anuj