0

我正在尝试在我的 phonegap 构建中显示跟踪用户位置的地图。我正在尝试使用这个例子,

http://view.jquerymobile.com/master/demos/map-geolocation/

我已将 html css 和 js 添加到我的应用程序中并添加

<feature name="http://api.phonegap.com/1.0/geolocation"/>
<feature name="http://api.phonegap.com/1.0/network"/> 

到我的 config.xml 文件。

我得到的只是一个没有加载的白屏。

我究竟做错了什么!?!?

多谢你们!过去你们都帮了我很多,这是我完成这个应用程序所需的最后一件事!

再次提前感谢!

我使用的 html 代码是

<div role="main" class="ui-content" id="map-canvas"></div>

我使用的 CSS 代码是

#map-page, #map-canvas { width: 100%; height: 100%; padding: 0; } 

我使用的 js 代码是

<script>
$( document ).on( "pageinit", "#map-page", function() {
var defaultLatLng = new google.maps.LatLng(34.0983425, -118.3267434); // Default to        Hollywood, CA when no geolocation support
if ( navigator.geolocation ) {
function success(pos) {
// Location found, show map with these coordinates
drawMap(new google.maps.LatLng(pos.coords.latitude, pos.coords.longitude));
}
function fail(error) {
drawMap(defaultLatLng); // Failed to find location, show default map
}
// Find the users current position. Cache the location for 5 minutes, timeout after 6     seconds
navigator.geolocation.getCurrentPosition(success, fail, {maximumAge: 500000,      enableHighAccuracy:true, timeout: 6000});
} else {
drawMap(defaultLatLng); // No geolocation support, show default map
}
function drawMap(latlng) {
var myOptions = {
zoom: 10,
center: latlng,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
var map = new google.maps.Map(document.getElementById("map-canvas"), myOptions);
// Add an overlay to the map of current lat/lng
var marker = new google.maps.Marker({
position: latlng,
map: map,
title: "Greetings!"
});
}
});
</script> 

我把我的 js 放在我的 html 之前,就在之后

<div data-role="content" class="content">

但我也试过把它放在头上。

4

2 回答 2

1

尝试在地理调用之前将 lat 和 lng var 设置为 0。

  document.addEventListener("deviceready", onDeviceReady, false);
  function onDeviceReady() { 
    navigator.geolocation.getCurrentPosition(onSuccess, onError, { maximumAge:60000, timeout:5000, enableHighAccuracy:true }); 
  }

  var lat = 0;
  var lng = 0;

  function onSuccess(position) {
    lat += position.coords.latitude
    lng += position.coords.longitude
  }
于 2015-01-18T18:21:51.820 回答
0

可能您的 phonegap 项目中没有地理定位插件。

http://docs.phonegap.com/en/3.3.0/cordova_geolocation_geolocation.md.html#Geolocation

科尔多瓦插件添加 org.apache.cordova.geolocation

于 2014-02-28T17:09:23.490 回答