What steps will reproduce the problem?
1. Load the map with geolocation on.
2. Click a store and then 'Get Directions'
What is the expected output? What do you see instead?
It should show directions from the geolocation result. Instead it shows nothing.
What version of the product are you using? On what operating system?
Please provide any additional information below.
My quick solution:
add a location attribute to View, and populate it when geocoding succeeds. Then
in panel.js:
this.geolocationListener_ = google.maps.event.addListener(sl, 'load', function() {
updateList;
if (that.directionsFrom_ == null && that.view.location != null) {
that.directionsFrom_ = that.view.location;
$('input', that.locationSearch_).val(that.view.location.lat() + ', ' + that.view.location.lng())
}
});
Original issue reported on code.google.com by chris.se...@gmail.com on 9 Apr 2013 at 6:59
Original issue reported on code.google.com by
chris.se...@gmail.com
on 9 Apr 2013 at 6:59