JESLIN
JESLIN

Reputation: 169

Cordova plugin for google map distance matrix service

I am trying to develop an android application in cordova. It have to implement some google map functionalities like distance matrix service and direction service. But I haven't find any plugin for these functions. I'm using cordova-plugin-googlemaps for initializing google map.

I tried to do this in javascript itself but it have ReferenceError: google is not defined and I have pushed the specific file to github

Is there any other plugins have these supports ??

Or is it possible to write native android code to do this functionality that works in cordova application (like bridging kind of things) ??

p.s: I have no previous experience in mobile app development and Java related things

Upvotes: 1

Views: 599

Answers (1)

evan
evan

Reputation: 5701

As the folks from these multiple issues state, this plugin does not have support for the Directions and Distance Matrix services at this time, but you can implement them through the JavaScript API or through HTTP Web Services.

Hope this helps point you in the right direction!

Upvotes: 2

Related Questions