i'm following the tutorial, Using the Google Maps API, and trying to invoke a public method. http://developer.android.com/referenc...
I've tried to invoke in initialize, but it does not work.
function initialize(){
console.log('Initializing...');
Code: Select all
map = Apperyio("google_map").gmap;
map.setMyLocationEnabled(true);
if (!map)
{
setDelay();
}
else
{
directionsDisplay = new google.maps.DirectionsRenderer();
} }
