私は位置を表示するにはGoogleマップを表示する必要があるイオンアプリに取り組んでいます。地図の衛星とストリートビューのオプションを無効にする必要がありますが、適切な方法はありません。 また、マップで問題が発生している場合があります。画面上に表示されることもあります。Googleマップで衛星とストリートビューのオプションを無効にするには
これは、私はあなたがマップを有効にし、それにオプションを渡すとき、あなたはmapTypeControlOptionsを指定する機会を持っているコントローラ
$scope.addLoc = function(){
$cordovaGeolocation.getCurrentPosition(options).then(function(position){
$scope.lat = position.coords.latitude;
$scope.long = position.coords.longitude;
var url = "http://maps.googleapis.com/maps/api/geocode/json?latlng="+$scope.lat+","+$scope.long+"&sensor=true";
$http.get(url)
.then(function(res) {
$rootScope.address = res.data.results[0].formatted_address;
console.log($rootScope.address);
}, function(error) {
console.log(error);
});
console.log(position);
var latLng = new google.maps.LatLng(position.coords.latitude, position.coords.longitude);
var mapOptions = {
center: latLng,
zoom: 4,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
$scope.map = new google.maps.Map(document.getElementById("map"), mapOptions);
$scope.marker = new google.maps.Marker({
position: new google.maps.LatLng($scope.lat, $scope.long),
map: $scope.map,
title: 'Drag me!'
}, function(err) {
console.err(err);
});
}, function(error){
console.log("Could not get location");
});
}
コード更新で試したことは何ですか?この助けを参照することをお勧めします。http://stackoverflow.com/help/how-to-ask – Aravind