好的,所以我已经看了这个,只找到了一页。
(Google Maps API GeoLocation not working for mobile)
我的问题是我有一些调用google maps API的javascript代码,当我在桌面上使用我的浏览器查看它时显示得很好,我使用的浏览器是google chrome,但是当我尝试查看时它使用我的Android手机,它根本不显示。我不知道问题是什么,我运行了几天,但地图崩溃并停止显示。从那时起,我不得不重新执行代码以使其再次显示。我终于搞定了,但现在我遇到了这个新问题。这是我正在使用的代码。
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<link rel="Stylesheet" type="text/css" href="css/drop.css" />
<link rel="Stylesheet" type="text/css" href="css/login.css" />
<script type="text/javascript" src="http://maps.google.com/maps/api/js? sensor=false"></script>
<script type="text/javascript">
function getLocation() {
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(getMap, showError);
}
else {
alert("Geolocation is not supported by this browser.");
}
}
function initialize( lat, lon ) {
pLatitude = lat;
pLongitutde = lon;
var mapOptions = {
center: new google.maps.LatLng(lat, lon),
zoom: 14,
mapTypeId: google.maps.MapTypeId.ROADMAP,
mapTypeControl: true
}
var map = new google.maps.Map(document.getElementById("map-canvas"), mapOptions);
var marker = new google.maps.Marker({
position: new google.maps.LatLng(lat, lon),
map: map,
title: "Current Location"
});
}
function getMap(position) {
lat = position.coords.latitude;
lon = position.coords.longitude;
google.maps.event.addDomListener(window, 'load', initialize(lat, lon));
}
function showError(error) {
switch (error.code) {
case error.PERMISSION_DENIED:
alert("User denied the request for Geolocation.");
break;
case error.POSITION_UNAVAILABLE:
alert("Location information is unavailable.");
break;
case error.TIMEOUT:
alert("The request to get user location timed out.");
break;
case error.UNKNOWN_ERROR:
alert("An unkown error occurred.");
break;
}
}
</script>
</head>
<body onload="getLocation()">
<div id="map-canvas"></div>
</body>
</html>
答案 0 :(得分:3)
你犯了一些错误。我更新了您的代码并添加了注释以获得解释:http://jsfiddle.net/cj5xF/1/
还有全屏视图(在移动设备上测试):http://jsfiddle.net/cj5xF/1/embedded/result/
来自固定代码的片段:
// When the page has loaded, call the getLocation function.
// Be sure not to use parenthesis after getLocation, or you will
// call it, instead of passing a reference to it to be called later (callback)
google.maps.event.addDomListener(window, 'load', getLocation);
这将在页面加载时调用getLocation
函数。 getLocation
函数将执行其地理位置检查,如果可用,请调用initialize
并将position
对象传递给它,其中包含坐标。 initialize
然后会使用这些坐标创建一个谷歌地图。