以下に示すGoogleマップから、ソースと目的地の間のすべての場所を解析したいと思います: Google Maps API v3 Directions Example
<script type="text/javascript">
var directionsService = new google.maps.DirectionsService();
var directionsDisplay = new google.maps.DirectionsRenderer();
var map = new google.maps.Map(document.getElementById('map'), {
zoom:7,
mapTypeId: google.maps.MapTypeId.ROADMAP
});
directionsDisplay.setMap(map);
directionsDisplay.setPanel(document.getElementById('panel'));
var request = {
origin: 'Kolkata',
destination: 'Patna',
travelMode: google.maps.DirectionsTravelMode.DRIVING
};
//echo 'directionsService.route()';
directionsService.route(request, function(response, status) {
if (status == google.maps.DirectionsStatus.OK) {
directionsDisplay.setDirections(response);
}
});
</script>
</body>
</html>
http://maps.googleapis.com/maps/api/directions/xml?origin=%22+kolkata+%22&destination=%22+patna+%22&sensor=falseのようなものが欲しい
場所を解析してデータベースのテーブルに保存できるようにします。これを行う方法を見つけるのを手伝ってください。事前に感謝します