Googleマップパッケージを使用してnode.jsで緯度と経度を定義するには?
以下のコードで緯度と経度を宣言しようとしました。var origin1 を参照してください。しかし、gs has no method 'LatLng' がスローされます。
function calculateDistances() {
var gs =require('googlemaps');
//in next line i tried to define LAtLNG it throws gs has no method 'LatLng'
**var origin1 = gs.LatLng(13.125511084202,80.029651635576);**
//Below code i tried in html
var origin2 = new google.maps.LatLng(12.9898593006481,80.2497744326417);;
var destinationA = new google.maps.LatLng(13.125511084202,80.029651635576);;
var destinationB = new google.maps.LatLng(12.9898593006481,80.2497744326417);
var service = new google.maps.DistanceMatrixService();
service.getDistanceMatrix(
{
origins: [origin1, origin2],
destinations: [destinationA, destinationB],
travelMode: google.maps.TravelMode.DRIVING,
unitSystem: google.maps.UnitSystem.METRIC,
avoidHighways: false,
avoidTolls: false
}, callback);
}