我是一名山地车手,我使用Samsung S3 Galaxy
和Endomondo
等程序在Strava
跟踪我的游乐设施。关于我的旅行的一切都保存在这两个网站上。
我有自己的个人网站,在那里我会在我住的各个地方展示山路。使用Endomondo和Strava I通过GPS
记录的路径数据已导出到.gpx
文件。我需要.gpx文件中的这些数据显示在我自己的个人网站上。所以我开始使用Google Maps API
寻找解决方案,并在不使用外部工具的情况下导入.gpx文件。
我努力寻找答案。我发现这篇帖子中的人使用jQuery
提取XML文件中的数据并在他的Google地图上显示这些数据:
http://www.jacquet80.eu/blog/post/2011/02/Display-GPX-tracks-using-Google-Maps-API
这是将其实现到我的HTML标记中的方式:
<script>
function initialize() {
var route1Latlng = new google.maps.LatLng(-33.7610590,18.9616790);
var mapOptions = {
center: route1Latlng,
zoom: 11,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
var map = new google.maps.Map(document.getElementById("map_canvas"), mapOptions);
$.ajax({
type: "GET",
url: "gpx/my_route.gpx",
dataType: "xml",
success: function (xml) {
var points = [];
var bounds = new google.maps.LatLngBounds();
$(xml).find("trkpt").each(function () {
var lat = $(this).attr("lat");
var lon = $(this).attr("lon");
var p = new google.maps.LatLng(lat, lon);
points.push(p);
bounds.extend(p);
});
var poly = new google.maps.Polyline({
// use your own style here
path: points,
strokeColor: "#FF00AA",
strokeOpacity: .7,
strokeWeight: 4
});
poly.setMap(map);
// fit bounds to track
map.fitBounds(bounds);
}
});
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>
有效。但这是正确的方法吗?有没有更好的方法来实现这个?
答案 0 :(得分:2)
如果您使用PostgreSQL数据库,我建议您使用PostGIS并将您的记录导入数据库。然后,您可以轻松生成kml文件(ST_asKml)并在Google地图上显示它们。如果您的gpx很大,您可以在数据库查询中使用ST_Simplify,以便更快地加载页面,并且您的数据库中仍然有完整的详细路径。
你也有很多可能性:
答案 1 :(得分:0)
2020 年更新
与 Google Map 的最新 API 配合使用:
<!DOCTYPE html>
<html>
<head>
<title>Add Map</title>
<script
src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&callback=initMap&libraries=drawing&v=weekly"
defer
></script>
<style type="text/css">
#map {
height: 400px;
width: 400px;
}
</style>
<script>
function initMap() {
const map = new google.maps.Map(document.getElementById("map"), {
zoom: 3,
center: { lat: 0, lng: -180 },
mapTypeId: "satellite",
disableDefaultUI: true,
});
fetch('2020-10-12_2007.gpx')
.then(response => response.text())
.then(str => (new window.DOMParser()).parseFromString(str, "text/xml"))
//.then(data => console.log(data))
.then(doc =>
{
var points = [];
var bounds = new google.maps.LatLngBounds();
const nodes = [...doc.getElementsByTagName('trkpt')];
nodes.forEach(node =>
{
var lat = node.getAttribute("lat");
var lon = node.getAttribute("lon");
//console.log(lat);
var p = new google.maps.LatLng(lat, lon);
points.push(p);
bounds.extend(p);
})
var poly = new google.maps.Polyline({
path: points,
strokeColor: "#0000FF",
strokeOpacity: 1,
strokeWeight: 4
});
poly.setMap(map);
// fit bounds to track
map.fitBounds(bounds);
})
}
</script>
</head>
<body>
<h3>My Google Maps Demo</h3>
<!--The div element for the map -->
<div id="map"></div>
</body>
</html>