Reputation: 5821
If I use google maps geocoder to find a point of an address - I usually get a point in the middle of the building (roof top)
example:
Geocoder request:
so the point is actually in the middle of Harrison and Alabama streets
But I need to get a point that is located on Alabama street line
Is there a ways to do that ?
Upvotes: 0
Views: 647
Reputation: 117354
You may request the directionsService instead of geocoding, this should return a location placed on the street when used with google.maps.TravelMode.DRIVING
Upvotes: 2