Formuły Map Google dla Arkuszy Google

Opublikowany: 2022-02-26

Możesz przenieść moc Map Google do swoich Arkuszy Google, używając prostych formuł bez kodowania. Nie musisz rejestrować się w interfejsie API Map Google, a wszystkie wyniki z Map Google są buforowane w arkuszu, więc jest mało prawdopodobne, że przekroczysz jakiekolwiek limity.

Aby dać ci szybki przykład, jeśli masz adres początkowy w kolumnie A i adres docelowy w kolumnie B, formuła taka jak =GOOGLEMAPS_DISTANCE(A1, B1, "driving") szybko obliczy odległość między tymi dwoma punktami.

Możesz też nieznacznie zmodyfikować formułę =GOOGLEMAPS_TIME(A1, B1, "walking") , aby wiedzieć, ile czasu zajmie osobie przejście z jednego punktu do drugiego.

Jeśli chcesz wypróbować formuły Map Google bez wchodzenia w szczegóły techniczne, po prostu zrób kopię tego Arkusza Google i gotowe.

Google Maps in Google Sheets

Korzystanie z Map Google w Arkuszach Google

Ten samouczek wyjaśnia, jak łatwo pisać niestandardowe funkcje Map Google w Arkuszach Google, które pomogą:

  1. Oblicz odległości między dwoma miastami lub dowolnymi adresami.
  2. Oblicz czas podróży (pieszo, samochodem lub rowerem) między dwoma punktami.
  3. Uzyskaj współrzędne szerokości i długości geograficznej dowolnego adresu w Mapach Google.
  4. Użyj odwrotnego geokodowania, aby znaleźć adres pocztowy na podstawie współrzędnych GPS.
  5. Drukuj wskazówki dojazdu między dowolnymi punktami na ziemi.
  6. Uzyskaj adres z samego kodu pocztowego.

1. Oblicz odległości w Arkuszach Google

Określ początek, miejsce docelowe, tryb podróży (pieszo lub samochodem), a funkcja zwróci odległość między dwoma punktami w milach.

=GOOGLEMAPS_DISTANCE("NY 10005", "Hoboken NJ", "walking")

 /** * Calculate the distance between two * locations on Google Maps. * * =GOOGLEMAPS_DISTANCE("NY 10005", "Hoboken NJ", "walking") * * @param {String} origin The address of starting point * @param {String} destination The address of destination * @param {String} mode The mode of travel (driving, walking, bicycling or transit) * @return {String} The distance in miles * @customFunction */ const GOOGLEMAPS_DISTANCE = ( origin , destination , mode ) => { const { routes : [ data ] = [ ] } = Maps . newDirectionFinder ( ) . setOrigin ( origin ) . setDestination ( destination ) . setMode ( mode ) . getDirections ( ) ; if ( ! data ) { throw new Error ( 'No route found!' ) ; } const { legs : [ { distance : { text : distance } } = { } ] = [ ] } = data ; return distance ; } ;

2. Odwrotne geokodowanie w Arkuszach Google

Określ szerokość i długość geograficzną i uzyskaj pełny adres punktu poprzez odwrotne geokodowanie współrzędnych.

=GOOGLEMAPS_DISTANCE("NY 10005", "Hoboken NJ", "walking")

 /** * Use Reverse Geocoding to get the address of * a point location (latitude, longitude) on Google Maps. * * =GOOGLEMAPS_REVERSEGEOCODE(latitude, longitude) * * @param {String} latitude The latitude to lookup. * @param {String} longitude The longitude to lookup. * @return {String} The postal address of the point. * @customFunction */ const GOOGLEMAPS_REVERSEGEOCODE = ( latitude , longitude ) => { const { results : [ data = { } ] = [ ] } = Maps . newGeocoder ( ) . reverseGeocode ( latitude , longitude ) ; return data . formatted_address ; } ;

3. Uzyskaj współrzędne GPS adresu

Uzyskaj szerokość i długość geograficzną dowolnego adresu w Mapach Google.

=GOOGLEMAPS_LATLONG("10 Hanover Square, NY")

 /** * Get the latitude and longitude of any * address on Google Maps. * * =GOOGLEMAPS_LATLONG("10 Hanover Square, NY") * * @param {String} address The address to lookup. * @return {String} The latitude and longitude of the address. * @customFunction */ const GOOGLEMAPS_LATLONG = ( address ) => { const { results : [ data = null ] = [ ] } = Maps . newGeocoder ( ) . geocode ( address ) ; if ( data === null ) { throw new Error ( 'Address not found!' ) ; } const { geometry : { location : { lat , lng } } = { } } = data ; return ` ${ lat } , ${ lng } ` ; } ;

4. Wydrukuj wskazówki dojazdu między adresami

Określ adres początkowy, adres docelowy, tryb podróży, a funkcja użyje interfejsu API Map Google do drukowania szczegółowych wskazówek dojazdu.

