作者热门文章
- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我有以下要求
我正在创建一张带有方向的 map ,然后在上面显示用户的当前位置。
function showDirection(orgn, dstntn)
{
var directionsService = new google.maps.DirectionsService();
var directionsDisplay = new google.maps.DirectionsRenderer();
var map = new google.maps.Map(document.getElementById('displayMap'), {
zoom : 7,
mapTypeId : google.maps.MapTypeId.ROADMAP
});
directionsDisplay.setMap(map);
directionsDisplay.setPanel(document.getElementById('displayDirections'));
var request = {
origin : orgn,
destination : dstntn,
travelMode : google.maps.DirectionsTravelMode.WALKING
};
directionsService.route(request, function(response, status) {
if (status == google.maps.DirectionsStatus.OK) {
directionsDisplay.setDirections(response);
}
});
var win = function(position) {
var lat = position.coords.latitude;
var long = position.coords.longitude;
var myLatlng = new google.maps.LatLng(lat, long);
var iconimage="images/current_location_small.png";
var marker = new google.maps.Marker({
position: myLatlng,
map: map
icon: iconimage
});
marker.setMap(map);
};
var fail = function(e) {
alert('Can\'t retrieve position.\nError: ' + e);
};
var watchID = navigator.geolocation.getCurrentPosition(win, fail);
}
如果用户在为显示方向而创建的 map 内,以上代码可以正常工作,但如果用户在 map 区域之外,则不会显示他的当前位置。
我不知何故希望所有三个点 1. 起点、2. 目的地和 3. 用户位置都适合 map 。有没有一种方法可以缩小 map 以适合所有三个点,或者以所有三个点都可见的方式创建原始 map 。
最佳答案
在marker.setMap(map);
marker.setMap(map);
//Add these lines to include all 3 points in the current viewport
var bounds = new google.maps.LatLngBounds();
bounds.extend(orgn);
bounds.extend(dstntn);
bounds.extend(myLatlng);
map.fitBounds(bounds);
关于javascript - 使用谷歌地图 API 和 phonegap 显示当前位置+方向?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12316093/
leaflet:一个开源并且对移动端友好的交互式地图 JavaScript 库 中文文档: https://leafletjs.cn/reference.html 官网(英文): ht
我是一名优秀的程序员,十分优秀!