This change extracts the recurring pattern of parsing a lat,lng string and wrapping it in google.maps.LatLng into a new parseLatLngMaps() helper. Both the map autocomplete flow and itinerary table visualization now use the shared function instead of open-coding the conversion in multiple places, reducing duplication and making coordinate handling more consistent. The behavior stays the same, but the code is easier to maintain and less error-prone the next time map-related logic changes.

Refactored repeated latitude/longitude conversion logic into a shared Google Maps helper to simplify map and table interactions. - zhengqunkoo/taxibros