=GOOGLEMAPS_DIRECTIONS("NY 10005", "Hoboken NJ", "walking")

 /** * Find the driving direction between two * locations on Google Maps. * * =GOOGLEMAPS_DIRECTIONS("NY 10005", "Hoboken NJ", "walking") * * @param {String} origin The address of starting point * @param {String} destination The address of destination * @param {String} mode The mode of travel (driving, walking, bicycling or transit) * @return {String} The driving direction * @customFunction */ const GOOGLEMAPS_DIRECTIONS = ( origin , destination , mode = 'driving' ) => { const { routes = [ ] } = Maps . newDirectionFinder ( ) . setOrigin ( origin ) . setDestination ( destination ) . setMode ( mode ) . getDirections ( ) ; if ( ! routes . length ) { throw new Error ( 'No route found!' ) ; } return routes . map ( ( { legs } ) => { return legs . map ( ( { steps } ) => { return steps . map ( ( step ) => { return step . html_instructions . replace ( / <[^>]+> / g , '' ) ; } ) ; } ) ; } ) . join ( ', ' ) ; } ;

5. Zmierz czas podróży za pomocą Google Maps

Określ adres początkowy, adres docelowy, tryb podróży, a funkcja zmierzy przybliżony czas podróży między określonymi adresami, o ile istnieje trasa.

=GOOGLEMAPS_DURATION("NY 10005", "Hoboken NJ", "walking")

 /** * Calculate the travel time between two locations * on Google Maps. * * =GOOGLEMAPS_DURATION("NY 10005", "Hoboken NJ", "walking") * * @param {String} origin The address of starting point * @param {String} destination The address of destination * @param {String} mode The mode of travel (driving, walking, bicycling or transit) * @return {String} The time in minutes * @customFunction */ const GOOGLEMAPS_DURATION = ( origin , destination , mode = 'driving' ) => { const { routes : [ data ] = [ ] } = Maps . newDirectionFinder ( ) . setOrigin ( origin ) . setDestination ( destination ) . setMode ( mode ) . getDirections ( ) ; if ( ! data ) { throw new Error ( 'No route found!' ) ; } const { legs : [ { duration : { text : time } } = { } ] = [ ] } = data ; return time ; } ;

Funkcje Map Google w Arkuszach

Wskazówka: popraw wydajność, buforując wyniki

Wszystkie powyższe funkcje Arkuszy Google wewnętrznie wykorzystują interfejs API Map Google do obliczania tras, odległości i czasu podróży. Google oferuje ograniczony limit operacji w Mapach, a jeśli arkusz wykona zbyt wiele zapytań w krótkim czasie, prawdopodobnie zobaczysz błędy typu „Usługa wywoływana zbyt wiele razy w ciągu jednego dnia” lub podobne.

Aby obejść ten problem, zaleca się korzystanie z wbudowanej pamięci podręcznej Apps Script do przechowywania wyników, a jeśli wyniki funkcji już istnieją w przypadku, wyślesz o jedno żądanie mniej do Map Google Mapy działają w tym Arkusze Google również używają pamięci podręcznej i oto jak możesz ją zaimplementować.

 // The cache key for "New York" and "new york " should be same const md5 = ( key = '' ) => { const code = key . toLowerCase ( ) . replace ( / \s / g , '' ) ; return Utilities . computeDigest ( Utilities . DigestAlgorithm . MD5 , key ) . map ( ( char ) => ( char + 256 ) . toString ( 16 ) . slice ( - 2 ) ) . join ( '' ) ; } ; const getCache = ( key ) => { return CacheService . getDocumentCache ( ) . get ( md5 ( key ) ) ; } ; // Store the results for 6 hours const setCache = ( key , value ) => { const expirationInSeconds = 6 * 60 * 60 ; CacheService . getDocumentCache ( ) . put ( md5 ( key ) , value , expirationInSeconds ) ; } ; /** * Calculate the travel time between two locations * on Google Maps. * * =GOOGLEMAPS_DURATION("NY 10005", "Hoboken NJ", "walking") * * @param {String} origin The address of starting point * @param {String} destination The address of destination * @param {String} mode The mode of travel (driving, walking, bicycling or transit) * @return {String} The time in minutes * @customFunction */ const GOOGLEMAPS_DURATION = ( origin , destination , mode = 'driving' ) => { const key = [ 'duration' , origin , destination , mode ] . join ( ',' ) ; // Is result in the internal cache? const value = getCache ( key ) ; // If yes, serve the cached result if ( value !== null ) return value ; const { routes : [ data ] = [ ] } = Maps . newDirectionFinder ( ) . setOrigin ( origin ) . setDestination ( destination ) . setMode ( mode ) . getDirections ( ) ; if ( ! data ) { throw new Error ( 'No route found!' ) ; } const { legs : [ { duration : { text : time } } = { } ] = [ ] } = data ; // Store the result in internal cache for future setCache ( key , time ) ; return time ; } ;

Zobacz też: Osadzanie Map Google w wiadomościach e-mail i dokumentach